Hi, kind of new here, but I have an error in my code and wanted to know if I should be worried?
code
extends KinematicBody2D
func read_input():
IF input.is_action_pressed(*up*):
pass
IF input.is_action_pressed(*down*):
pass
IF input.is_action_pressed(*left*):
pass
IF input.is_action_pressed(*right*):
pass
Error
Expected end of statement after expression, got Identifier instead.
*********
Do I need to fix this?