This site is currently in read-only mode during migration to a new platform.
You cannot post questions, answers or comments, as they would be lost during the migration otherwise.
0 votes

I'm starting to study and found this error during a video class.
unexpected token: identifier:moveandslide

extends KinematicBody2D
const UP = Vector2(0, -1)
const GRAVITY = 20
const SPEED = 200
const JUMP_HEIGHT = -550

var motion = Vector2()

func physicsprocess(delta):
motion.y += GRAVITY
if Input.isactionpressed("uiright"):
motion.x= SPEED
elif Input.is
actionpressed("uileft"):
motion.x= -SPEED
else:
motion.x=0
if isonfloor():
if Input.isactionpressed("uiup"):
motion.y = JUMP
HEIGHT

moveandslide(motion,UP)

erro:E 0:00:00:0749 Condition ' debugparseerrline >= 0 ' is true. returned: __null
modules/gdscript/gdscripteditor.cpp:330 @ debuggetstacklevel_instance()

in Engine by (19 points)

1 Answer

0 votes
Best answer

I managed to find the error. It was just an indentation problem. The moveandslide expression should be aligned with the function that quotes delta.

by (19 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.