Finding the mouse position in init?

I want to find the mouse coordinates during every frame of my game - Questions - Defold game engine forum

This seems to work too, the code in @WhiteBoxDev 's post - this position prints even if the mouse has not moved yet:

function on_input(self, action_id, action)
    if not action_id then  -- action_id == nil, so this is a mouse movement event
        print("Mouse x position = " .. action.x)
        print("Mouse y position = " .. action.y)
    end
end
1 Like