This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#For usage instructions, see the YouTube video below: | |
extends Area | |
export var trauma_reduction_rate := 1.0 | |
export var max_x := 10.0 | |
export var max_y := 10.0 | |
export var max_z := 5.0 | |
export var noise : OpenSimplexNoise |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extends KinematicBody2D | |
export var move_speed = 200.0 | |
var velocity := Vector2.ZERO | |
export var jump_height : float | |
export var jump_time_to_peak : float | |
export var jump_time_to_descent : float |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extends Area | |
class_name CustomProximityGroup | |
signal broadcast(method_name, params) | |
enum dispatch_modes{ | |
PROXY, | |
SIGNAL | |
} |