瀏覽代碼

:fire: Delete octopus

Were not consistent with the game.
DricomDragon 2 年之前
父節點
當前提交
622a5593e2

+ 0 - 30
godot/component/entity/octo/Octo.gd

@@ -1,30 +0,0 @@
-class_name Octo
-extends RigidBody2D
-
-export var min_speed = 150
-export var max_speed = 250
-
-var mob_types = ["walk", "swim", "fly"]
-
-
-func _ready():
-	$AnimatedSprite.animation = mob_types[randi() % mob_types.size()]
-	$AnimatedSprite.play()
-
-
-func attack(from: Vector2, angle: float):
-	rotation = angle
-	position = from
-	linear_velocity = Vector2(rand_range(min_speed, max_speed), 0).rotated(angle)
-
-
-func _on_VisibilityNotifier2D_screen_exited():
-	die()
-
-
-func _on_Spawner_reset():
-	die()
-
-
-func die():
-	queue_free()

+ 0 - 57
godot/component/entity/octo/Octo.tscn

@@ -1,57 +0,0 @@
-[gd_scene load_steps=11 format=2]
-
-[ext_resource path="res://component/entity/octo/Octo.gd" type="Script" id=1]
-[ext_resource path="res://component/entity/octo/enemySwimming_1.png" type="Texture" id=2]
-[ext_resource path="res://component/entity/octo/enemySwimming_2.png" type="Texture" id=3]
-[ext_resource path="res://component/entity/octo/enemyFlyingAlt_1.png" type="Texture" id=4]
-[ext_resource path="res://component/entity/octo/enemyFlyingAlt_2.png" type="Texture" id=5]
-[ext_resource path="res://component/entity/octo/enemyWalking_1.png" type="Texture" id=6]
-[ext_resource path="res://component/entity/octo/enemyWalking_2.png" type="Texture" id=7]
-
-[sub_resource type="PhysicsMaterial" id=1]
-friction = 0.1
-bounce = 0.8
-
-[sub_resource type="SpriteFrames" id=2]
-animations = [ {
-"frames": [ ExtResource( 4 ), ExtResource( 5 ) ],
-"loop": true,
-"name": "fly",
-"speed": 3.0
-}, {
-"frames": [ ExtResource( 2 ), ExtResource( 3 ) ],
-"loop": true,
-"name": "swim",
-"speed": 4.0
-}, {
-"frames": [ ExtResource( 6 ), ExtResource( 7 ) ],
-"loop": true,
-"name": "walk",
-"speed": 5.0
-} ]
-
-[sub_resource type="CapsuleShape2D" id=3]
-radius = 24.0469
-height = 52.8654
-
-[node name="Enemy" type="RigidBody2D"]
-physics_material_override = SubResource( 1 )
-gravity_scale = 0.0
-script = ExtResource( 1 )
-__meta__ = {
-"_edit_group_": true
-}
-
-[node name="AnimatedSprite" type="AnimatedSprite" parent="."]
-scale = Vector2( 0.75, 0.75 )
-frames = SubResource( 2 )
-animation = "fly"
-
-[node name="HitBox" type="CollisionShape2D" parent="."]
-rotation = 1.5708
-shape = SubResource( 3 )
-
-[node name="VisibilityNotifier2D" type="VisibilityNotifier2D" parent="."]
-rect = Rect2( -50, -60, 100, 120 )
-
-[connection signal="screen_exited" from="VisibilityNotifier2D" to="." method="_on_VisibilityNotifier2D_screen_exited"]

二進制
godot/component/entity/octo/enemyFlyingAlt_1.png


+ 0 - 34
godot/component/entity/octo/enemyFlyingAlt_1.png.import

@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="StreamTexture"
-path="res://.import/enemyFlyingAlt_1.png-3330bd9f7a3f9081709bf33de9ae9c87.stex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://component/entity/octo/enemyFlyingAlt_1.png"
-dest_files=[ "res://.import/enemyFlyingAlt_1.png-3330bd9f7a3f9081709bf33de9ae9c87.stex" ]
-
-[params]
-
-compress/mode=0
-compress/lossy_quality=0.7
-compress/hdr_mode=0
-compress/bptc_ldr=0
-compress/normal_map=0
-flags/repeat=0
-flags/filter=true
-flags/mipmaps=false
-flags/anisotropic=false
-flags/srgb=2
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/HDR_as_SRGB=false
-process/invert_color=false
-stream=false
-size_limit=0
-detect_3d=true
-svg/scale=1.0

二進制
godot/component/entity/octo/enemyFlyingAlt_2.png


+ 0 - 34
godot/component/entity/octo/enemyFlyingAlt_2.png.import

@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="StreamTexture"
-path="res://.import/enemyFlyingAlt_2.png-bffc870f4db9777682d3c9cb1b8fed33.stex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://component/entity/octo/enemyFlyingAlt_2.png"
-dest_files=[ "res://.import/enemyFlyingAlt_2.png-bffc870f4db9777682d3c9cb1b8fed33.stex" ]
-
-[params]
-
-compress/mode=0
-compress/lossy_quality=0.7
-compress/hdr_mode=0
-compress/bptc_ldr=0
-compress/normal_map=0
-flags/repeat=0
-flags/filter=true
-flags/mipmaps=false
-flags/anisotropic=false
-flags/srgb=2
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/HDR_as_SRGB=false
-process/invert_color=false
-stream=false
-size_limit=0
-detect_3d=true
-svg/scale=1.0

二進制
godot/component/entity/octo/enemySwimming_1.png


+ 0 - 34
godot/component/entity/octo/enemySwimming_1.png.import

@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="StreamTexture"
-path="res://.import/enemySwimming_1.png-fb8e02b87cbdb52cdd88239d36a5af75.stex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://component/entity/octo/enemySwimming_1.png"
-dest_files=[ "res://.import/enemySwimming_1.png-fb8e02b87cbdb52cdd88239d36a5af75.stex" ]
-
-[params]
-
-compress/mode=0
-compress/lossy_quality=0.7
-compress/hdr_mode=0
-compress/bptc_ldr=0
-compress/normal_map=0
-flags/repeat=0
-flags/filter=true
-flags/mipmaps=false
-flags/anisotropic=false
-flags/srgb=2
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/HDR_as_SRGB=false
-process/invert_color=false
-stream=false
-size_limit=0
-detect_3d=true
-svg/scale=1.0

二進制
godot/component/entity/octo/enemySwimming_2.png


+ 0 - 34
godot/component/entity/octo/enemySwimming_2.png.import

@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="StreamTexture"
-path="res://.import/enemySwimming_2.png-ab3c2772d9f36ca38ee33921b0fed298.stex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://component/entity/octo/enemySwimming_2.png"
-dest_files=[ "res://.import/enemySwimming_2.png-ab3c2772d9f36ca38ee33921b0fed298.stex" ]
-
-[params]
-
-compress/mode=0
-compress/lossy_quality=0.7
-compress/hdr_mode=0
-compress/bptc_ldr=0
-compress/normal_map=0
-flags/repeat=0
-flags/filter=true
-flags/mipmaps=false
-flags/anisotropic=false
-flags/srgb=2
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/HDR_as_SRGB=false
-process/invert_color=false
-stream=false
-size_limit=0
-detect_3d=true
-svg/scale=1.0

二進制
godot/component/entity/octo/enemyWalking_1.png


+ 0 - 34
godot/component/entity/octo/enemyWalking_1.png.import

@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="StreamTexture"
-path="res://.import/enemyWalking_1.png-ac1e3eb1f081f41a1e71ea4551e56d75.stex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://component/entity/octo/enemyWalking_1.png"
-dest_files=[ "res://.import/enemyWalking_1.png-ac1e3eb1f081f41a1e71ea4551e56d75.stex" ]
-
-[params]
-
-compress/mode=0
-compress/lossy_quality=0.7
-compress/hdr_mode=0
-compress/bptc_ldr=0
-compress/normal_map=0
-flags/repeat=0
-flags/filter=true
-flags/mipmaps=false
-flags/anisotropic=false
-flags/srgb=2
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/HDR_as_SRGB=false
-process/invert_color=false
-stream=false
-size_limit=0
-detect_3d=true
-svg/scale=1.0

二進制
godot/component/entity/octo/enemyWalking_2.png


+ 0 - 34
godot/component/entity/octo/enemyWalking_2.png.import

@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="StreamTexture"
-path="res://.import/enemyWalking_2.png-b2a666611af9598c254193e9f2c29186.stex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://component/entity/octo/enemyWalking_2.png"
-dest_files=[ "res://.import/enemyWalking_2.png-b2a666611af9598c254193e9f2c29186.stex" ]
-
-[params]
-
-compress/mode=0
-compress/lossy_quality=0.7
-compress/hdr_mode=0
-compress/bptc_ldr=0
-compress/normal_map=0
-flags/repeat=0
-flags/filter=true
-flags/mipmaps=false
-flags/anisotropic=false
-flags/srgb=2
-process/fix_alpha_border=true
-process/premult_alpha=false
-process/HDR_as_SRGB=false
-process/invert_color=false
-stream=false
-size_limit=0
-detect_3d=true
-svg/scale=1.0

+ 2 - 3
godot/component/entity/spawner/MobSpawner.tscn

@@ -1,7 +1,6 @@
-[gd_scene load_steps=6 format=2]
+[gd_scene load_steps=5 format=2]
 
 [ext_resource path="res://component/entity/spawner/MobSpawner.gd" type="Script" id=1]
-[ext_resource path="res://component/entity/octo/Octo.tscn" type="PackedScene" id=2]
 [ext_resource path="res://component/entity/wheel/Wheel.tscn" type="PackedScene" id=3]
 [ext_resource path="res://component/entity/chick/Chicken.tscn" type="PackedScene" id=4]
 
@@ -13,7 +12,7 @@ _data = {
 [node name="MobSpawner" type="Path2D"]
 curve = SubResource( 1 )
 script = ExtResource( 1 )
-mobs = [ ExtResource( 3 ), ExtResource( 4 ), ExtResource( 2 ) ]
+mobs = [ ExtResource( 3 ), ExtResource( 4 ) ]
 
 [node name="MobTimer" type="Timer" parent="."]
 process_mode = 0

+ 0 - 6
godot/project.godot

@@ -19,11 +19,6 @@ _global_script_classes=[ {
 "language": "GDScript",
 "path": "res://component/entity/spawner/MobSpawner.gd"
 }, {
-"base": "RigidBody2D",
-"class": "Octo",
-"language": "GDScript",
-"path": "res://component/entity/octo/Octo.gd"
-}, {
 "base": "Area2D",
 "class": "Player",
 "language": "GDScript",
@@ -37,7 +32,6 @@ _global_script_classes=[ {
 _global_script_class_icons={
 "Chicken": "",
 "MobSpawner": "",
-"Octo": "",
 "Player": "",
 "Wheel": ""
 }