Новые спрайты (Доспех, искаженный, фурнитура и др.)
|
@ -2,54 +2,54 @@ using Godot;
|
|||
|
||||
public partial class GameCamera : Camera2D
|
||||
{
|
||||
[Export] public Player Player;
|
||||
[Export] public Vector2 CameraBounds = new(40, 30);
|
||||
[Export] public Vector2 CameraFollowBounds = new(20, 10);
|
||||
[Export] public float Speed = 0.5f;
|
||||
[Export] public Player Player;
|
||||
[Export] public Vector2 CameraBounds = new(40, 30);
|
||||
[Export] public Vector2 CameraFollowBounds = new(20, 10);
|
||||
[Export] public float Speed = 0.5f;
|
||||
|
||||
/// <summary>
|
||||
/// World position of the flashlight
|
||||
/// </summary>
|
||||
public Vector2 FlashlightPosition;
|
||||
/// <summary>
|
||||
/// World position of the flashlight
|
||||
/// </summary>
|
||||
public Vector2 FlashlightPosition;
|
||||
|
||||
public override void _PhysicsProcess(double delta)
|
||||
{
|
||||
var difference = Vector2.Zero;
|
||||
public override void _PhysicsProcess(double delta)
|
||||
{
|
||||
var difference = Vector2.Zero;
|
||||
|
||||
var relativePlayerPosition = Player.Position - Position;
|
||||
var halfCameraBounds = CameraBounds / 2;
|
||||
var halfCameraFollowBounds = CameraFollowBounds / 2;
|
||||
var hardLimit = relativePlayerPosition.Clamp(-halfCameraBounds, halfCameraBounds);
|
||||
difference = relativePlayerPosition - hardLimit;
|
||||
//GD.Print($"HardDiff {difference}");
|
||||
if (difference.IsZeroApprox())
|
||||
{
|
||||
float x = 0, y = 0;
|
||||
if (Mathf.Abs(relativePlayerPosition.X) >= halfCameraFollowBounds.X)
|
||||
{
|
||||
x = relativePlayerPosition.X * Speed * (float)delta;
|
||||
}
|
||||
var relativePlayerPosition = Player.Position - Position;
|
||||
var halfCameraBounds = CameraBounds / 2;
|
||||
var halfCameraFollowBounds = CameraFollowBounds / 2;
|
||||
var hardLimit = relativePlayerPosition.Clamp(-halfCameraBounds, halfCameraBounds);
|
||||
difference = relativePlayerPosition - hardLimit;
|
||||
//GD.Print($"HardDiff {difference}");
|
||||
if (difference.IsZeroApprox())
|
||||
{
|
||||
float x = 0, y = 0;
|
||||
if (Mathf.Abs(relativePlayerPosition.X) >= halfCameraFollowBounds.X)
|
||||
{
|
||||
x = relativePlayerPosition.X * Speed * (float)delta;
|
||||
}
|
||||
|
||||
if (Mathf.Abs(relativePlayerPosition.Y) > halfCameraFollowBounds.Y)
|
||||
{
|
||||
y = relativePlayerPosition.Y * Speed * (float)delta;
|
||||
}
|
||||
if (Mathf.Abs(relativePlayerPosition.Y) > halfCameraFollowBounds.Y)
|
||||
{
|
||||
y = relativePlayerPosition.Y * Speed * (float)delta;
|
||||
}
|
||||
|
||||
difference = new Vector2(x, y);
|
||||
//GD.Print($"SmoothDiff {difference}");
|
||||
}
|
||||
difference = new Vector2(x, y);
|
||||
//GD.Print($"SmoothDiff {difference}");
|
||||
}
|
||||
|
||||
Position = (Position + difference).Round();
|
||||
FlashlightPosition = (FlashlightPosition + difference).Round();
|
||||
}
|
||||
Position = (Position + difference).Round();
|
||||
FlashlightPosition = (FlashlightPosition + difference).Round();
|
||||
}
|
||||
|
||||
public override void _Input(InputEvent @event)
|
||||
{
|
||||
base._Input(@event);
|
||||
public override void _Input(InputEvent @event)
|
||||
{
|
||||
base._Input(@event);
|
||||
|
||||
if (@event is InputEventMouseMotion eventMouseMotion)
|
||||
{
|
||||
FlashlightPosition = eventMouseMotion.Position - Constants.HalfScreenSize + Position;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (@event is InputEventMouseMotion eventMouseMotion)
|
||||
{
|
||||
FlashlightPosition = eventMouseMotion.Position - Constants.HalfScreenSize + Position;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
BIN
sprites/enemies/armor/Armor_Side_walk.png
Normal file
After Width: | Height: | Size: 903 B |
34
sprites/enemies/armor/Armor_Side_walk.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bmeexejqy4g2k"
|
||||
path="res://.godot/imported/Armor_Side_walk.png-58b099c7479d19e142de13dd08a0eb8e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/enemies/armor/Armor_Side_walk.png"
|
||||
dest_files=["res://.godot/imported/Armor_Side_walk.png-58b099c7479d19e142de13dd08a0eb8e.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
|
BIN
sprites/enemies/armor/Armor_bottom_walk.png
Normal file
After Width: | Height: | Size: 687 B |
34
sprites/enemies/armor/Armor_bottom_walk.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bcg0kn8iy6pbm"
|
||||
path="res://.godot/imported/Armor_bottom_walk.png-9217846d4390a17929a86946ca701391.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/enemies/armor/Armor_bottom_walk.png"
|
||||
dest_files=["res://.godot/imported/Armor_bottom_walk.png-9217846d4390a17929a86946ca701391.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
|
BIN
sprites/enemies/armor/Armor_up_walk.png
Normal file
After Width: | Height: | Size: 729 B |
34
sprites/enemies/armor/Armor_up_walk.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b7id6stlr34yj"
|
||||
path="res://.godot/imported/Armor_up_walk.png-0daa76846b9c715d7e3c9f6565ccbcf7.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/enemies/armor/Armor_up_walk.png"
|
||||
dest_files=["res://.godot/imported/Armor_up_walk.png-0daa76846b9c715d7e3c9f6565ccbcf7.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
|
BIN
sprites/enemies/wretched/wretched_bottom.png
Normal file
After Width: | Height: | Size: 946 B |
34
sprites/enemies/wretched/wretched_bottom.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://jt8w0gpcde42"
|
||||
path="res://.godot/imported/wretched_bottom.png-f640c46187244bad73a11190616977d6.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/enemies/wretched/wretched_bottom.png"
|
||||
dest_files=["res://.godot/imported/wretched_bottom.png-f640c46187244bad73a11190616977d6.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
|
BIN
sprites/enemies/wretched/wretched_side.png
Normal file
After Width: | Height: | Size: 862 B |
34
sprites/enemies/wretched/wretched_side.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dx8chnbe6vmow"
|
||||
path="res://.godot/imported/wretched_side.png-e1ff3767a29806917ac1020d86384621.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/enemies/wretched/wretched_side.png"
|
||||
dest_files=["res://.godot/imported/wretched_side.png-e1ff3767a29806917ac1020d86384621.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
|
BIN
sprites/enemies/wretched/wretched_up.png
Normal file
After Width: | Height: | Size: 855 B |
34
sprites/enemies/wretched/wretched_up.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ceffjiq2vofiu"
|
||||
path="res://.godot/imported/wretched_up.png-0565b2ee7325d56fe6d6567ead0e7177.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/enemies/wretched/wretched_up.png"
|
||||
dest_files=["res://.godot/imported/wretched_up.png-0565b2ee7325d56fe6d6567ead0e7177.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
|
BIN
sprites/furniture/bed1.png
Normal file
After Width: | Height: | Size: 416 B |
34
sprites/furniture/bed1.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d2gfgemk5bxob"
|
||||
path="res://.godot/imported/bed1.png-81b6fef3acf6ffbb7fc628b14c3a39dc.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/furniture/bed1.png"
|
||||
dest_files=["res://.godot/imported/bed1.png-81b6fef3acf6ffbb7fc628b14c3a39dc.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
|
BIN
sprites/furniture/book.png
Normal file
After Width: | Height: | Size: 163 B |
BIN
sprites/furniture/bookcase.png
Normal file
After Width: | Height: | Size: 386 B |
BIN
sprites/furniture/komod.png
Normal file
After Width: | Height: | Size: 202 B |
34
sprites/furniture/komod.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bwd4ctlfqx81f"
|
||||
path="res://.godot/imported/komod.png-1e75c2ac33d84f58c5394740bd2b6ad7.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/furniture/komod.png"
|
||||
dest_files=["res://.godot/imported/komod.png-1e75c2ac33d84f58c5394740bd2b6ad7.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
|
BIN
sprites/furniture/papers.png
Normal file
After Width: | Height: | Size: 395 B |
BIN
sprites/furniture/skull2.png
Normal file
After Width: | Height: | Size: 248 B |
BIN
sprites/furniture/table1.png
Normal file
After Width: | Height: | Size: 189 B |
34
sprites/furniture/table1.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c5ajo1mf6ptjf"
|
||||
path="res://.godot/imported/table1.png-4acbe315a7d9146e5396c197c2e42219.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/furniture/table1.png"
|
||||
dest_files=["res://.godot/imported/table1.png-4acbe315a7d9146e5396c197c2e42219.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
|
BIN
sprites/furniture/table2.png
Normal file
After Width: | Height: | Size: 180 B |
34
sprites/furniture/table2.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://5jow4httduix"
|
||||
path="res://.godot/imported/table2.png-b0d071013bcc2a3a2c933e3ca344bff4.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/furniture/table2.png"
|
||||
dest_files=["res://.godot/imported/table2.png-b0d071013bcc2a3a2c933e3ca344bff4.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
|
BIN
sprites/furniture/window1.png
Normal file
After Width: | Height: | Size: 301 B |
34
sprites/furniture/window1.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b5pxkscyklqgb"
|
||||
path="res://.godot/imported/window1.png-8aca9488d600b7a145f263c859819f55.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/furniture/window1.png"
|
||||
dest_files=["res://.godot/imported/window1.png-8aca9488d600b7a145f263c859819f55.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
|
BIN
sprites/key.png
Normal file
After Width: | Height: | Size: 286 B |
34
sprites/key.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dwuupm7f5ljte"
|
||||
path="res://.godot/imported/key.png-a2d709fe99edac93aea180e2d39da8db.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/key.png"
|
||||
dest_files=["res://.godot/imported/key.png-a2d709fe99edac93aea180e2d39da8db.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
|
BIN
sprites/tiles/brickwall/brickwall-door.png
Normal file
After Width: | Height: | Size: 521 B |
34
sprites/tiles/brickwall/brickwall-door.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ddadd2iw4enxm"
|
||||
path="res://.godot/imported/brickwall-door.png-c39e52d43cbd4813ac6f33daca2dce6b.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/brickwall/brickwall-door.png"
|
||||
dest_files=["res://.godot/imported/brickwall-door.png-c39e52d43cbd4813ac6f33daca2dce6b.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
|
BIN
sprites/tiles/brickwall/brickwall-up.png
Normal file
After Width: | Height: | Size: 217 B |
34
sprites/tiles/brickwall/brickwall-up.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dah56yqdthi28"
|
||||
path="res://.godot/imported/brickwall-up.png-0720908f4cd71db0cebb54bf664654be.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/brickwall/brickwall-up.png"
|
||||
dest_files=["res://.godot/imported/brickwall-up.png-0720908f4cd71db0cebb54bf664654be.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
|
BIN
sprites/tiles/brickwall/brickwall.png
Normal file
After Width: | Height: | Size: 245 B |
34
sprites/tiles/brickwall/brickwall.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://da0n8p1k0g02q"
|
||||
path="res://.godot/imported/brickwall.png-98b76a47cb369dfd932b806d77e78dac.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/brickwall/brickwall.png"
|
||||
dest_files=["res://.godot/imported/brickwall.png-98b76a47cb369dfd932b806d77e78dac.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
|
BIN
sprites/tiles/brickwall/brickwall_corner_left.png
Normal file
After Width: | Height: | Size: 237 B |
34
sprites/tiles/brickwall/brickwall_corner_left.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bduus14r6flbk"
|
||||
path="res://.godot/imported/brickwall_corner_left.png-5bb14ba4050c5518c171742e54b3385e.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/brickwall/brickwall_corner_left.png"
|
||||
dest_files=["res://.godot/imported/brickwall_corner_left.png-5bb14ba4050c5518c171742e54b3385e.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
|
BIN
sprites/tiles/brickwall/brickwall_corner_right.png
Normal file
After Width: | Height: | Size: 254 B |
34
sprites/tiles/brickwall/brickwall_corner_right.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://b3snbow3oh76n"
|
||||
path="res://.godot/imported/brickwall_corner_right.png-994cbcd61a850f2c145f28ddc25669f6.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/brickwall/brickwall_corner_right.png"
|
||||
dest_files=["res://.godot/imported/brickwall_corner_right.png-994cbcd61a850f2c145f28ddc25669f6.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
|
BIN
sprites/tiles/brickwall/brickwall_up_corner.png
Normal file
After Width: | Height: | Size: 229 B |
34
sprites/tiles/brickwall/brickwall_up_corner.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cqjxex4pot0v8"
|
||||
path="res://.godot/imported/brickwall_up_corner.png-893a87ee9d79fcf09a8ffd423c5ebbea.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/brickwall/brickwall_up_corner.png"
|
||||
dest_files=["res://.godot/imported/brickwall_up_corner.png-893a87ee9d79fcf09a8ffd423c5ebbea.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
|
BIN
sprites/tiles/brickwall/brickwall_up_corner_2.png
Normal file
After Width: | Height: | Size: 233 B |
34
sprites/tiles/brickwall/brickwall_up_corner_2.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ny8xwxuyuu5r"
|
||||
path="res://.godot/imported/brickwall_up_corner_2.png-fa6704227dae348d6a9ed727ff9d4e38.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/brickwall/brickwall_up_corner_2.png"
|
||||
dest_files=["res://.godot/imported/brickwall_up_corner_2.png-fa6704227dae348d6a9ed727ff9d4e38.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
|
BIN
sprites/tiles/brickwall/brickwall_up_u.png
Normal file
After Width: | Height: | Size: 235 B |
34
sprites/tiles/brickwall/brickwall_up_u.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://fl02eqhchnnv"
|
||||
path="res://.godot/imported/brickwall_up_u.png-367401039a1dde8ff3f624adf20b9d1d.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/brickwall/brickwall_up_u.png"
|
||||
dest_files=["res://.godot/imported/brickwall_up_u.png-367401039a1dde8ff3f624adf20b9d1d.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
|
BIN
sprites/tiles/exits/exit1.png
Normal file
After Width: | Height: | Size: 167 B |
34
sprites/tiles/exits/exit1.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bvt6inoj3wv8a"
|
||||
path="res://.godot/imported/exit1.png-cac23c313270b40e7b94501a8cee59bc.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/exits/exit1.png"
|
||||
dest_files=["res://.godot/imported/exit1.png-cac23c313270b40e7b94501a8cee59bc.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
|
BIN
sprites/tiles/exits/exit2.png
Normal file
After Width: | Height: | Size: 172 B |
34
sprites/tiles/exits/exit2.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d1yfug8m3wg7u"
|
||||
path="res://.godot/imported/exit2.png-86411fe5f3ff2fb6b6481e8f69e65896.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/exits/exit2.png"
|
||||
dest_files=["res://.godot/imported/exit2.png-86411fe5f3ff2fb6b6481e8f69e65896.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
|
BIN
sprites/tiles/exits/exit3.png
Normal file
After Width: | Height: | Size: 177 B |
34
sprites/tiles/exits/exit3.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://kywqvr3xn2ys"
|
||||
path="res://.godot/imported/exit3.png-54c0362b22a860c347e6d73403a18668.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/exits/exit3.png"
|
||||
dest_files=["res://.godot/imported/exit3.png-54c0362b22a860c347e6d73403a18668.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
|
BIN
sprites/tiles/floor/floor1.png
Normal file
After Width: | Height: | Size: 103 B |
BIN
sprites/tiles/floor/pebble.png
Normal file
After Width: | Height: | Size: 350 B |
BIN
sprites/tiles/floor/pressure_plate.png
Normal file
After Width: | Height: | Size: 413 B |
BIN
sprites/tiles/floor/spikes/spikes_0001-sheet.png
Normal file
After Width: | Height: | Size: 349 B |
34
sprites/tiles/floor/spikes/spikes_0001-sheet.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://l3v1hs32uxfp"
|
||||
path="res://.godot/imported/spikes_0001-sheet.png-4860893d70ff2c32ae0525613fec8a92.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/spikes/spikes_0001-sheet.png"
|
||||
dest_files=["res://.godot/imported/spikes_0001-sheet.png-4860893d70ff2c32ae0525613fec8a92.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
|
BIN
sprites/tiles/floor/spikes/spikes_0001.png
Normal file
After Width: | Height: | Size: 256 B |
34
sprites/tiles/floor/spikes/spikes_0001.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bn68pj3dryfsr"
|
||||
path="res://.godot/imported/spikes_0001.png-44ece602bcf2857a5b6b3f457c53df98.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/spikes/spikes_0001.png"
|
||||
dest_files=["res://.godot/imported/spikes_0001.png-44ece602bcf2857a5b6b3f457c53df98.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
|
BIN
sprites/tiles/floor/spikes/spikes_0002.png
Normal file
After Width: | Height: | Size: 235 B |
34
sprites/tiles/floor/spikes/spikes_0002.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://ca2htopke8mdk"
|
||||
path="res://.godot/imported/spikes_0002.png-b30594e030d1bba37cf444a07c03eb78.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/spikes/spikes_0002.png"
|
||||
dest_files=["res://.godot/imported/spikes_0002.png-b30594e030d1bba37cf444a07c03eb78.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
|
BIN
sprites/tiles/floor/spikes/spikes_0003.png
Normal file
After Width: | Height: | Size: 204 B |
34
sprites/tiles/floor/spikes/spikes_0003.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://xu6mpqbo14if"
|
||||
path="res://.godot/imported/spikes_0003.png-6dbaf41416292eae410b79a72f9acaa3.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/spikes/spikes_0003.png"
|
||||
dest_files=["res://.godot/imported/spikes_0003.png-6dbaf41416292eae410b79a72f9acaa3.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
|
BIN
sprites/tiles/floor/tiles.png
Normal file
After Width: | Height: | Size: 264 B |
BIN
sprites/tiles/frames/corner_up.png
Normal file
After Width: | Height: | Size: 119 B |
34
sprites/tiles/frames/corner_up.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dxv0oqw7u7cxx"
|
||||
path="res://.godot/imported/corner_up.png-c6204609e97f116d485ac034c4e5f7d0.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/frames/corner_up.png"
|
||||
dest_files=["res://.godot/imported/corner_up.png-c6204609e97f116d485ac034c4e5f7d0.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
|
BIN
sprites/tiles/frames/corner_up1.png
Normal file
After Width: | Height: | Size: 138 B |
34
sprites/tiles/frames/corner_up1.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://8w2kp7uxcfsx"
|
||||
path="res://.godot/imported/corner_up1.png-7b16422b1b82f18e50cb97d44c9c1984.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/frames/corner_up1.png"
|
||||
dest_files=["res://.godot/imported/corner_up1.png-7b16422b1b82f18e50cb97d44c9c1984.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
|
BIN
sprites/tiles/frames/corner_up2.png
Normal file
After Width: | Height: | Size: 123 B |
34
sprites/tiles/frames/corner_up2.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://w4ltjwnpkiw2"
|
||||
path="res://.godot/imported/corner_up2.png-21e8d735b87c60dc8f6f7b0b93e58c28.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/frames/corner_up2.png"
|
||||
dest_files=["res://.godot/imported/corner_up2.png-21e8d735b87c60dc8f6f7b0b93e58c28.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
|
BIN
sprites/tiles/frames/corner_up3.png
Normal file
After Width: | Height: | Size: 122 B |
34
sprites/tiles/frames/corner_up3.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bqivh8vu4m3rs"
|
||||
path="res://.godot/imported/corner_up3.png-464558d2b977a8843e2e3ab6d5b7dac5.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/frames/corner_up3.png"
|
||||
dest_files=["res://.godot/imported/corner_up3.png-464558d2b977a8843e2e3ab6d5b7dac5.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
|
BIN
sprites/tiles/frames/wall_hor.png
Normal file
After Width: | Height: | Size: 117 B |
34
sprites/tiles/frames/wall_hor.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bifdbxxvms0ml"
|
||||
path="res://.godot/imported/wall_hor.png-757f09bf7182d5584fc07f55d2077dd5.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/frames/wall_hor.png"
|
||||
dest_files=["res://.godot/imported/wall_hor.png-757f09bf7182d5584fc07f55d2077dd5.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
|
BIN
sprites/tiles/frames/wall_vert.png
Normal file
After Width: | Height: | Size: 113 B |
34
sprites/tiles/frames/wall_vert.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://c633sp7jogr7q"
|
||||
path="res://.godot/imported/wall_vert.png-9a2ff220445fcbd215855269e9c4c52f.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/frames/wall_vert.png"
|
||||
dest_files=["res://.godot/imported/wall_vert.png-9a2ff220445fcbd215855269e9c4c52f.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
|
BIN
sprites/tiles/frames/wall_vert_left.png
Normal file
After Width: | Height: | Size: 110 B |
34
sprites/tiles/frames/wall_vert_left.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://d0g5o05ae54n3"
|
||||
path="res://.godot/imported/wall_vert_left.png-1527fc00f092c3cadd1c291cb7800821.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/frames/wall_vert_left.png"
|
||||
dest_files=["res://.godot/imported/wall_vert_left.png-1527fc00f092c3cadd1c291cb7800821.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
|
BIN
sprites/tiles/frames/wall_vert_left_corn.png
Normal file
After Width: | Height: | Size: 117 B |
34
sprites/tiles/frames/wall_vert_left_corn.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dlxy3sx1p8anf"
|
||||
path="res://.godot/imported/wall_vert_left_corn.png-84051378f41b0eb0c2841275659e7431.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/frames/wall_vert_left_corn.png"
|
||||
dest_files=["res://.godot/imported/wall_vert_left_corn.png-84051378f41b0eb0c2841275659e7431.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
|
BIN
sprites/tiles/frames/wall_vert_right.png
Normal file
After Width: | Height: | Size: 111 B |
34
sprites/tiles/frames/wall_vert_right.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://dw424ct8xy7xd"
|
||||
path="res://.godot/imported/wall_vert_right.png-7b5f1373e522c91f6a923ca4301211b8.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/frames/wall_vert_right.png"
|
||||
dest_files=["res://.godot/imported/wall_vert_right.png-7b5f1373e522c91f6a923ca4301211b8.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
|
BIN
sprites/tiles/frames/wall_vert_right_corn.png
Normal file
After Width: | Height: | Size: 122 B |
34
sprites/tiles/frames/wall_vert_right_corn.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bd1wykume8n48"
|
||||
path="res://.godot/imported/wall_vert_right_corn.png-c85eb2f22e33e5be137dc5c08de89e03.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/frames/wall_vert_right_corn.png"
|
||||
dest_files=["res://.godot/imported/wall_vert_right_corn.png-c85eb2f22e33e5be137dc5c08de89e03.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
|
BIN
sprites/tiles/frames/wall_vert_u.png
Normal file
After Width: | Height: | Size: 125 B |
34
sprites/tiles/frames/wall_vert_u.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://befvk66pt8lsm"
|
||||
path="res://.godot/imported/wall_vert_u.png-a6923f9f3337c83091af1987b2c9df20.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/tiles/frames/wall_vert_u.png"
|
||||
dest_files=["res://.godot/imported/wall_vert_u.png-a6923f9f3337c83091af1987b2c9df20.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
|
Before Width: | Height: | Size: 245 B |
BIN
sprites_orig/furniture/bed1.png
Normal file
After Width: | Height: | Size: 345 B |
BIN
sprites_orig/furniture/komod.png
Normal file
After Width: | Height: | Size: 193 B |
BIN
sprites_orig/furniture/table1.png
Normal file
After Width: | Height: | Size: 161 B |
BIN
sprites_orig/furniture/table2.png
Normal file
After Width: | Height: | Size: 152 B |
BIN
sprites_orig/furniture/window1.png
Normal file
After Width: | Height: | Size: 266 B |
BIN
sprites_orig/tiles/brickwall/brickwall-door.png
Normal file
After Width: | Height: | Size: 463 B |
BIN
sprites_orig/tiles/brickwall/brickwall-up.png
Normal file
After Width: | Height: | Size: 199 B |
BIN
sprites_orig/tiles/brickwall/brickwall.png
Normal file
After Width: | Height: | Size: 222 B |
BIN
sprites_orig/tiles/brickwall/brickwall_corner_left.png
Normal file
After Width: | Height: | Size: 221 B |
BIN
sprites_orig/tiles/brickwall/brickwall_corner_right.png
Normal file
After Width: | Height: | Size: 228 B |
BIN
sprites_orig/tiles/brickwall/brickwall_up_corner.png
Normal file
After Width: | Height: | Size: 207 B |
BIN
sprites_orig/tiles/brickwall/brickwall_up_corner_2.png
Normal file
After Width: | Height: | Size: 206 B |
BIN
sprites_orig/tiles/brickwall/brickwall_up_u.png
Normal file
After Width: | Height: | Size: 212 B |
BIN
sprites_orig/tiles/floor/floor1.png
Normal file
After Width: | Height: | Size: 106 B |