Parcourir la source

:truck: Rename enemy as octo

To distinguish from the wheel and the chicken, newly added enemies.
DricomDragon il y a 2 ans
Parent
commit
9595382180

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

@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="StreamTexture"
-path="res://.import/enemyFlyingAlt_1.png-9c5d2454be380c2eeb6d8fa67cc374a1.stex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://component/entity/enemy/enemyFlyingAlt_1.png"
-dest_files=[ "res://.import/enemyFlyingAlt_1.png-9c5d2454be380c2eeb6d8fa67cc374a1.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

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

@@ -1,34 +0,0 @@
-[remap]
-
-importer="texture"
-type="StreamTexture"
-path="res://.import/enemyFlyingAlt_2.png-00a55dc5ac1c27821f99baf519bac647.stex"
-metadata={
-"vram_texture": false
-}
-
-[deps]
-
-source_file="res://component/entity/enemy/enemyFlyingAlt_2.png"
-dest_files=[ "res://.import/enemyFlyingAlt_2.png-00a55dc5ac1c27821f99baf519bac647.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

+ 1 - 2
godot/component/entity/enemy/Enemy.gd

@@ -1,7 +1,6 @@
+class_name Octo
 extends RigidBody2D
 
-class_name Enemy
-
 export var min_speed = 150
 export var max_speed = 250
 

+ 14 - 16
godot/component/entity/enemy/Enemy.tscn

@@ -1,20 +1,18 @@
 [gd_scene load_steps=11 format=2]
 
-[ext_resource path="res://component/entity/enemy/Enemy.gd" type="Script" id=1]
-[ext_resource path="res://component/entity/enemy/enemySwimming_1.png" type="Texture" id=2]
-[ext_resource path="res://component/entity/enemy/enemySwimming_2.png" type="Texture" id=3]
-[ext_resource path="res://component/entity/enemy/enemyFlyingAlt_1.png" type="Texture" id=4]
-[ext_resource path="res://component/entity/enemy/enemyFlyingAlt_2.png" type="Texture" id=5]
-[ext_resource path="res://component/entity/enemy/enemyWalking_1.png" type="Texture" id=6]
-[ext_resource path="res://component/entity/enemy/enemyWalking_2.png" type="Texture" id=7]
-
-
-
-[sub_resource type="PhysicsMaterial" id=3]
+[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 = 1.0
 
-[sub_resource type="SpriteFrames" id=1]
+[sub_resource type="SpriteFrames" id=2]
 animations = [ {
 "frames": [ ExtResource( 2 ), ExtResource( 3 ) ],
 "loop": true,
@@ -32,12 +30,12 @@ animations = [ {
 "speed": 5.0
 } ]
 
-[sub_resource type="CapsuleShape2D" id=2]
+[sub_resource type="CapsuleShape2D" id=3]
 radius = 24.0469
 height = 52.8654
 
 [node name="Enemy" type="RigidBody2D"]
-physics_material_override = SubResource( 3 )
+physics_material_override = SubResource( 1 )
 gravity_scale = 0.0
 script = ExtResource( 1 )
 __meta__ = {
@@ -46,12 +44,12 @@ __meta__ = {
 
 [node name="AnimatedSprite" type="AnimatedSprite" parent="."]
 scale = Vector2( 0.75, 0.75 )
-frames = SubResource( 1 )
+frames = SubResource( 2 )
 animation = "walk"
 
 [node name="HitBox" type="CollisionShape2D" parent="."]
 rotation = 1.5708
-shape = SubResource( 2 )
+shape = SubResource( 3 )
 
 [node name="VisibilityNotifier2D" type="VisibilityNotifier2D" parent="."]
 [connection signal="screen_exited" from="VisibilityNotifier2D" to="." method="_on_VisibilityNotifier2D_screen_exited"]

godot/component/entity/enemy/enemyFlyingAlt_1.png → godot/component/entity/octo/enemyFlyingAlt_1.png


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

@@ -0,0 +1,34 @@
+[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/enemy/enemyFlyingAlt_2.png → godot/component/entity/octo/enemyFlyingAlt_2.png


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

@@ -0,0 +1,34 @@
+[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/enemy/enemySwimming_1.png → godot/component/entity/octo/enemySwimming_1.png


+ 3 - 3
godot/component/entity/enemy/enemySwimming_1.png.import

@@ -2,15 +2,15 @@
 
 importer="texture"
 type="StreamTexture"
-path="res://.import/enemySwimming_1.png-e32bf7eeeeb21f70545fa389d91f3ab5.stex"
+path="res://.import/enemySwimming_1.png-fb8e02b87cbdb52cdd88239d36a5af75.stex"
 metadata={
 "vram_texture": false
 }
 
 [deps]
 
-source_file="res://component/entity/enemy/enemySwimming_1.png"
-dest_files=[ "res://.import/enemySwimming_1.png-e32bf7eeeeb21f70545fa389d91f3ab5.stex" ]
+source_file="res://component/entity/octo/enemySwimming_1.png"
+dest_files=[ "res://.import/enemySwimming_1.png-fb8e02b87cbdb52cdd88239d36a5af75.stex" ]
 
 [params]
 

godot/component/entity/enemy/enemySwimming_2.png → godot/component/entity/octo/enemySwimming_2.png


+ 3 - 3
godot/component/entity/enemy/enemySwimming_2.png.import

@@ -2,15 +2,15 @@
 
 importer="texture"
 type="StreamTexture"
-path="res://.import/enemySwimming_2.png-0ba4705ca96e94da007b795ea20649f1.stex"
+path="res://.import/enemySwimming_2.png-ab3c2772d9f36ca38ee33921b0fed298.stex"
 metadata={
 "vram_texture": false
 }
 
 [deps]
 
-source_file="res://component/entity/enemy/enemySwimming_2.png"
-dest_files=[ "res://.import/enemySwimming_2.png-0ba4705ca96e94da007b795ea20649f1.stex" ]
+source_file="res://component/entity/octo/enemySwimming_2.png"
+dest_files=[ "res://.import/enemySwimming_2.png-ab3c2772d9f36ca38ee33921b0fed298.stex" ]
 
 [params]
 

godot/component/entity/enemy/enemyWalking_1.png → godot/component/entity/octo/enemyWalking_1.png


+ 3 - 3
godot/component/entity/enemy/enemyWalking_1.png.import

@@ -2,15 +2,15 @@
 
 importer="texture"
 type="StreamTexture"
-path="res://.import/enemyWalking_1.png-89ace17788e324551540d461808cd12b.stex"
+path="res://.import/enemyWalking_1.png-ac1e3eb1f081f41a1e71ea4551e56d75.stex"
 metadata={
 "vram_texture": false
 }
 
 [deps]
 
-source_file="res://component/entity/enemy/enemyWalking_1.png"
-dest_files=[ "res://.import/enemyWalking_1.png-89ace17788e324551540d461808cd12b.stex" ]
+source_file="res://component/entity/octo/enemyWalking_1.png"
+dest_files=[ "res://.import/enemyWalking_1.png-ac1e3eb1f081f41a1e71ea4551e56d75.stex" ]
 
 [params]
 

godot/component/entity/enemy/enemyWalking_2.png → godot/component/entity/octo/enemyWalking_2.png


+ 3 - 3
godot/component/entity/enemy/enemyWalking_2.png.import

@@ -2,15 +2,15 @@
 
 importer="texture"
 type="StreamTexture"
-path="res://.import/enemyWalking_2.png-226088c4f1f6c899c8e23f618ea43a12.stex"
+path="res://.import/enemyWalking_2.png-b2a666611af9598c254193e9f2c29186.stex"
 metadata={
 "vram_texture": false
 }
 
 [deps]
 
-source_file="res://component/entity/enemy/enemyWalking_2.png"
-dest_files=[ "res://.import/enemyWalking_2.png-226088c4f1f6c899c8e23f618ea43a12.stex" ]
+source_file="res://component/entity/octo/enemyWalking_2.png"
+dest_files=[ "res://.import/enemyWalking_2.png-b2a666611af9598c254193e9f2c29186.stex" ]
 
 [params]