Basic pathfinding working for crying ghosts
|
Before Width: | Height: | Size: 194 B After Width: | Height: | Size: 194 B |
@@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://mesi0bfnca6y"
|
||||
path="res://.godot/imported/Fireball.png-86123da5fd3d9a12514f31908427d9dd.ctex"
|
||||
path="res://.godot/imported/Fireball.png-220a164c89b06ee48fdd7fb2e948e296.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Abilities/Fireball.png"
|
||||
dest_files=["res://.godot/imported/Fireball.png-86123da5fd3d9a12514f31908427d9dd.ctex"]
|
||||
source_file="res://Abilities/Fireball/Fireball.png"
|
||||
dest_files=["res://.godot/imported/Fireball.png-220a164c89b06ee48fdd7fb2e948e296.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[gd_scene load_steps=4 format=3 uid="uid://bc7omt6pay1lx"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://tt0u7f0gemjo" path="res://Abilities/Fireball.cs" id="1_0kqim"]
|
||||
[ext_resource type="Texture2D" uid="uid://mesi0bfnca6y" path="res://Abilities/Fireball.png" id="2_rf7by"]
|
||||
[ext_resource type="Script" uid="uid://tt0u7f0gemjo" path="res://Abilities/Fireball/Fireball.cs" id="1_0kqim"]
|
||||
[ext_resource type="Texture2D" uid="uid://mesi0bfnca6y" path="res://Abilities/Fireball/Fireball.png" id="2_rf7by"]
|
||||
|
||||
[sub_resource type="CircleShape2D" id="CircleShape2D_nvq50"]
|
||||
radius = 6.0
|
||||
@@ -9,6 +9,7 @@ radius = 6.0
|
||||
[node name="Fireball" type="Area2D"]
|
||||
script = ExtResource("1_0kqim")
|
||||
Speed = 700.0
|
||||
Lifetime = 1.0
|
||||
|
||||
[node name="Sprite2D" type="Sprite2D" parent="."]
|
||||
texture = ExtResource("2_rf7by")
|
||||
@@ -1,7 +1,7 @@
|
||||
[gd_scene load_steps=4 format=3 uid="uid://dhobg02glafch"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://c4cmav4r8i83e" path="res://Abilities/Fireballv2.cs" id="1_8mjwt"]
|
||||
[ext_resource type="Texture2D" uid="uid://mesi0bfnca6y" path="res://Abilities/Fireball.png" id="2_0w1e3"]
|
||||
[ext_resource type="Script" uid="uid://c4cmav4r8i83e" path="res://Abilities/Fireball/Fireballv2.cs" id="1_8mjwt"]
|
||||
[ext_resource type="Texture2D" uid="uid://mesi0bfnca6y" path="res://Abilities/Fireball/Fireball.png" id="2_0w1e3"]
|
||||
|
||||
[sub_resource type="CircleShape2D" id="CircleShape2D_nvq50"]
|
||||
radius = 6.0
|
||||
@@ -9,7 +9,9 @@ radius = 6.0
|
||||
[node name="Fireballv2" type="Area2D"]
|
||||
script = ExtResource("1_8mjwt")
|
||||
TurnRate = 8.0
|
||||
OrbitStrength = 1.0
|
||||
Speed = 500.0
|
||||
Lifetime = 1.0
|
||||
|
||||
[node name="Sprite2D" type="Sprite2D" parent="."]
|
||||
texture = ExtResource("2_0w1e3")
|
||||
@@ -1,7 +1,7 @@
|
||||
[gd_scene load_steps=4 format=3 uid="uid://b2u2xirxjo68h"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://bwwxti5v178gx" path="res://Abilities/Fireballv3.cs" id="1_8c7o3"]
|
||||
[ext_resource type="Texture2D" uid="uid://mesi0bfnca6y" path="res://Abilities/Fireball.png" id="2_aknci"]
|
||||
[ext_resource type="Script" uid="uid://bwwxti5v178gx" path="res://Abilities/Fireball/Fireballv3.cs" id="1_8c7o3"]
|
||||
[ext_resource type="Texture2D" uid="uid://mesi0bfnca6y" path="res://Abilities/Fireball/Fireball.png" id="2_aknci"]
|
||||
|
||||
[sub_resource type="CircleShape2D" id="CircleShape2D_nvq50"]
|
||||
radius = 6.0
|
||||
@@ -10,6 +10,7 @@ radius = 6.0
|
||||
script = ExtResource("1_8c7o3")
|
||||
TurnSpeed = 8.0
|
||||
Speed = 500.0
|
||||
Lifetime = 1.0
|
||||
|
||||
[node name="Sprite2D" type="Sprite2D" parent="."]
|
||||
texture = ExtResource("2_aknci")
|
||||
@@ -3,8 +3,10 @@ using Godot;
|
||||
public partial class ProjectileBase : Area2D
|
||||
{
|
||||
[Export] public float Speed { get; set; }
|
||||
[Export] public float Lifetime { get; set; }
|
||||
|
||||
protected CharacterBase? Character;
|
||||
protected float Age { get; private set; } = 0f;
|
||||
|
||||
public override void _Ready()
|
||||
{
|
||||
@@ -14,6 +16,16 @@ public partial class ProjectileBase : Area2D
|
||||
}
|
||||
}
|
||||
|
||||
public override void _Process(double delta)
|
||||
{
|
||||
Age += (float)delta;
|
||||
|
||||
if (Age >= Lifetime)
|
||||
{
|
||||
QueueFree();
|
||||
}
|
||||
}
|
||||
|
||||
void OnBodyEntered(Node body)
|
||||
{
|
||||
if (body == Character)
|
||||
|
||||
24
Characters/Alien/Alien.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using Godot;
|
||||
using System;
|
||||
|
||||
public partial class Alien : CharacterBase
|
||||
{
|
||||
private AnimatedSprite2D? _animatedSprite;
|
||||
|
||||
public override void _Ready()
|
||||
{
|
||||
_animatedSprite = GetNode<AnimatedSprite2D>("AnimatedSprite2D");
|
||||
}
|
||||
|
||||
public override void _Process(double delta)
|
||||
{
|
||||
if (IsMoving)
|
||||
{
|
||||
_animatedSprite?.Play("walk");
|
||||
}
|
||||
else
|
||||
{
|
||||
_animatedSprite?.Stop();
|
||||
}
|
||||
}
|
||||
}
|
||||
1
Characters/Alien/Alien.cs.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://bi3skhkybwoa7
|
||||
37
Characters/Alien/Alien.tres
Normal file
@@ -0,0 +1,37 @@
|
||||
[gd_resource type="SpriteFrames" load_steps=5 format=3 uid="uid://bqy3twlyxmhx6"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://lja331o88abg" path="res://Characters/Alien/Sprite-0004.png" id="1_gpyw1"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="AtlasTexture_ffiei"]
|
||||
atlas = ExtResource("1_gpyw1")
|
||||
region = Rect2(0, 0, 16, 32)
|
||||
|
||||
[sub_resource type="AtlasTexture" id="AtlasTexture_d4kv8"]
|
||||
atlas = ExtResource("1_gpyw1")
|
||||
region = Rect2(0, 0, 16, 32)
|
||||
|
||||
[sub_resource type="AtlasTexture" id="AtlasTexture_117nm"]
|
||||
atlas = ExtResource("1_gpyw1")
|
||||
region = Rect2(16, 0, 16, 32)
|
||||
|
||||
[resource]
|
||||
animations = [{
|
||||
"frames": [{
|
||||
"duration": 1.0,
|
||||
"texture": SubResource("AtlasTexture_ffiei")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"default",
|
||||
"speed": 5.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 1.0,
|
||||
"texture": SubResource("AtlasTexture_d4kv8")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": SubResource("AtlasTexture_117nm")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"walk",
|
||||
"speed": 5.0
|
||||
}]
|
||||
20
Characters/Alien/Alien.tscn
Normal file
@@ -0,0 +1,20 @@
|
||||
[gd_scene load_steps=4 format=3 uid="uid://lfawbspot0vf"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://bi3skhkybwoa7" path="res://Characters/Alien/Alien.cs" id="1_h37a8"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://bqy3twlyxmhx6" path="res://Characters/Alien/Alien.tres" id="2_5lqdc"]
|
||||
|
||||
[sub_resource type="CapsuleShape2D" id="CapsuleShape2D_h37a8"]
|
||||
radius = 4.0
|
||||
height = 28.0
|
||||
|
||||
[node name="Alien" type="CharacterBody2D" groups=["Player"]]
|
||||
script = ExtResource("1_h37a8")
|
||||
Speed = 150.0
|
||||
|
||||
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
||||
position = Vector2(0, 1)
|
||||
shape = SubResource("CapsuleShape2D_h37a8")
|
||||
|
||||
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."]
|
||||
sprite_frames = ExtResource("2_5lqdc")
|
||||
animation = &"walk"
|
||||
BIN
Characters/Alien/Sprite-0004.png
Normal file
|
After Width: | Height: | Size: 493 B |
40
Characters/Alien/Sprite-0004.png.import
Normal file
@@ -0,0 +1,40 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://lja331o88abg"
|
||||
path="res://.godot/imported/Sprite-0004.png-e66795ad74755bd4c94f14c19c9ecbcb.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Characters/Alien/Sprite-0004.png"
|
||||
dest_files=["res://.godot/imported/Sprite-0004.png-e66795ad74755bd4c94f14c19c9ecbcb.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
@@ -18,6 +18,8 @@ public abstract partial class CharacterBase : CharacterBody2D
|
||||
=> (GetGlobalMousePosition() - GlobalPosition).Angle();
|
||||
protected bool IsPrimaryOnCooldown
|
||||
=> primaryCooldown > 0f;
|
||||
protected bool IsMoving
|
||||
=> Velocity != Vector2.Zero;
|
||||
|
||||
float primaryCooldown;
|
||||
|
||||
@@ -34,7 +36,7 @@ public abstract partial class CharacterBase : CharacterBody2D
|
||||
|
||||
void HandleInput(double delta)
|
||||
{
|
||||
var direction = Input.GetVector(InputLeft, InputRight, InputUp, InputDown);
|
||||
var direction = Input.GetVector(InputLeft, InputRight, InputUp, InputDown).Normalized();
|
||||
|
||||
Velocity = direction * Speed;
|
||||
|
||||
|
||||
72
Characters/Crying Ghost/Crying Ghost.tres
Normal file
@@ -0,0 +1,72 @@
|
||||
[gd_resource type="SpriteFrames" load_steps=10 format=3 uid="uid://v2dncd7e66ki"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://cktqad5dxfmst" path="res://Characters/Crying Ghost/Sprite-0008.png" id="1_pumse"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="AtlasTexture_3x7sv"]
|
||||
atlas = ExtResource("1_pumse")
|
||||
region = Rect2(0, 0, 16, 32)
|
||||
|
||||
[sub_resource type="AtlasTexture" id="AtlasTexture_b8dh6"]
|
||||
atlas = ExtResource("1_pumse")
|
||||
region = Rect2(0, 0, 16, 32)
|
||||
|
||||
[sub_resource type="AtlasTexture" id="AtlasTexture_1m6wj"]
|
||||
atlas = ExtResource("1_pumse")
|
||||
region = Rect2(16, 0, 16, 32)
|
||||
|
||||
[sub_resource type="AtlasTexture" id="AtlasTexture_nxsb8"]
|
||||
atlas = ExtResource("1_pumse")
|
||||
region = Rect2(32, 0, 16, 32)
|
||||
|
||||
[sub_resource type="AtlasTexture" id="AtlasTexture_eav7g"]
|
||||
atlas = ExtResource("1_pumse")
|
||||
region = Rect2(48, 0, 16, 32)
|
||||
|
||||
[sub_resource type="AtlasTexture" id="AtlasTexture_xejkc"]
|
||||
atlas = ExtResource("1_pumse")
|
||||
region = Rect2(64, 0, 16, 32)
|
||||
|
||||
[sub_resource type="AtlasTexture" id="AtlasTexture_xcy63"]
|
||||
atlas = ExtResource("1_pumse")
|
||||
region = Rect2(80, 0, 16, 32)
|
||||
|
||||
[sub_resource type="AtlasTexture" id="AtlasTexture_uxp54"]
|
||||
atlas = ExtResource("1_pumse")
|
||||
region = Rect2(96, 0, 16, 32)
|
||||
|
||||
[resource]
|
||||
animations = [{
|
||||
"frames": [{
|
||||
"duration": 1.0,
|
||||
"texture": SubResource("AtlasTexture_3x7sv")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"default",
|
||||
"speed": 5.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 1.0,
|
||||
"texture": SubResource("AtlasTexture_b8dh6")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": SubResource("AtlasTexture_1m6wj")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": SubResource("AtlasTexture_nxsb8")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": SubResource("AtlasTexture_eav7g")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": SubResource("AtlasTexture_xejkc")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": SubResource("AtlasTexture_xcy63")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": SubResource("AtlasTexture_uxp54")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"idle",
|
||||
"speed": 5.0
|
||||
}]
|
||||
38
Characters/Crying Ghost/Crying Ghost.tscn
Normal file
@@ -0,0 +1,38 @@
|
||||
[gd_scene load_steps=5 format=3 uid="uid://61hp8l06y7ka"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://d2mxshuj7um8x" path="res://Characters/Crying Ghost/CryingGhost.cs" id="1_wdx63"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://v2dncd7e66ki" path="res://Characters/Crying Ghost/Crying Ghost.tres" id="2_6ooq7"]
|
||||
|
||||
[sub_resource type="CapsuleShape2D" id="CapsuleShape2D_wdx63"]
|
||||
radius = 4.0
|
||||
height = 22.0
|
||||
|
||||
[sub_resource type="CircleShape2D" id="CircleShape2D_wdx63"]
|
||||
radius = 128.0
|
||||
|
||||
[node name="CryingGhost" type="CharacterBody2D"]
|
||||
script = ExtResource("1_wdx63")
|
||||
Speed = 50.0
|
||||
|
||||
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."]
|
||||
sprite_frames = ExtResource("2_6ooq7")
|
||||
animation = &"idle"
|
||||
|
||||
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
||||
shape = SubResource("CapsuleShape2D_wdx63")
|
||||
|
||||
[node name="NavigationAgent2D" type="NavigationAgent2D" parent="."]
|
||||
path_desired_distance = 4.0
|
||||
target_desired_distance = 4.0
|
||||
path_postprocessing = 1
|
||||
avoidance_enabled = true
|
||||
radius = 4.0
|
||||
debug_enabled = true
|
||||
|
||||
[node name="DetectionArea" type="Area2D" parent="."]
|
||||
|
||||
[node name="CollisionShape2D" type="CollisionShape2D" parent="DetectionArea"]
|
||||
shape = SubResource("CircleShape2D_wdx63")
|
||||
|
||||
[node name="TargetTimer" type="Timer" parent="."]
|
||||
wait_time = 0.25
|
||||
78
Characters/Crying Ghost/CryingGhost.cs
Normal file
@@ -0,0 +1,78 @@
|
||||
using Godot;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
public partial class CryingGhost : CharacterBase
|
||||
{
|
||||
private AnimatedSprite2D _animatedSprite = default!;
|
||||
private NavigationAgent2D _navigationAgent = default!;
|
||||
private Area2D _detectionArea = default!;
|
||||
private Timer _targetTimer = default!;
|
||||
|
||||
protected Node2D? Target { get; private set; }
|
||||
[MemberNotNullWhen(true, nameof(Target))]
|
||||
protected bool HasTarget => Target is not null;
|
||||
|
||||
public override void _Ready()
|
||||
{
|
||||
_animatedSprite = GetNode<AnimatedSprite2D>("AnimatedSprite2D");
|
||||
_navigationAgent = GetNode<NavigationAgent2D>("NavigationAgent2D");
|
||||
_detectionArea = GetNode<Area2D>("DetectionArea");
|
||||
_targetTimer = GetNode<Timer>("TargetTimer");
|
||||
|
||||
_animatedSprite?.Play("idle");
|
||||
_detectionArea.BodyEntered += OnBodyEntered;
|
||||
_detectionArea.BodyExited += OnBodyExited;
|
||||
_targetTimer.Timeout += OnTimeout;
|
||||
_navigationAgent.VelocityComputed += OnVelocityComputed;
|
||||
}
|
||||
|
||||
public override void _PhysicsProcess(double delta)
|
||||
{
|
||||
if (!HasTarget)
|
||||
{
|
||||
Velocity = Vector2.Zero;
|
||||
}
|
||||
else
|
||||
{
|
||||
var nextPosition = _navigationAgent.GetNextPathPosition();
|
||||
var direction = (nextPosition - GlobalPosition).Normalized();
|
||||
|
||||
_navigationAgent.Velocity = direction * Speed;
|
||||
}
|
||||
|
||||
MoveAndSlide();
|
||||
}
|
||||
|
||||
void OnBodyEntered(Node2D body)
|
||||
{
|
||||
if (body.IsInGroup("Player"))
|
||||
{
|
||||
Target = body;
|
||||
_navigationAgent.TargetPosition = Target.GlobalPosition;
|
||||
_targetTimer.Start();
|
||||
}
|
||||
}
|
||||
|
||||
void OnBodyExited(Node2D body)
|
||||
{
|
||||
if (body == Target)
|
||||
{
|
||||
Target = null;
|
||||
_navigationAgent.TargetPosition = GlobalPosition;
|
||||
_targetTimer.Stop();
|
||||
}
|
||||
}
|
||||
|
||||
void OnTimeout()
|
||||
{
|
||||
if (HasTarget)
|
||||
{
|
||||
_navigationAgent.TargetPosition = Target.GlobalPosition;
|
||||
}
|
||||
}
|
||||
|
||||
void OnVelocityComputed(Vector2 safeVelocity)
|
||||
{
|
||||
Velocity = safeVelocity;
|
||||
}
|
||||
}
|
||||
1
Characters/Crying Ghost/CryingGhost.cs.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://d2mxshuj7um8x
|
||||
BIN
Characters/Crying Ghost/Sprite-0008.png
Normal file
|
After Width: | Height: | Size: 423 B |
40
Characters/Crying Ghost/Sprite-0008.png.import
Normal file
@@ -0,0 +1,40 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cktqad5dxfmst"
|
||||
path="res://.godot/imported/Sprite-0008.png-1fafa4a9bb9b4df1192de33bd2fa3429.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Characters/Crying Ghost/Sprite-0008.png"
|
||||
dest_files=["res://.godot/imported/Sprite-0008.png-1fafa4a9bb9b4df1192de33bd2fa3429.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
@@ -11,7 +11,7 @@ size = Vector2(16, 32)
|
||||
motion_mode = 1
|
||||
script = ExtResource("1_8l5bb")
|
||||
Weapon = ExtResource("2_0fgit")
|
||||
Speed = 300.0
|
||||
Speed = 100.0
|
||||
PrimaryCooldown = 1.0
|
||||
|
||||
[node name="Body" type="Sprite2D" parent="."]
|
||||
|
||||
24
Characters/Potato/Potato.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using Godot;
|
||||
using System;
|
||||
|
||||
public partial class Potato : CharacterBase
|
||||
{
|
||||
private AnimatedSprite2D? _animatedSprite;
|
||||
|
||||
public override void _Ready()
|
||||
{
|
||||
_animatedSprite = GetNode<AnimatedSprite2D>("AnimatedSprite2D");
|
||||
}
|
||||
|
||||
public override void _Process(double delta)
|
||||
{
|
||||
if (IsMoving)
|
||||
{
|
||||
_animatedSprite?.Play("walk");
|
||||
}
|
||||
else
|
||||
{
|
||||
_animatedSprite?.Stop();
|
||||
}
|
||||
}
|
||||
}
|
||||
1
Characters/Potato/Potato.cs.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://dq1dx56o8k7tg
|
||||
34
Characters/Potato/Potato.tres
Normal file
@@ -0,0 +1,34 @@
|
||||
[gd_resource type="SpriteFrames" load_steps=5 format=3 uid="uid://drrdnd1kwr7lj"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://bvs8vrofgjoag" path="res://Characters/Potato/potato.png" id="1_os4wu"]
|
||||
[ext_resource type="Texture2D" uid="uid://cjs21sigvksdf" path="res://Characters/Potato/potato_walk.png" id="2_g3cha"]
|
||||
|
||||
[sub_resource type="AtlasTexture" id="AtlasTexture_cu4k2"]
|
||||
atlas = ExtResource("2_g3cha")
|
||||
region = Rect2(0, 0, 16, 16)
|
||||
|
||||
[sub_resource type="AtlasTexture" id="AtlasTexture_f5v2o"]
|
||||
atlas = ExtResource("2_g3cha")
|
||||
region = Rect2(16, 0, 16, 16)
|
||||
|
||||
[resource]
|
||||
animations = [{
|
||||
"frames": [{
|
||||
"duration": 1.0,
|
||||
"texture": ExtResource("1_os4wu")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"default",
|
||||
"speed": 5.0
|
||||
}, {
|
||||
"frames": [{
|
||||
"duration": 1.0,
|
||||
"texture": SubResource("AtlasTexture_cu4k2")
|
||||
}, {
|
||||
"duration": 1.0,
|
||||
"texture": SubResource("AtlasTexture_f5v2o")
|
||||
}],
|
||||
"loop": true,
|
||||
"name": &"walk",
|
||||
"speed": 5.0
|
||||
}]
|
||||
21
Characters/Potato/Potato.tscn
Normal file
@@ -0,0 +1,21 @@
|
||||
[gd_scene load_steps=4 format=3 uid="uid://bqbsh3mejgs18"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dq1dx56o8k7tg" path="res://Characters/Potato/Potato.cs" id="1_nwx1l"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://drrdnd1kwr7lj" path="res://Characters/Potato/Potato.tres" id="2_sw86o"]
|
||||
|
||||
[sub_resource type="CapsuleShape2D" id="CapsuleShape2D_sw86o"]
|
||||
radius = 4.1781855
|
||||
height = 15.565589
|
||||
|
||||
[node name="Potato" type="CharacterBody2D"]
|
||||
script = ExtResource("1_nwx1l")
|
||||
Speed = 100.0
|
||||
|
||||
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."]
|
||||
sprite_frames = ExtResource("2_sw86o")
|
||||
animation = &"walk"
|
||||
frame_progress = 0.988052
|
||||
|
||||
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
||||
rotation = 0.61086524
|
||||
shape = SubResource("CapsuleShape2D_sw86o")
|
||||
BIN
Characters/Potato/potato.png
Normal file
|
After Width: | Height: | Size: 290 B |
40
Characters/Potato/potato.png.import
Normal file
@@ -0,0 +1,40 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bvs8vrofgjoag"
|
||||
path="res://.godot/imported/potato.png-8d8c005bc502d63f08b319ec956f9fa9.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Characters/Potato/potato.png"
|
||||
dest_files=["res://.godot/imported/potato.png-8d8c005bc502d63f08b319ec956f9fa9.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
Characters/Potato/potato_walk.png
Normal file
|
After Width: | Height: | Size: 389 B |
40
Characters/Potato/potato_walk.png.import
Normal file
@@ -0,0 +1,40 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cjs21sigvksdf"
|
||||
path="res://.godot/imported/potato_walk.png-796309b1abb8d979328a6e8ba0383026.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Characters/Potato/potato_walk.png"
|
||||
dest_files=["res://.godot/imported/potato_walk.png-796309b1abb8d979328a6e8ba0383026.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://qi1cvcj41wxr" path="res://Characters/Wizard/Body.png" id="1_pptet"]
|
||||
[ext_resource type="Script" uid="uid://cx2flf2i3h0rv" path="res://Characters/Wizard/Wizard.cs" id="1_vgyld"]
|
||||
[ext_resource type="PackedScene" uid="uid://b2u2xirxjo68h" path="res://Abilities/Fireballv3.tscn" id="2_n5kae"]
|
||||
[ext_resource type="PackedScene" uid="uid://b2u2xirxjo68h" path="res://Abilities/Fireball/Fireballv3.tscn" id="2_n5kae"]
|
||||
|
||||
[sub_resource type="RectangleShape2D" id="RectangleShape2D_n5kae"]
|
||||
size = Vector2(16, 32)
|
||||
@@ -11,7 +11,7 @@ size = Vector2(16, 32)
|
||||
motion_mode = 1
|
||||
script = ExtResource("1_vgyld")
|
||||
Projectile = ExtResource("2_n5kae")
|
||||
Speed = 300.0
|
||||
Speed = 75.0
|
||||
PrimaryCooldown = 0.5
|
||||
|
||||
[node name="Body" type="Sprite2D" parent="."]
|
||||
|
||||
|
Before Width: | Height: | Size: 559 B After Width: | Height: | Size: 559 B |
@@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://urhgw0tiji88"
|
||||
path="res://.godot/imported/FloorTile16.png-0ec93fd5f65affde1fdd7c93b3b9e4c8.ctex"
|
||||
path="res://.godot/imported/Debug.png-8a36d959f9111130b60ad1eafc5350a5.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Environment/Tiles/FloorTile16.png"
|
||||
dest_files=["res://.godot/imported/FloorTile16.png-0ec93fd5f65affde1fdd7c93b3b9e4c8.ctex"]
|
||||
source_file="res://Environment/Tiles/Floor/Debug.png"
|
||||
dest_files=["res://.godot/imported/Debug.png-8a36d959f9111130b60ad1eafc5350a5.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
BIN
Environment/Tiles/Floor/Plain.png
Normal file
|
After Width: | Height: | Size: 119 B |
40
Environment/Tiles/Floor/Plain.png.import
Normal file
@@ -0,0 +1,40 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://7ftsqvk686hn"
|
||||
path="res://.godot/imported/Plain.png-34f9baf8febb9fa7112834a539263591.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Environment/Tiles/Floor/Plain.png"
|
||||
dest_files=["res://.godot/imported/Plain.png-34f9baf8febb9fa7112834a539263591.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
BIN
Environment/Tiles/Floor/Square4.png
Normal file
|
After Width: | Height: | Size: 131 B |
40
Environment/Tiles/Floor/Square4.png.import
Normal file
@@ -0,0 +1,40 @@
|
||||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://sm06orxldfgs"
|
||||
path="res://.godot/imported/Square4.png-93df56fcb113c6281d288843bd40d197.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Environment/Tiles/Floor/Square4.png"
|
||||
dest_files=["res://.godot/imported/Square4.png-93df56fcb113c6281d288843bd40d197.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
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/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
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
|
||||
@@ -1,18 +1,48 @@
|
||||
[gd_resource type="TileSet" load_steps=5 format=3 uid="uid://cvtrfc1jh3v56"]
|
||||
[gd_resource type="TileSet" load_steps=12 format=3 uid="uid://cvtrfc1jh3v56"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://urhgw0tiji88" path="res://Environment/Tiles/FloorTile16.png" id="1_g8jos"]
|
||||
[ext_resource type="Texture2D" uid="uid://cp4va5lqydihh" path="res://Environment/Tiles/WallTile16.png" id="2_gv1ha"]
|
||||
[ext_resource type="Texture2D" uid="uid://urhgw0tiji88" path="res://Environment/Tiles/Floor/Debug.png" id="1_21hfy"]
|
||||
[ext_resource type="Texture2D" uid="uid://cp4va5lqydihh" path="res://Environment/Tiles/Wall/Debug.png" id="2_8ptfa"]
|
||||
[ext_resource type="Texture2D" uid="uid://sm06orxldfgs" path="res://Environment/Tiles/Floor/Square4.png" id="3_d7vwv"]
|
||||
[ext_resource type="Texture2D" uid="uid://7ftsqvk686hn" path="res://Environment/Tiles/Floor/Plain.png" id="4_e3nq8"]
|
||||
|
||||
[sub_resource type="NavigationPolygon" id="NavigationPolygon_21hfy"]
|
||||
vertices = PackedVector2Array(8, 8, -8, 8, -8, -8, 8, -8)
|
||||
polygons = Array[PackedInt32Array]([PackedInt32Array(0, 1, 2, 3)])
|
||||
outlines = Array[PackedVector2Array]([PackedVector2Array(-8, -8, 8, -8, 8, 8, -8, 8)])
|
||||
agent_radius = 0.0
|
||||
|
||||
[sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_21hfy"]
|
||||
texture = ExtResource("1_g8jos")
|
||||
texture = ExtResource("1_21hfy")
|
||||
0:0/0 = 0
|
||||
0:0/0/navigation_layer_0/polygon = SubResource("NavigationPolygon_21hfy")
|
||||
|
||||
[sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_8ptfa"]
|
||||
texture = ExtResource("2_gv1ha")
|
||||
texture = ExtResource("2_8ptfa")
|
||||
0:0/0 = 0
|
||||
0:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-8, -8, 8, -8, 8, 8, -8, 8)
|
||||
|
||||
[sub_resource type="NavigationPolygon" id="NavigationPolygon_8ptfa"]
|
||||
vertices = PackedVector2Array(8, 8, -8, 8, -8, -8, 8, -8)
|
||||
polygons = Array[PackedInt32Array]([PackedInt32Array(0, 1, 2, 3)])
|
||||
outlines = Array[PackedVector2Array]([PackedVector2Array(-8, -8, 8, -8, 8, 8, -8, 8)])
|
||||
agent_radius = 0.0
|
||||
|
||||
[sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_d7vwv"]
|
||||
texture = ExtResource("3_d7vwv")
|
||||
0:0/0 = 0
|
||||
0:0/0/navigation_layer_0/polygon = SubResource("NavigationPolygon_8ptfa")
|
||||
|
||||
[sub_resource type="NavigationPolygon" id="NavigationPolygon_d7vwv"]
|
||||
|
||||
[sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_e4sdj"]
|
||||
texture = ExtResource("4_e3nq8")
|
||||
0:0/0 = 0
|
||||
0:0/0/navigation_layer_0/polygon = SubResource("NavigationPolygon_d7vwv")
|
||||
|
||||
[resource]
|
||||
physics_layer_0/collision_layer = 1
|
||||
navigation_layer_0/layers = 1
|
||||
sources/0 = SubResource("TileSetAtlasSource_21hfy")
|
||||
sources/1 = SubResource("TileSetAtlasSource_8ptfa")
|
||||
sources/2 = SubResource("TileSetAtlasSource_d7vwv")
|
||||
sources/3 = SubResource("TileSetAtlasSource_e4sdj")
|
||||
|
||||
|
Before Width: | Height: | Size: 557 B After Width: | Height: | Size: 557 B |
@@ -3,15 +3,15 @@
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cp4va5lqydihh"
|
||||
path="res://.godot/imported/WallTile16.png-49a4d5bdce0b800a761a2052cdcbe3d6.ctex"
|
||||
path="res://.godot/imported/Debug.png-8c9002057f574af6c8e6ddeba457752c.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://Environment/Tiles/WallTile16.png"
|
||||
dest_files=["res://.godot/imported/WallTile16.png-49a4d5bdce0b800a761a2052cdcbe3d6.ctex"]
|
||||
source_file="res://Environment/Tiles/Wall/Debug.png"
|
||||
dest_files=["res://.godot/imported/Debug.png-8c9002057f574af6c8e6ddeba457752c.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
@@ -17,8 +17,9 @@ config/icon="res://icon.svg"
|
||||
|
||||
[display]
|
||||
|
||||
window/size/viewport_width=1920
|
||||
window/size/viewport_height=1080
|
||||
window/size/viewport_width=640
|
||||
window/size/viewport_height=360
|
||||
window/stretch/mode="canvas_items"
|
||||
mouse_cursor/custom_image="uid://dffyyka82e8mr"
|
||||
mouse_cursor/custom_image_hotspot=Vector2(16, 16)
|
||||
|
||||
|
||||