Most of prototype! yay

This commit is contained in:
2025-05-01 08:27:30 -05:00
parent 11605c9f17
commit 30bf202118
51 changed files with 1906 additions and 52 deletions

Binary file not shown.

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dcuqa5saaxapt"
path="res://.godot/imported/deflector.aseprite-f7ae4c7ec47c88d68c3b91257e4dbce3.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://entities/deflector/deflector.aseprite"
dest_files=["res://.godot/imported/deflector.aseprite-f7ae4c7ec47c88d68c3b91257e4dbce3.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

View File

@@ -0,0 +1,10 @@
extends Interactable
func _on_interaction_area_body_entered(body: Player) -> void:
body.interaction_target = self
func _on_interaction_area_body_exited(body: Player) -> void:
body.interaction_target = null
func interact():
pass

View File

@@ -0,0 +1 @@
uid://ckgd1u5akr3hc

View File

@@ -0,0 +1,11 @@
[gd_scene load_steps=3 format=3 uid="uid://docbcbiad4ghy"]
[ext_resource type="Script" uid="uid://csbip0oj1uu0j" path="res://common/interactable.gd" id="1_rbxiy"]
[ext_resource type="Texture2D" uid="uid://dcuqa5saaxapt" path="res://entities/deflector/deflector.aseprite" id="2_es2xh"]
[node name="Deflector" type="Node2D"]
script = ExtResource("1_rbxiy")
metadata/_custom_type_script = "uid://csbip0oj1uu0j"
[node name="Sprite2D" type="Sprite2D" parent="."]
texture = ExtResource("2_es2xh")