0 votes

Im really really new to Godot and im working on a Game where a box pushes the Player ( an Kinematic Object) out of the Screen. But if i try to apply gravity to the box the Engine says "Invalid call. Nonexistent function 'moveandcolllide' in base 'StaticBody2D'
Im really frustrated and hope someone can help me ^^

in Engine by (18 points)

1 Answer

0 votes

StaticBody2D is not intended to be moved, so it doesn't have the move_and_collide() method.

Make it a KinematicBody2D (if you want to control the physics yourself); or a RigidBody2D if you want to apply impulses, and have Godot handle the physics.

by (401 points)
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.