测试场景可以响应拖入文件/文件夹事件
This commit is contained in:
@@ -60,6 +60,12 @@ end
|
|||||||
function scene.wheelMoved(dx,dy)
|
function scene.wheelMoved(dx,dy)
|
||||||
push(("[wheelMoved] <%d, %d>"):format(dx,dy))
|
push(("[wheelMoved] <%d, %d>"):format(dx,dy))
|
||||||
end
|
end
|
||||||
|
function scene.fileDropped(file)
|
||||||
|
push(("[fileDropped] <%s>"):format(file:getFilename()))
|
||||||
|
end
|
||||||
|
function scene.directoryDropped(path)
|
||||||
|
push(("[directoryDropped] <%s>"):format(path))
|
||||||
|
end
|
||||||
|
|
||||||
function scene.update(dt)
|
function scene.update(dt)
|
||||||
if timer>0 then
|
if timer>0 then
|
||||||
|
|||||||
Reference in New Issue
Block a user