You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
333 B
GDScript

1 year ago
# Extends
extends Resource
# Class Name
class_name Player_Movement_Settings
# Settings
export(int) var MAXIMUM_JUMP = - 130
export(int) var MINIMUM_JUMP = - 70
export(int) var MAXIMUM_SPEED = 50
export(int) var ACCELERATION = 10
export(int) var FRICTION = 10
export(int) var GRAVITY = 4
export(int) var ADDITIONAL_FALL_GRAVITY = 4