Skip to content

Commit

Permalink
Product meets our basic design requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
O-01 committed Dec 16, 2023
1 parent 48d0f12 commit 01f4790
Show file tree
Hide file tree
Showing 696 changed files with 557 additions and 85 deletions.
9 changes: 0 additions & 9 deletions SKI/main.gd

This file was deleted.

21 changes: 0 additions & 21 deletions SKI/player.gd

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions SKI/cool_girl.gd → project/cool_girl.gd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
extends CharacterBody2D
extends Area2D

@export var speed = 500
@export var speed = 1000

func _process(delta):
var velocity = Vector2.ZERO
Expand All @@ -17,5 +17,5 @@ func _process(delta):

position += velocity * delta

position.x = clamp(position.x, 530, 950)
position.x = clamp(position.x, 512, 950)
position.y = clamp(position.y, 660, 660)
2 changes: 1 addition & 1 deletion SKI/cool_girl.tscn → project/cool_girl.tscn
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ animations = [{
"speed": 32.0
}]

[node name="CoolGirl" type="CharacterBody2D"]
[node name="CoolGirl" type="Area2D"]
script = ExtResource("1_0iu6q")
metadata/_edit_group_ = true

Expand Down
6 changes: 3 additions & 3 deletions SKI/cool_guy.gd → project/cool_guy.gd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
extends CharacterBody2D
extends Area2D

@export var speed = 500
@export var speed = 1000

func _process(delta):
var velocity = Vector2.ZERO
Expand All @@ -17,5 +17,5 @@ func _process(delta):

position += velocity * delta

position.x = clamp(position.x, 530, 950)
position.x = clamp(position.x, 512, 950)
position.y = clamp(position.y, 660, 660)
2 changes: 1 addition & 1 deletion SKI/cool_guy.tscn → project/cool_guy.tscn
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ animations = [{
"speed": 32.0
}]

[node name="CoolGuy" type="CharacterBody2D"]
[node name="CoolGuy" type="Area2D"]
script = ExtResource("1_qenlq")
metadata/_edit_group_ = true

Expand Down
Loading

0 comments on commit 01f4790

Please sign in to comment.