Merge branch 'develop' of https://gitee.com/xlljc/DungeonShooting into develop
1
.gitignore
vendored
|
@ -20,3 +20,4 @@
|
|||
/DungeonShooting_Godot/DungeonShooting.sln.DotSettings.user
|
||||
/DungeonShooting_Godot/.VSCodeCounter
|
||||
**/*.txt
|
||||
/DungeonShooting_Godot/buffTable
|
|
@ -15,8 +15,74 @@ public static class BuffGenerator
|
|||
{
|
||||
public static bool Generate()
|
||||
{
|
||||
PropFragmentRegister.Init();
|
||||
var outStr = "# 道具逻辑属性表\n\n";
|
||||
|
||||
outStr += GetSplit("Buff 属性片段");
|
||||
outStr += GetTableTitle();
|
||||
foreach (var fragment in PropFragmentRegister.BuffFragmentInfos)
|
||||
{
|
||||
outStr += GetTableLine(fragment.Value);
|
||||
}
|
||||
outStr += "\n\n";
|
||||
|
||||
outStr += GetSplit("主动道具使用条件片段");
|
||||
outStr += GetTableTitle();
|
||||
foreach (var fragment in PropFragmentRegister.ConditionFragmentInfos)
|
||||
{
|
||||
outStr += GetTableLine(fragment.Value);
|
||||
}
|
||||
outStr += "\n\n";
|
||||
|
||||
outStr += GetSplit("主动道具使用效果片段");
|
||||
outStr += GetTableTitle();
|
||||
foreach (var fragment in PropFragmentRegister.EffectFragmentInfos)
|
||||
{
|
||||
outStr += GetTableLine(fragment.Value);
|
||||
}
|
||||
outStr += "\n\n";
|
||||
|
||||
outStr += GetSplit("主动道具充能条件片段");
|
||||
outStr += GetTableTitle();
|
||||
foreach (var fragment in PropFragmentRegister.ChargeFragmentInfos)
|
||||
{
|
||||
outStr += GetTableLine(fragment.Value);
|
||||
}
|
||||
outStr += "\n\n";
|
||||
|
||||
if (!Directory.Exists("buffTable"))
|
||||
{
|
||||
Directory.CreateDirectory("buffTable");
|
||||
}
|
||||
File.WriteAllText("buffTable/BuffTable.md", outStr);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
private static string GetSplit(string title)
|
||||
{
|
||||
return $"---\n### {title}\n";
|
||||
}
|
||||
|
||||
private static string GetTableTitle()
|
||||
{
|
||||
return $"| 属性名称 | 描述 | 参数 |\n" +
|
||||
$"|-|-|-|\n";
|
||||
}
|
||||
|
||||
private static string GetTableLine(PropFragmentInfo fragmentInfo)
|
||||
{
|
||||
var arg = "";
|
||||
for (var i = 0; i < fragmentInfo.ArgInfos.Count; i++)
|
||||
{
|
||||
var argInfo = fragmentInfo.ArgInfos[i];
|
||||
if (i > 0)
|
||||
{
|
||||
arg += "<br/>";
|
||||
}
|
||||
arg += $"参数{argInfo.ArgIndex}: {argInfo.Description}";
|
||||
}
|
||||
|
||||
return $"| {fragmentInfo.Name} | {fragmentInfo.Description} | {arg} |\n";
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -707,7 +707,16 @@ public static class ExcelGenerator
|
|||
var tempStr = str.Substring(1, str.Length - 2);
|
||||
var typeData = ConvertToType(tempStr, depth + 1);
|
||||
var typeStr = typeData.TypeStr + "[]";
|
||||
var typeName = typeData.TypeName + "[]";
|
||||
string typeName;
|
||||
var index = typeData.TypeName.IndexOf(',');
|
||||
if (index < 0)
|
||||
{
|
||||
typeName = typeData.TypeName + "[]";
|
||||
}
|
||||
else
|
||||
{
|
||||
typeName = typeData.TypeName.Substring(0, index) + "[]" + typeData.TypeName.Substring(index);
|
||||
}
|
||||
|
||||
if (typeData.IsRefExcel) //引用过其他表
|
||||
{
|
||||
|
@ -724,12 +733,13 @@ public static class ExcelGenerator
|
|||
{
|
||||
switch (typeName)
|
||||
{
|
||||
case "object": return typeof(JsonElement).FullName;
|
||||
case "boolean": return "bool";
|
||||
case "vector2": return "SerializeVector2";
|
||||
case "vector3": return "SerializeVector3";
|
||||
case "color": return "SerializeColor";
|
||||
case "activityType": return "ActivityType";
|
||||
case "activityQuality": return "ActivityQuality";
|
||||
case "vector2": return typeof(SerializeVector2).FullName;
|
||||
case "vector3": return typeof(SerializeVector3).FullName;
|
||||
case "color": return typeof(SerializeColor).FullName;
|
||||
case "activityType": return typeof(ActivityType).FullName;
|
||||
case "activityQuality": return typeof(ActivityQuality).FullName;
|
||||
}
|
||||
|
||||
return typeName;
|
||||
|
@ -739,24 +749,25 @@ public static class ExcelGenerator
|
|||
{
|
||||
switch (typeName)
|
||||
{
|
||||
case "object":return typeof(JsonElement).AssemblyQualifiedName;
|
||||
case "bool":
|
||||
case "boolean": return typeof(bool).FullName;
|
||||
case "byte": return typeof(byte).FullName;
|
||||
case "sbyte": return typeof(sbyte).FullName;
|
||||
case "short": return typeof(short).FullName;
|
||||
case "ushort": return typeof(ushort).FullName;
|
||||
case "int": return typeof(int).FullName;
|
||||
case "uint": return typeof(uint).FullName;
|
||||
case "long": return typeof(long).FullName;
|
||||
case "ulong": return typeof(ulong).FullName;
|
||||
case "string": return typeof(string).FullName;
|
||||
case "float": return typeof(float).FullName;
|
||||
case "double": return typeof(double).FullName;
|
||||
case "vector2": return "SerializeVector2";
|
||||
case "vector3": return "SerializeVector3";
|
||||
case "color": return "SerializeColor";
|
||||
case "activityType": return "ActivityType";
|
||||
case "activityQuality": return "ActivityQuality";
|
||||
case "boolean": return typeof(bool).AssemblyQualifiedName;
|
||||
case "byte": return typeof(byte).AssemblyQualifiedName;
|
||||
case "sbyte": return typeof(sbyte).AssemblyQualifiedName;
|
||||
case "short": return typeof(short).AssemblyQualifiedName;
|
||||
case "ushort": return typeof(ushort).AssemblyQualifiedName;
|
||||
case "int": return typeof(int).AssemblyQualifiedName;
|
||||
case "uint": return typeof(uint).AssemblyQualifiedName;
|
||||
case "long": return typeof(long).AssemblyQualifiedName;
|
||||
case "ulong": return typeof(ulong).AssemblyQualifiedName;
|
||||
case "string": return typeof(string).AssemblyQualifiedName;
|
||||
case "float": return typeof(float).AssemblyQualifiedName;
|
||||
case "double": return typeof(double).AssemblyQualifiedName;
|
||||
case "vector2": return typeof(SerializeVector2).AssemblyQualifiedName;
|
||||
case "vector3": return typeof(SerializeVector3).AssemblyQualifiedName;
|
||||
case "color": return typeof(SerializeColor).AssemblyQualifiedName;
|
||||
case "activityType": return typeof(ActivityType).AssemblyQualifiedName;
|
||||
case "activityQuality": return typeof(ActivityQuality).AssemblyQualifiedName;
|
||||
}
|
||||
|
||||
return typeName;
|
||||
|
|
|
@ -1 +1 @@
|
|||
6
|
||||
7
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=12 format=3 uid="uid://d2gj0yuup0gdb"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/box/TreasureBox.cs" id="1_wxils"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_l4sas"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_l4sas"]
|
||||
[ext_resource type="Texture2D" uid="uid://dladvmgql1pwe" path="res://resource/sprite/box/TreasureBox0001.png" id="3_eed5t"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_1v1is"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_l4sas")
|
||||
|
|
|
@ -17,7 +17,7 @@ Particles2D = []
|
|||
shape = SubResource("RectangleShape2D_l4vuk")
|
||||
|
||||
[node name="LineSprite" type="Sprite2D" parent="."]
|
||||
modulate = Color(1.5, 1.5, 1.5, 1)
|
||||
modulate = Color(1.6, 1.6, 1.6, 1)
|
||||
position = Vector2(0, 1.19209e-07)
|
||||
texture = ExtResource("2_uqalj")
|
||||
centered = false
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
[sub_resource type="RectangleShape2D" id="RectangleShape2D_l4vuk"]
|
||||
resource_local_to_scene = true
|
||||
|
||||
[node name="Laser0001" type="Area2D" node_paths=PackedStringArray("Particles2D")]
|
||||
[node name="Laser0002" type="Area2D" node_paths=PackedStringArray("Particles2D")]
|
||||
collision_layer = 2
|
||||
collision_mask = 0
|
||||
monitorable = false
|
||||
|
@ -17,7 +17,7 @@ Particles2D = []
|
|||
shape = SubResource("RectangleShape2D_l4vuk")
|
||||
|
||||
[node name="LineSprite" type="Sprite2D" parent="."]
|
||||
modulate = Color(1.5, 1.5, 1.5, 1)
|
||||
modulate = Color(1.6, 1.6, 1.6, 1)
|
||||
position = Vector2(0, 1.19209e-07)
|
||||
texture = ExtResource("2_ga23q")
|
||||
centered = false
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[gd_scene load_steps=7 format=3 uid="uid://bj4kmvt8jg1cf"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/bullet/normal/Bullet.cs" id="1_3d3df"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_mxa72"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_mxa72"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://baoxep7vami72" path="res://resource/spriteFrames/bullet/Bullet0001.tres" id="3_q4a0o"]
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_w5w0i"]
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://bqkj0rn72ppge"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/bullet/normal/Bullet.cs" id="1_hepay"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_0n2yg"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_0n2yg"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://bpeodjqiy3mil" path="res://resource/spriteFrames/bullet/Bullet0002.tres" id="3_ldd0h"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_v77gw"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_0n2yg")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=7 format=3 uid="uid://ee24ocwk8snj"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/bullet/normal/Bullet.cs" id="1_h6lfm"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_bteri"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_bteri"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://bcnhyin0aufl1" path="res://resource/spriteFrames/bullet/Bullet0003.tres" id="3_qvo0u"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_v77gw"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_bteri")
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
[gd_scene load_steps=12 format=3 uid="uid://d0h4xfi1oqf1l"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/bullet/normal/BoomBullet.cs" id="1_1jbgr"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_w1qob"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_w1qob"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://d3vma1qjo478l" path="res://resource/spriteFrames/bullet/Bullet0004.tres" id="3_bttus"]
|
||||
[ext_resource type="Texture2D" uid="uid://h7hkgbwj1li" path="res://resource/sprite/common/Smoke.png" id="3_ofn8c"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_v77gw"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_w1qob")
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
[gd_scene load_steps=12 format=3 uid="uid://cjgnw37tqiqh7"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/bullet/normal/BrushBullet.cs" id="1_13wdl"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_v0al6"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_v0al6"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://jj8oh76pi53j" path="res://resource/spriteFrames/bullet/Bullet0005.tres" id="3_mmvqn"]
|
||||
[ext_resource type="Texture2D" uid="uid://h7hkgbwj1li" path="res://resource/sprite/common/Smoke.png" id="4_esjg6"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_v77gw"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_v0al6")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://c1fx7c1jwil26"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/bullet/normal/TrailBullet.cs" id="1_b8pov"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_iolc6"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_iolc6"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://dx4t45bq8ehhq" path="res://resource/spriteFrames/bullet/Bullet0006.tres" id="3_v2y7a"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_w5w0i"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_iolc6")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://cybey66bhe4ro"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/bullet/normal/Bullet.cs" id="1_h4tn7"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_fgeyt"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_fgeyt"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://bkwoy70bnm74k" path="res://resource/spriteFrames/bullet/Bullet0007.tres" id="3_c1ec6"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_v77gw"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_fgeyt")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://d3dcmte122p6t"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/bullet/normal/ColorBullet.cs" id="1_qqm5l"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_t3qw6"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_t3qw6"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://ubdvau75andr" path="res://resource/spriteFrames/bullet/Bullet0008.tres" id="3_aoni0"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_v77gw"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_t3qw6")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://c4puxmnan51ds"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/bullet/normal/Arrow.cs" id="1_eots7"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_tscmb"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_tscmb"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://cyg3uvbakan08" path="res://resource/spriteFrames/bullet/Bullet0009.tres" id="3_l58ff"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_v77gw"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_tscmb")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=24 format=3 uid="uid://bayga6rue4ldm"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://c7i2q4mx5qp2h" path="res://prefab/currency/GoldTemplate.tscn" id="1_7anjj"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_p7xui"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_p7xui"]
|
||||
[ext_resource type="Texture2D" uid="uid://benn0iaclw8dk" path="res://resource/sprite/currency/Gold_1.png" id="3_lhsna"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_2tpx1"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_p7xui")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=24 format=3 uid="uid://cpfeog5xk7frv"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://c7i2q4mx5qp2h" path="res://prefab/currency/GoldTemplate.tscn" id="1_q6rqs"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_fwuy2"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_fwuy2"]
|
||||
[ext_resource type="Texture2D" uid="uid://7dy6itvggpwy" path="res://resource/sprite/currency/Gold_10.png" id="3_x42g4"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_2tpx1"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_fwuy2")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=24 format=3 uid="uid://dqeph6v1y3ycm"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://c7i2q4mx5qp2h" path="res://prefab/currency/GoldTemplate.tscn" id="1_t3bsk"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_r5r64"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_r5r64"]
|
||||
[ext_resource type="Texture2D" uid="uid://bfpcqj2x8t2os" path="res://resource/sprite/currency/Gold_5.png" id="3_rf7nc"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_2tpx1"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_r5r64")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=6 format=3 uid="uid://c7i2q4mx5qp2h"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/currency/Gold.cs" id="1_p60kl"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_5nps8"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_5nps8"]
|
||||
[ext_resource type="Texture2D" uid="uid://cthwlbqve6i1l" path="res://resource/sprite/currency/Gold_shadow.png" id="3_6xm1s"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_qdjhs"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_5nps8")
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
[gd_scene load_steps=31 format=3 uid="uid://pr88a1phtxgb"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/effects/enemy/EnemyDead0001.cs" id="1_1re5v"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_s7bee"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_s7bee"]
|
||||
[ext_resource type="Texture2D" uid="uid://cn64eauvwx1uj" path="res://resource/sprite/role/enemy0001/enemy0001_Debris.png" id="3_uinig"]
|
||||
[ext_resource type="Texture2D" uid="uid://h7hkgbwj1li" path="res://resource/sprite/common/Smoke.png" id="4_t55wd"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_s1mj2"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_s7bee")
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
[gd_scene load_steps=19 format=3 uid="uid://nfx3lhkdhv6a"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/effects/enemy/EnemyDead0002.cs" id="1_ghu6a"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_q163q"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_q163q"]
|
||||
[ext_resource type="Texture2D" uid="uid://x3tjqgdgp43n" path="res://resource/sprite/role/enemy0002/Enemy0002_dead.png" id="3_l0kbp"]
|
||||
[ext_resource type="Texture2D" uid="uid://h7hkgbwj1li" path="res://resource/sprite/common/Smoke.png" id="4_2wygu"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_s1mj2"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_q163q")
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://dvvvi26mgoel"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_cilvq"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_1c01w"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_1c01w"]
|
||||
[ext_resource type="Texture2D" uid="uid://b74yx6c2jifyd" path="res://resource/sprite/item/hall_b/item-31.png" id="3_mua0g"]
|
||||
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_1c01w")
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
[gd_scene load_steps=7 format=3 uid="uid://c5e11paqgc8y3"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_qi3y4"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_u3oiv"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_u3oiv"]
|
||||
[ext_resource type="Texture2D" uid="uid://dl15qkga1kc82" path="res://resource/sprite/item/hall_b/item-12.png" id="3_6b42f"]
|
||||
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_u3oiv")
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://cdcpa4l71tkja"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_nuuf6"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_fbidd"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_fbidd"]
|
||||
[ext_resource type="Texture2D" uid="uid://dr2d6toqxxifv" path="res://resource/sprite/item/hall_b/item-32.png" id="3_4miy3"]
|
||||
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_fbidd")
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://cjvmk415l1m7w"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_1qbhq"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_lp5ce"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_lp5ce"]
|
||||
[ext_resource type="Texture2D" uid="uid://belr22s50exy8" path="res://resource/sprite/item/hall_b/item-18.png" id="3_px2by"]
|
||||
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_lp5ce")
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://bxcsdgbhapf15"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_rrftl"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_fshwj"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_fshwj"]
|
||||
[ext_resource type="Texture2D" uid="uid://bijiqseh8y667" path="res://resource/sprite/item/hall_b/item-01.png" id="3_3isqs"]
|
||||
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_fshwj")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://c7agqlb1d1glq"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_bnso1"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_7ta72"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_7ta72"]
|
||||
[ext_resource type="Texture2D" uid="uid://dim1k57cc7w53" path="res://resource/sprite/item/hall_c/item _06.png" id="3_xwbcy"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_7ta72")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://du3l8ekq5vcqr"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_33s8u"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_3qjg4"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_3qjg4"]
|
||||
[ext_resource type="Texture2D" uid="uid://c4in5w5wofmgv" path="res://resource/sprite/item/hall_a/Slice_48.png" id="3_oer44"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_3qjg4")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://0amttjqbukwo"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_ncbpe"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_f8wfl"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_f8wfl"]
|
||||
[ext_resource type="Texture2D" uid="uid://dlhp210kvxqsw" path="res://resource/sprite/item/hall_c/item _08.png" id="3_5siud"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_f8wfl")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=9 format=3 uid="uid://cemj288a6xd8m"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_100f5"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_xs4fm"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_xs4fm"]
|
||||
[ext_resource type="Texture2D" uid="uid://dduv45hy81atn" path="res://resource/sprite/item/hall_a/Slice_33.png" id="3_p8ykj"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_xs4fm")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://dvle8ryfwpncx"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_1vaym"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_8sjd2"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_8sjd2"]
|
||||
[ext_resource type="Texture2D" uid="uid://ucsiiyagcsjl" path="res://resource/sprite/item/hall_a/Slice_54.png" id="3_rasn0"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_8sjd2")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://ujdk13nr8pf0"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_8227x"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_4wa6q"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_4wa6q"]
|
||||
[ext_resource type="Texture2D" uid="uid://bld54p7gwlrd" path="res://resource/sprite/item/hall_a/Slice_28.png" id="3_yhv2x"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_4wa6q")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://cj43h3b0irhq8"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_8skba"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_lxtjp"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_lxtjp"]
|
||||
[ext_resource type="Texture2D" uid="uid://rrxkyras3kdw" path="res://resource/sprite/item/hall_c/item _12.png" id="3_sslpn"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_lxtjp")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://je626022bg3t"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_awjys"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_3lobq"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_3lobq"]
|
||||
[ext_resource type="Texture2D" uid="uid://cnpxb0dsnfqn1" path="res://resource/sprite/item/hall_c/item _13.png" id="3_h48fx"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_3lobq")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://dvmflitcbpffa"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_r3jfj"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_8ndm7"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_8ndm7"]
|
||||
[ext_resource type="Texture2D" uid="uid://i1qpk06s6a4q" path="res://resource/sprite/item/hall_c/item _14.png" id="3_ttnc5"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_8ndm7")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://c6mr1q78r7fq"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_4enip"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_hr30a"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_hr30a"]
|
||||
[ext_resource type="Texture2D" uid="uid://daae1qo6hccxb" path="res://resource/sprite/item/hall_a/Slice_46.png" id="3_jgc28"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_hr30a")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://b4r3hpil3we2s"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_go51e"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_ot0d2"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_ot0d2"]
|
||||
[ext_resource type="Texture2D" uid="uid://6mkb76o7ja47" path="res://resource/sprite/item/hall_a/Slice_03.png" id="3_bvm05"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_ot0d2")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://dh4cenmpdj520"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_78dif"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_pybet"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_pybet"]
|
||||
[ext_resource type="Texture2D" uid="uid://cel2hojxm4fgj" path="res://resource/sprite/item/hall_c/item _17.png" id="3_jojl2"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_pybet")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://bgndxlp47w88s"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_7wxee"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_a30jc"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_a30jc"]
|
||||
[ext_resource type="Texture2D" uid="uid://drxs2tol6j4yu" path="res://resource/sprite/item/hall_a/Slice_02.png" id="3_iuab1"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_a30jc")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://dpvwcpqvm0e5"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_j36vv"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_tlcne"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_tlcne"]
|
||||
[ext_resource type="Texture2D" uid="uid://dutmdqi3ygnt1" path="res://resource/sprite/item/hall_a/Slice_38.png" id="3_gwklf"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_tlcne")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://b2t1chmutscrc"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_a2uqr"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_pbqh6"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_pbqh6"]
|
||||
[ext_resource type="Texture2D" uid="uid://qbc428calfue" path="res://resource/sprite/item/hall_a/Slice_42.png" id="3_mkcwv"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_pbqh6")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://v32g2u0mm0gm"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_25f5i"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_0claj"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_0claj"]
|
||||
[ext_resource type="Texture2D" uid="uid://bt3rvgedbniwq" path="res://resource/sprite/item/hall_a/Slice_22.png" id="3_os210"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_0claj")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://nhnikrjoc800"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_57gqj"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_a56xb"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_a56xb"]
|
||||
[ext_resource type="Texture2D" uid="uid://d3s00dfmrnt4" path="res://resource/sprite/item/hall_a/Slice_34.png" id="3_yv7yv"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_a56xb")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://bwvw5mk32hia4"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_guouv"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_olbah"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_olbah"]
|
||||
[ext_resource type="Texture2D" uid="uid://bxgpi41yec4v0" path="res://resource/sprite/item/hall_a/Slice_40.png" id="3_573p0"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_olbah")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://dl72vryy7pu2s"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_ovsfp"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_424in"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_424in"]
|
||||
[ext_resource type="Texture2D" uid="uid://dsod7xnf66vfr" path="res://resource/sprite/item/hall_a/Slice_31.png" id="3_6jgg6"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_424in")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://k5ooobibugrh"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_4pwnq"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_ekpbo"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_ekpbo"]
|
||||
[ext_resource type="Texture2D" uid="uid://byjgmf7gf8yo4" path="res://resource/sprite/item/hall_c/item _55.png" id="3_n7ajr"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_ekpbo")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://fxxcimm100wh"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_0hlhe"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_43i86"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_43i86"]
|
||||
[ext_resource type="Texture2D" uid="uid://bigva5som5fy5" path="res://resource/sprite/item/hall_a/Slice_14.png" id="3_qrjxc"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_43i86")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://bhcqel0ylhti3"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_g24mc"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_05yhp"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_05yhp"]
|
||||
[ext_resource type="Texture2D" uid="uid://c45ffwqrk708i" path="res://resource/sprite/item/hall_c/item _31.png" id="3_7e6ju"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_05yhp")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://bb8eqxcwl7qf6"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_j2ns6"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_ur1o2"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_ur1o2"]
|
||||
[ext_resource type="Texture2D" uid="uid://d3uyv5ubtig1n" path="res://resource/sprite/item/hall_c/item _36.png" id="3_e7nf3"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_ur1o2")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://gnsdqotyf0e8"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_palmb"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_d2qpb"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_d2qpb"]
|
||||
[ext_resource type="Texture2D" uid="uid://cbuxe012k3pfu" path="res://resource/sprite/item/hall_c/item _54.png" id="3_b15p3"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_d2qpb")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://bkxabig8chkv6"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_ebb3f"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_5sjig"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_5sjig"]
|
||||
[ext_resource type="Texture2D" uid="uid://u3ri36urv8xn" path="res://resource/sprite/item/hall_c/item _56.png" id="3_bkxin"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_5sjig")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://bhwiakjbpjbsb"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/item/ObstacleObject.cs" id="1_fsyqi"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_ot8r8"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_ot8r8"]
|
||||
[ext_resource type="Texture2D" uid="uid://ce4byqcoo2n05" path="res://resource/sprite/item/hall_c/item _57.png" id="3_2h0tv"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wh4b7"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_ot8r8")
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://yhewdkpru0up"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/room/RoomDoor.cs" id="1_4c6sw"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_lwx51"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_lwx51"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://3ps6h2f54qa5" path="res://resource/spriteFrames/other/RoomDoor_E_Up.tres" id="3_pjvd8"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://b34tddsmqnj8s" path="res://resource/spriteFrames/other/RoomDoor_E_Down.tres" id="4_ln8k4"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_yvwpk"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_lwx51")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=7 format=3 uid="uid://cbtj6bsaqqomt"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/room/RoomDoor.cs" id="1_220be"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_h5ru6"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_h5ru6"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://xs72aopsgpg6" path="res://resource/spriteFrames/other/RoomDoor_N.tres" id="3_apluc"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_yvwpk"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_h5ru6")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=7 format=3 uid="uid://bvfnnqo71knb"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/room/RoomDoor.cs" id="1_f3qbq"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_6vvcd"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_6vvcd"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://xs72aopsgpg6" path="res://resource/spriteFrames/other/RoomDoor_N.tres" id="3_vbbxp"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_yvwpk"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_6vvcd")
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://wmedlesabvr3"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/room/RoomDoor.cs" id="1_agux2"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_wx2w3"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_wx2w3"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://3ps6h2f54qa5" path="res://resource/spriteFrames/other/RoomDoor_E_Up.tres" id="3_jquy0"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://b34tddsmqnj8s" path="res://resource/spriteFrames/other/RoomDoor_E_Down.tres" id="4_6gcqk"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_yvwpk"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_wx2w3")
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[gd_scene load_steps=6 format=3 uid="uid://drjkrimgii1u0"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/prop/ActiveProp.cs" id="1_n541c"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_75di4"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_75di4"]
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_mrkt4"]
|
||||
resource_local_to_scene = true
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[gd_scene load_steps=6 format=3 uid="uid://dfpic4nubu7cf"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/prop/BuffProp.cs" id="1_nlcp6"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_imicp"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_imicp"]
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_mrkt4"]
|
||||
resource_local_to_scene = true
|
||||
|
|
|
@ -2,13 +2,14 @@
|
|||
|
||||
[ext_resource type="PackedScene" uid="uid://dbrig6dq441wo" path="res://prefab/role/template/EnemyTemplate.tscn" id="1_2vqwe"]
|
||||
[ext_resource type="Script" path="res://src/game/activity/role/enemy/Enemy.cs" id="2_0pcq3"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="3_x8agd"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="3_x8agd"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://cnctpyrn02rhd" path="res://resource/spriteFrames/role/Enemy0001.tres" id="4_qv8w5"]
|
||||
[ext_resource type="Animation" uid="uid://b4mgiysicdk2b" path="res://resource/animation/enemy/Enemy_reset.res" id="5_ffnft"]
|
||||
[ext_resource type="Animation" uid="uid://gvkkxspcdwrp" path="res://resource/animation/enemy/Enemy_astonished.res" id="5_jyt15"]
|
||||
[ext_resource type="Animation" uid="uid://16rxpnsgj5tl" path="res://resource/animation/enemy/Enemy_notify.res" id="6_x8gmo"]
|
||||
[ext_resource type="Animation" uid="uid://cmje7jsgrhgmx" path="res://resource/animation/enemy/Enemy_query.res" id="7_e37p2"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_3nkur"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("3_x8agd")
|
||||
|
|
|
@ -2,13 +2,14 @@
|
|||
|
||||
[ext_resource type="PackedScene" uid="uid://dbrig6dq441wo" path="res://prefab/role/template/EnemyTemplate.tscn" id="1_fanet"]
|
||||
[ext_resource type="Script" path="res://src/game/activity/role/enemy/NoWeaponEnemy.cs" id="2_3an4s"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_yunbp"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_yunbp"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://ctpkpxgcwb583" path="res://resource/spriteFrames/role/Enemy0002.tres" id="3_hbsqi"]
|
||||
[ext_resource type="Animation" uid="uid://gvkkxspcdwrp" path="res://resource/animation/enemy/Enemy_astonished.res" id="5_p7gwr"]
|
||||
[ext_resource type="Animation" uid="uid://b4mgiysicdk2b" path="res://resource/animation/enemy/Enemy_reset.res" id="6_pt7v0"]
|
||||
[ext_resource type="Animation" uid="uid://cmje7jsgrhgmx" path="res://resource/animation/enemy/Enemy_query.res" id="7_h4cls"]
|
||||
[ext_resource type="Animation" uid="uid://16rxpnsgj5tl" path="res://resource/animation/enemy/Enemy_notify.res" id="8_0688j"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_y5nia"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_yunbp")
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[ext_resource type="PackedScene" uid="uid://cyrcv2jdgr8cf" path="res://prefab/role/template/RoleTemplate.tscn" id="1_10c2n"]
|
||||
[ext_resource type="Script" path="res://src/game/activity/role/player/Player.cs" id="2_6xwnt"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="3_rk4gg"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="3_rk4gg"]
|
||||
[ext_resource type="Texture2D" uid="uid://dn58ax3t6rf4x" path="res://resource/sprite/role/common/Role_shadow1.png" id="3_vx7tr"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://n11thtali6es" path="res://resource/spriteFrames/role/Role0001.tres" id="4_galcc"]
|
||||
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
[gd_scene load_steps=5 format=3 uid="uid://dbrig6dq441wo"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://cyrcv2jdgr8cf" path="res://prefab/role/template/RoleTemplate.tscn" id="1_5po38"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="3_x8agd"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="3_x8agd"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_k8mt5"]
|
||||
resource_local_to_scene = true
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[gd_scene load_steps=9 format=3 uid="uid://cyrcv2jdgr8cf"]
|
||||
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="1_xk5yk"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="1_xk5yk"]
|
||||
[ext_resource type="Script" path="res://src/game/activity/role/MountRotation.cs" id="2_5ddpw"]
|
||||
[ext_resource type="Script" path="res://src/framework/activity/hurt/HurtArea.cs" id="2_8jnvr"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://c8h5svp76h3kw" path="res://resource/spriteFrames/role/Role_tip.tres" id="3_bo78w"]
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=7 format=3 uid="uid://bj4yr6ru8nhwr"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/common/AutoFreezeObject.cs" id="1_2g70c"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_tdny6"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_tdny6"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://b8gksxl7auquc" path="res://resource/spriteFrames/shell/Shell0001.tres" id="3_ujn5y"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_px12l"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_tdny6")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=7 format=3 uid="uid://cdhinm8rnppxt"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/common/AutoFreezeObject.cs" id="1_qi64y"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_s28nu"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_s28nu"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://cj8psdl2pova6" path="res://resource/spriteFrames/shell/Shell0002.tres" id="3_r560h"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_px12l"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_s28nu")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=7 format=3 uid="uid://ba5sxxjaappbj"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/common/AutoFreezeObject.cs" id="1_5hfb2"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_586dn"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_586dn"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://kc1jwvwdg660" path="res://resource/spriteFrames/shell/Shell0003.tres" id="3_j2kre"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_px12l"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_586dn")
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=7 format=3 uid="uid://ycr5mjr25302"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/common/AutoFreezeObject.cs" id="1_ridlp"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_guwkk"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_guwkk"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://b8b0ye3iv1vwp" path="res://resource/spriteFrames/shell/Shell0004.tres" id="3_1s5f3"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_px12l"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_guwkk")
|
||||
|
|
|
@ -2,16 +2,17 @@
|
|||
|
||||
[ext_resource type="Script" path="res://src/game/ui/encyclopedia/EncyclopediaPanel.cs" id="1_hd86y"]
|
||||
[ext_resource type="Texture2D" uid="uid://c0st2iiql8igg" path="res://resource/sprite/ui/encyclopedia/TitleBg.png" id="3_gdtik"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="3_o1xl7"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="3_o1xl7"]
|
||||
[ext_resource type="Texture2D" uid="uid://dahib4qcevboo" path="res://resource/sprite/ui/encyclopedia/Panel2.png" id="4_21546"]
|
||||
[ext_resource type="Texture2D" uid="uid://jb73i5q1dv2a" path="res://resource/sprite/ui/encyclopedia/Tab.png" id="4_nm64b"]
|
||||
[ext_resource type="Texture2D" uid="uid://brevrlfdtllmk" path="res://resource/sprite/ui/encyclopedia/Select.png" id="5_f0anf"]
|
||||
[ext_resource type="Texture2D" uid="uid://cu5y32wfai4pn" path="res://resource/sprite/ui/encyclopedia/Item.png" id="5_niceh"]
|
||||
[ext_resource type="Texture2D" uid="uid://conjg6fw6670x" path="res://resource/sprite/ui/encyclopedia/Panel.png" id="7_hfdat"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Outline.gdshader" id="9_mmpq6"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Outline.gdshader" id="9_mmpq6"]
|
||||
[ext_resource type="Texture2D" uid="uid://cuas0bdjlpmwb" path="res://resource/sprite/ui/encyclopedia/Close.png" id="10_jgsfw"]
|
||||
[ext_resource type="Texture2D" uid="uid://7x5b5ed7hk7w" path="res://resource/sprite/ui/encyclopedia/CloseSelect.png" id="11_247gy"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_gm0bl"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("3_o1xl7")
|
||||
|
|
|
@ -5,12 +5,13 @@
|
|||
[ext_resource type="Material" uid="uid://cces3bhds7jyi" path="res://resource/material/Blend.tres" id="2_xb40b"]
|
||||
[ext_resource type="Texture2D" uid="uid://c5778ntk2rdon" path="res://resource/sprite/ui/commonIcon/Delete.png" id="3_7xihk"]
|
||||
[ext_resource type="Texture2D" uid="uid://dligpyhp72sg7" path="res://resource/sprite/ui/commonIcon/Right.png" id="3_v5clf"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="4_7uegb"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="4_7uegb"]
|
||||
[ext_resource type="Script" path="res://src/game/ui/mapEditorCreateMark/attribute/NumberAttribute.cs" id="6_1ym7l"]
|
||||
[ext_resource type="Script" path="res://src/game/ui/mapEditorCreateMark/attribute/ObjectAttribute.cs" id="7_516p2"]
|
||||
[ext_resource type="Script" path="res://src/game/ui/mapEditorCreateMark/attribute/OptionAttribute.cs" id="7_o1tg2"]
|
||||
[ext_resource type="Texture2D" uid="uid://dggb6p4sdmfry" path="res://resource/sprite/ui/commonIcon/Edit.png" id="7_yeuy4"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_ywcv8"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("4_7uegb")
|
||||
|
|
|
@ -6,9 +6,10 @@
|
|||
[ext_resource type="Texture2D" uid="uid://c5778ntk2rdon" path="res://resource/sprite/ui/commonIcon/Delete.png" id="4_urq7y"]
|
||||
[ext_resource type="Texture2D" uid="uid://d4gduco55dqpk" path="res://resource/sprite/ui/commonIcon/Down.png" id="5_x5dpw"]
|
||||
[ext_resource type="Texture2D" uid="uid://bn47bmilcw4x0" path="res://resource/sprite/ui/commonIcon/Select2.png" id="6_jpt3y"]
|
||||
[ext_resource type="Texture2D" uid="uid://dqvg18aacx6db" path="res://resource/sprite/ui/commonIcon/Visible.png" id="6_qiemx"]
|
||||
[ext_resource type="Texture2D" uid="uid://cpjm2q4000an2" path="res://resource/sprite/ui/commonIcon/Visible.png" id="6_qiemx"]
|
||||
[ext_resource type="Texture2D" uid="uid://btetxb0hqoifk" path="res://resource/sprite/ui/commonIcon/MarkCell_placeholder.png" id="8_p8o70"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="9_vr0bo"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="9_vr0bo"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_xxv8l"]
|
||||
resource_local_to_scene = true
|
||||
|
|
|
@ -3,7 +3,8 @@
|
|||
[ext_resource type="Script" path="res://src/game/ui/mapEditorSelectObject/MapEditorSelectObjectPanel.cs" id="1_hdfkd"]
|
||||
[ext_resource type="Texture2D" uid="uid://bn47bmilcw4x0" path="res://resource/sprite/ui/commonIcon/Select2.png" id="3_4nhjm"]
|
||||
[ext_resource type="Texture2D" uid="uid://blfvsup876agh" path="res://resource/sprite/ui/commonIcon/Search.png" id="3_laasd"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="4_uomdx"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="4_uomdx"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_8bgig"]
|
||||
resource_local_to_scene = true
|
||||
|
|
|
@ -6,11 +6,12 @@
|
|||
[ext_resource type="Script" path="res://src/game/ui/mapEditorTools/DoorDragArea.cs" id="3_3w0w6"]
|
||||
[ext_resource type="Script" path="res://src/game/ui/mapEditorTools/DoorDragButton.cs" id="3_45muq"]
|
||||
[ext_resource type="Texture2D" uid="uid://4wupcp53rrpi" path="res://resource/sprite/ui/mapEditorTools/DoorDragButton.png" id="3_trbb5"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="6_krtnu"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="6_krtnu"]
|
||||
[ext_resource type="Texture2D" uid="uid://dnty1a2tcawos" path="res://resource/sprite/ui/commonIcon/Mark.png" id="6_n7h3g"]
|
||||
[ext_resource type="Script" path="res://src/game/ui/mapEditorTools/MarkTool.cs" id="7_ekxcj"]
|
||||
[ext_resource type="Texture2D" uid="uid://cuntr7hec044f" path="res://resource/sprite/ui/commonIcon/Select.png" id="7_mqmd6"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wxp5t"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("6_krtnu")
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
[ext_resource type="Texture2D" uid="uid://0swkya4hn82c" path="res://resource/sprite/ui/roomUI/Panel.png" id="10_q3fs8"]
|
||||
[ext_resource type="Texture2D" uid="uid://504f1r0mi33n" path="res://resource/sprite/weapon/weapon0005/Weapon0005.png" id="11_lsai4"]
|
||||
[ext_resource type="Texture2D" uid="uid://bsu7re1lxnr72" path="res://resource/sprite/ui/roomUI/Cooldown.png" id="11_p0smc"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="12_fgyob"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="12_fgyob"]
|
||||
[ext_resource type="Texture2D" uid="uid://dwysndc5ffski" path="res://resource/sprite/ui/roomUI/ChargeProgressBar.png" id="13_6w7qi"]
|
||||
[ext_resource type="Texture2D" uid="uid://ck0w7at3oat5" path="res://resource/sprite/ui/roomUI/ChargeProgress.png" id="13_vuglj"]
|
||||
[ext_resource type="PackedScene" uid="uid://bmj3p25gwpqpn" path="res://prefab/ui/RoomMap.tscn" id="16_rp3sg"]
|
||||
|
|
|
@ -3,9 +3,10 @@
|
|||
[ext_resource type="Script" path="res://src/game/ui/weaponRoulette/WeaponRoulettePanel.cs" id="1_1uvbk"]
|
||||
[ext_resource type="Texture2D" uid="uid://e6krxgte01j3" path="res://resource/sprite/ui/roulette/RouletteBg.png" id="2_k6gjh"]
|
||||
[ext_resource type="Script" path="res://src/game/ui/weaponRoulette/WeaponSlot.cs" id="3_8v011"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Outline.gdshader" id="4_p348k"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Outline.gdshader" id="4_p348k"]
|
||||
[ext_resource type="Texture2D" uid="uid://dmm8jw06bhffh" path="res://resource/sprite/ui/commonIcon/Lock.png" id="6_7mog3"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_i1wmw"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("4_p348k")
|
||||
|
|
|
@ -2,9 +2,10 @@
|
|||
|
||||
[ext_resource type="PackedScene" uid="uid://cxltmhhp4rbyk" path="res://prefab/weapon/WeaponTemplate.tscn" id="1_ykl0r"]
|
||||
[ext_resource type="Script" path="res://src/game/activity/weapon/gun/Gun.cs" id="2_t56pk"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="3_x1q03"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="3_x1q03"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://5m0qs7m4er5u" path="res://resource/spriteFrames/weapon/Weapon0001.tres" id="4_d5c81"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_5bfqf"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("3_x1q03")
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[ext_resource type="Script" path="res://src/game/activity/weapon/gun/Gun.cs" id="1_hgtyo"]
|
||||
[ext_resource type="PackedScene" uid="uid://cxltmhhp4rbyk" path="res://prefab/weapon/WeaponTemplate.tscn" id="1_r50xc"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_8nvny"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_8nvny"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://domhmo4flmlt0" path="res://resource/spriteFrames/weapon/Weapon0002.tres" id="3_4h3je"]
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_bywvu"]
|
||||
|
|
|
@ -2,9 +2,10 @@
|
|||
|
||||
[ext_resource type="Script" path="res://src/game/activity/weapon/gun/Gun.cs" id="1_aeolk"]
|
||||
[ext_resource type="PackedScene" uid="uid://cxltmhhp4rbyk" path="res://prefab/weapon/WeaponTemplate.tscn" id="1_c17wt"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_4yjnk"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_4yjnk"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://c7dt1uwdybn5" path="res://resource/spriteFrames/weapon/Weapon0003.tres" id="3_upkjt"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_c6pgc"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_4yjnk")
|
||||
|
|
|
@ -2,9 +2,10 @@
|
|||
|
||||
[ext_resource type="PackedScene" uid="uid://cxltmhhp4rbyk" path="res://prefab/weapon/WeaponTemplate.tscn" id="1_kg172"]
|
||||
[ext_resource type="Script" path="res://src/game/activity/weapon/knife/Knife.cs" id="2_v1wer"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="3_63s5g"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="3_63s5g"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://k2tktysa7j86" path="res://resource/spriteFrames/weapon/Weapon0004.tres" id="4_uymcs"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_o5ytq"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("3_63s5g")
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://bwhi5e52wiiay"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/weapon/gun/Gun.cs" id="1_3lu3r"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="1_466gw"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="1_466gw"]
|
||||
[ext_resource type="PackedScene" uid="uid://cxltmhhp4rbyk" path="res://prefab/weapon/WeaponTemplate.tscn" id="1_lyhyf"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://djdvlmqsn8bie" path="res://resource/spriteFrames/weapon/Weapon0005.tres" id="2_m3plc"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_uftuv"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("1_466gw")
|
||||
|
|
|
@ -2,9 +2,10 @@
|
|||
|
||||
[ext_resource type="Script" path="res://src/game/activity/weapon/gun/Gun.cs" id="1_5nx8j"]
|
||||
[ext_resource type="PackedScene" uid="uid://cxltmhhp4rbyk" path="res://prefab/weapon/WeaponTemplate.tscn" id="1_kx4jd"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="1_rp1bw"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="1_rp1bw"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://dx1mjbx4acs3q" path="res://resource/spriteFrames/weapon/Weapon0006.tres" id="2_j3sji"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_m6bme"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("1_rp1bw")
|
||||
|
|
|
@ -2,9 +2,10 @@
|
|||
|
||||
[ext_resource type="PackedScene" uid="uid://cxltmhhp4rbyk" path="res://prefab/weapon/WeaponTemplate.tscn" id="1_5xnlm"]
|
||||
[ext_resource type="Script" path="res://src/game/activity/weapon/gun/Gun.cs" id="1_exwbu"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_7rywx"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_7rywx"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://xxyokrbt10xm" path="res://resource/spriteFrames/weapon/Weapon0007.tres" id="3_ms2gs"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_sy2aq"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_7rywx")
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
[gd_scene load_steps=11 format=3 uid="uid://yt10i80hs3gt"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/weapon/gun/Gun.cs" id="1_l63x2"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="1_mhoa7"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="1_mhoa7"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://b2wpy40adyjs6" path="res://resource/spriteFrames/weapon/Weapon0008.tres" id="2_s0xbw"]
|
||||
[ext_resource type="Animation" uid="uid://v3dltmdstqad" path="res://resource/animation/weapon/Weapon_floodlight.res" id="4_p833u"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_cbiyh"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("1_mhoa7")
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
[gd_scene load_steps=11 format=3 uid="uid://2lb2h8qunqyu"]
|
||||
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="1_6fbtx"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="1_6fbtx"]
|
||||
[ext_resource type="Script" path="res://src/game/activity/weapon/gun/Gun.cs" id="1_eprgt"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://c0xwj3kpk02ua" path="res://resource/spriteFrames/weapon/Weapon0009.tres" id="2_4kxpd"]
|
||||
[ext_resource type="Animation" uid="uid://v3dltmdstqad" path="res://resource/animation/weapon/Weapon_floodlight.res" id="4_o2wqt"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_cbiyh"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("1_6fbtx")
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
[gd_scene load_steps=11 format=3 uid="uid://dhnrfqcojc367"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/weapon/gun/Gun.cs" id="1_bw5v7"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="2_pht5a"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="2_pht5a"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://cd7fhaqk587o2" path="res://resource/spriteFrames/weapon/Weapon0010.tres" id="3_nj0c6"]
|
||||
[ext_resource type="Animation" uid="uid://v3dltmdstqad" path="res://resource/animation/weapon/Weapon_floodlight.res" id="4_2cd01"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_cbiyh"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("2_pht5a")
|
||||
|
|
|
@ -2,9 +2,10 @@
|
|||
|
||||
[ext_resource type="PackedScene" uid="uid://cxltmhhp4rbyk" path="res://prefab/weapon/WeaponTemplate.tscn" id="1_fgcwf"]
|
||||
[ext_resource type="Script" path="res://src/game/activity/weapon/gun/Gun.cs" id="2_m84k4"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="3_4rq0j"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="3_4rq0j"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://xvfg1a0xj7ng" path="res://resource/spriteFrames/weapon/Weapon0011.tres" id="4_bnkqc"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_m6bme"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("3_4rq0j")
|
||||
|
|
|
@ -2,9 +2,10 @@
|
|||
|
||||
[ext_resource type="PackedScene" uid="uid://cxltmhhp4rbyk" path="res://prefab/weapon/WeaponTemplate.tscn" id="1_f1h8o"]
|
||||
[ext_resource type="Script" path="res://src/game/activity/weapon/gun/Gun.cs" id="2_bpgfu"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="3_0l3ip"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="3_0l3ip"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://cawsi08vaqfrn" path="res://resource/spriteFrames/weapon/Weapon0013.tres" id="4_w7ibl"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_sy2aq"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("3_0l3ip")
|
||||
|
|
|
@ -2,9 +2,10 @@
|
|||
|
||||
[ext_resource type="PackedScene" uid="uid://cxltmhhp4rbyk" path="res://prefab/weapon/WeaponTemplate.tscn" id="1_3op5w"]
|
||||
[ext_resource type="Script" path="res://src/game/activity/weapon/gun/Gun.cs" id="2_toxwq"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="3_ch83c"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="3_ch83c"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://taxfr2lcy0f3" path="res://resource/spriteFrames/weapon/Weapon0014.tres" id="4_xdmw2"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_sy2aq"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("3_ch83c")
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
[gd_scene load_steps=11 format=3 uid="uid://b7s3fvpkltk1d"]
|
||||
|
||||
[ext_resource type="Script" path="res://src/game/activity/weapon/bow/Bow.cs" id="1_k4gvs"]
|
||||
[ext_resource type="Shader" path="res://resource/material/Blend.gdshader" id="3_cui8l"]
|
||||
[ext_resource type="Shader" path="res://resource/shader/Blend.gdshader" id="3_cui8l"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://ccrflh6pjmq7r" path="res://resource/spriteFrames/weapon/Weapon0016.tres" id="4_buwa4"]
|
||||
[ext_resource type="Animation" uid="uid://v3dltmdstqad" path="res://resource/animation/weapon/Weapon_floodlight.res" id="4_nl06y"]
|
||||
|
||||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_sy2aq"]
|
||||
resource_local_to_scene = true
|
||||
shader = ExtResource("3_cui8l")
|
||||
|
|
|
@ -31,7 +31,7 @@ project/assembly_name="DungeonShooting"
|
|||
|
||||
[editor_plugins]
|
||||
|
||||
enabled=PackedStringArray("res://addons/dungeonShooting_plugin/plugin.cfg")
|
||||
enabled=PackedStringArray()
|
||||
|
||||
[file_customization]
|
||||
|
||||
|
|
|
@ -6,11 +6,11 @@
|
|||
"Buff": null,
|
||||
"Condition": {
|
||||
"HpFull": [
|
||||
0
|
||||
true
|
||||
]
|
||||
},
|
||||
"Effect": {
|
||||
"Hp": [
|
||||
"ChangeHp": [
|
||||
2
|
||||
]
|
||||
},
|
||||
|
@ -27,7 +27,7 @@
|
|||
"Buff": null,
|
||||
"Condition": {
|
||||
"AmmoFull": [
|
||||
0
|
||||
true
|
||||
]
|
||||
},
|
||||
"Effect": {
|
||||
|
@ -76,5 +76,81 @@
|
|||
"CooldownTime": 0,
|
||||
"IsConsumables": false,
|
||||
"MaxCount": 1
|
||||
},
|
||||
{
|
||||
"Id": "0005",
|
||||
"Remark": "\u9B54\u672F\u68D2",
|
||||
"__Activity": "prop5004",
|
||||
"Buff": null,
|
||||
"Condition": null,
|
||||
"Effect": {
|
||||
"SwapWeapon": []
|
||||
},
|
||||
"Charge": {
|
||||
"EnterRoom": [
|
||||
0.5
|
||||
]
|
||||
},
|
||||
"Duration": 0,
|
||||
"CooldownTime": 0,
|
||||
"IsConsumables": false,
|
||||
"MaxCount": 1
|
||||
},
|
||||
{
|
||||
"Id": "0006",
|
||||
"Remark": "\u4FBF\u643A\u5F0F\u4F9B\u8840\u5668",
|
||||
"__Activity": "prop5005",
|
||||
"Buff": null,
|
||||
"Condition": {
|
||||
"HpFull": [
|
||||
true
|
||||
],
|
||||
"Gold": [
|
||||
"\u003E=",
|
||||
25
|
||||
]
|
||||
},
|
||||
"Effect": {
|
||||
"ChangeHp": [
|
||||
1
|
||||
],
|
||||
"UseGold": [
|
||||
25
|
||||
]
|
||||
},
|
||||
"Charge": {
|
||||
"EnterRoom": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"Duration": 0,
|
||||
"CooldownTime": 0,
|
||||
"IsConsumables": false,
|
||||
"MaxCount": 1
|
||||
},
|
||||
{
|
||||
"Id": "0007",
|
||||
"Remark": "\u4FBF\u643A\u5F0F\u732E\u8840\u5668",
|
||||
"__Activity": "prop5006",
|
||||
"Buff": null,
|
||||
"Condition": {
|
||||
"Hp": [
|
||||
"\u003E",
|
||||
1
|
||||
]
|
||||
},
|
||||
"Effect": {
|
||||
"ChangeHp": [
|
||||
-1
|
||||
],
|
||||
"GetGold": [
|
||||
20
|
||||
]
|
||||
},
|
||||
"Charge": null,
|
||||
"Duration": 0,
|
||||
"CooldownTime": 3,
|
||||
"IsConsumables": false,
|
||||
"MaxCount": 1
|
||||
}
|
||||
]
|
|
@ -699,6 +699,48 @@
|
|||
"Icon": "res://resource/sprite/prop/active/ActiveProp5003.png",
|
||||
"ShowInMapEditor": true
|
||||
},
|
||||
{
|
||||
"Id": "prop5004",
|
||||
"Name": "\u9B54\u672F\u68D2",
|
||||
"Type": 9,
|
||||
"Quality": 1,
|
||||
"Price": 0,
|
||||
"Intro": "\u968F\u673A\u9009\u62E9\u623F\u95F4\u5185\u7684\u4E00\u4E2A\u624B\u6301\u6B66\u5668\u7684\u654C\u4EBA, \u4EA4\u6362\u4F60\u4EEC\u624B\u4E2D\u7684\u6B66\u5668",
|
||||
"Details": "",
|
||||
"IsStatic": false,
|
||||
"__Material": "",
|
||||
"Prefab": "res://prefab/prop/ActiveProp.tscn",
|
||||
"Icon": "res://resource/sprite/prop/active/ActiveProp5004.png",
|
||||
"ShowInMapEditor": true
|
||||
},
|
||||
{
|
||||
"Id": "prop5005",
|
||||
"Name": "\u4FBF\u643A\u5F0F\u4F9B\u8840\u5668",
|
||||
"Type": 9,
|
||||
"Quality": 1,
|
||||
"Price": 0,
|
||||
"Intro": "\u4F7F\u7528\u91D1\u5E01\u6362\u53D6\u8840\u91CF",
|
||||
"Details": "",
|
||||
"IsStatic": false,
|
||||
"__Material": "",
|
||||
"Prefab": "res://prefab/prop/ActiveProp.tscn",
|
||||
"Icon": "res://resource/sprite/prop/active/ActiveProp5005.png",
|
||||
"ShowInMapEditor": true
|
||||
},
|
||||
{
|
||||
"Id": "prop5006",
|
||||
"Name": "\u4FBF\u643A\u5F0F\u732E\u8840\u5668",
|
||||
"Type": 9,
|
||||
"Quality": 1,
|
||||
"Price": 0,
|
||||
"Intro": "\u4F7F\u7528\u8840\u91CF\u6362\u53D6\u91D1\u5E01",
|
||||
"Details": "",
|
||||
"IsStatic": false,
|
||||
"__Material": "",
|
||||
"Prefab": "res://prefab/prop/ActiveProp.tscn",
|
||||
"Icon": "res://resource/sprite/prop/active/ActiveProp5006.png",
|
||||
"ShowInMapEditor": true
|
||||
},
|
||||
{
|
||||
"Id": "treasure_box0001",
|
||||
"Name": "\u6728\u8D28\u5B9D\u7BB1",
|
||||
|
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.5 KiB |