Started a Godot Project to remake Tailgunner.

This commit is contained in:
KingGurke 2025-04-02 12:36:05 +02:00
commit 9621323983
67 changed files with 976 additions and 0 deletions

31
scenes/flyer.tscn Normal file
View file

@ -0,0 +1,31 @@
[gd_scene load_steps=6 format=3 uid="uid://c0688rpnga7bt"]
[ext_resource type="Script" uid="uid://b5qkxnurvqbi2" path="res://scripts/flyer.gd" id="1_ben2c"]
[ext_resource type="Texture2D" uid="uid://djduujf1cj53r" path="res://sprites/pilotnorkt.png" id="2_ddpln"]
[ext_resource type="Script" uid="uid://cu7q3fqvjoyos" path="res://scripts/player_controller.gd" id="3_ddpln"]
[ext_resource type="Script" uid="uid://cr8aonshxxpqf" path="res://scripts/weapon.gd" id="4_isfd2"]
[sub_resource type="RectangleShape2D" id="RectangleShape2D_isfd2"]
size = Vector2(74.5, 29)
[node name="Node2D" type="Node2D"]
[node name="CharacterBody2D" type="CharacterBody2D" parent="."]
script = ExtResource("1_ben2c")
[node name="CollisionShape2D" type="CollisionShape2D" parent="CharacterBody2D"]
position = Vector2(3.75, 1.5)
shape = SubResource("RectangleShape2D_isfd2")
[node name="Sprite2D" type="Sprite2D" parent="CharacterBody2D"]
texture_filter = 1
texture = ExtResource("2_ddpln")
[node name="PlayerController" type="Node" parent="CharacterBody2D" node_paths=PackedStringArray("controlled_flyer")]
script = ExtResource("3_ddpln")
controlled_flyer = NodePath("..")
metadata/_custom_type_script = "uid://cu7q3fqvjoyos"
[node name="Weapon" type="Node2D" parent="CharacterBody2D"]
script = ExtResource("4_isfd2")
metadata/_custom_type_script = "uid://cr8aonshxxpqf"