C#C
C#2y ago
HouseAdmin

Syntax for c# to do this?

c#
 public override void _PhysicsProcess(double delta)
    {
        if (DetectCollision(Player, Floor))
        {
            Player.position
        }
    }


How do i access the Player.position here in c#?
Was this page helpful?