Skip to content

Commit

Permalink
replace filenames with classnames
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerandari13 committed Dec 9, 2023
1 parent 2f82d66 commit 8c71bd1
Show file tree
Hide file tree
Showing 20 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion scripts/orange_states/air.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState


# Called when the state machine enters this state.
Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/bodyslam.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState

# Called when the state machine enters this state.
func on_enter():
Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/dive.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState


# Called when the state machine enters this state.
Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/duck.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState


# Called when the state machine enters this state.
Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/duckjump.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState


# Called when the state machine enters this state.
Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/grab.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState

var grab_time = 0.7
var cur_time = 0
Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/grabslide.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState

# Called when the state machine enters this state.
func on_enter():
Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/ground.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState

# Call `change_state(state : String)` to change the state.
# Call `is_current_state()` to check if this state is also the surrent state on the state machine.
Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/landing.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState

var land_time = 0.3
var cur_time = 0
Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/longjump.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState


# Called when the state machine enters this state.
Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/machdrift.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState

var slide_time : float = 0.7

Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/machrun.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState


# Called when the state machine enters this state.
Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/machslide.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState


# Called when the state machine enters this state.
Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/noclip.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState

# Called when the state machine enters this state.
func on_enter():
Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/roll.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState


# Called when the state machine enters this state.
Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/superjump.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState

var superjumping : bool = false
var jumpcanceling : bool = false
Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/taunt.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState

var cur_time : float

Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/uppercut.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState

# Called when the state machine enters this state.
func on_enter():
Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/walljump.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState

# Called when the state machine enters this state.
func on_enter():
Expand Down
2 changes: 1 addition & 1 deletion scripts/orange_states/wallrun.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extends "res://scripts/OrangeState.gd"
extends OrangeState

var cur_time : float = 0
var roof_time : float = 0.2
Expand Down

0 comments on commit 8c71bd1

Please sign in to comment.