feat(map01): 주황버섯 추격 몬스터 배치 + 카메라 시점 미세조정
- map01: StaticMonsterTemplate → 주황버섯(ChaseMonster 모델) 교체 (애니메이션 move/stand/jump/hit/die·히트박스·위치 x 5.2 갱신, 이동은 턴전투용 정지) - 타일맵 TemplateRUID 변경 - 카메라 cameraOffsetY -1 → -0.83 (data/camera.json + MapCamera.codeblock) - 메이커 저장 재직렬화 포함: common.gamelogic 수치 표기(0→0.0), map02~11 컴포넌트 순서, ui/DefaultGroup.ui Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -32,10 +32,10 @@
|
|||||||
{
|
{
|
||||||
"@type": "script.SlayDeckController",
|
"@type": "script.SlayDeckController",
|
||||||
"Enable": true,
|
"Enable": true,
|
||||||
"Energy": 0,
|
"Energy": 0.0,
|
||||||
"MaxEnergy": 3,
|
"MaxEnergy": 3.0,
|
||||||
"Turn": 0,
|
"Turn": 0.0,
|
||||||
"TweenEventId": 0
|
"TweenEventId": 0.0
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"@version": 1
|
"@version": 1
|
||||||
|
|||||||
@@ -47,7 +47,7 @@
|
|||||||
"Name": null
|
"Name": null
|
||||||
},
|
},
|
||||||
"Arguments": [],
|
"Arguments": [],
|
||||||
"Code": "self.CamTries = 0\nlocal eventId = 0\nlocal function apply()\n\tself.CamTries = self.CamTries + 1\n\tlocal cam = nil\n\tlocal lp = _UserService.LocalPlayer\n\tif lp ~= nil then\n\t\tcam = lp.CameraComponent\n\tend\n\tif cam == nil then\n\t\tcam = _CameraService:GetCurrentCameraComponent()\n\tend\n\tif cam ~= nil then\n\t\tcam.ZoomRatio = 90\n\t\tcam.ScreenOffset = Vector2(0.5, 0.655)\n\t\tcam.ConfineCameraArea = true\n\t\tcam.CameraOffset = Vector2(1.5, -1)\n\tend\n\tif cam ~= nil then\n\t\t_TimerService:ClearTimer(eventId)\n\telseif self.CamTries > 30 then\n\t\t_TimerService:ClearTimer(eventId)\n\tend\nend\neventId = _TimerService:SetTimerRepeat(apply, 0.1)",
|
"Code": "self.CamTries = 0\nlocal eventId = 0\nlocal function apply()\n\tself.CamTries = self.CamTries + 1\n\tlocal cam = nil\n\tlocal lp = _UserService.LocalPlayer\n\tif lp ~= nil then\n\t\tcam = lp.CameraComponent\n\tend\n\tif cam == nil then\n\t\tcam = _CameraService:GetCurrentCameraComponent()\n\tend\n\tif cam ~= nil then\n\t\tcam.ZoomRatio = 90\n\t\tcam.ScreenOffset = Vector2(0.5, 0.655)\n\t\tcam.ConfineCameraArea = true\n\t\tcam.CameraOffset = Vector2(1.5, -0.83)\n\tend\n\tif cam ~= nil then\n\t\t_TimerService:ClearTimer(eventId)\n\telseif self.CamTries > 30 then\n\t\t_TimerService:ClearTimer(eventId)\n\tend\nend\neventId = _TimerService:SetTimerRepeat(apply, 0.1)",
|
||||||
"Scope": 2,
|
"Scope": 2,
|
||||||
"ExecSpace": 6,
|
"ExecSpace": 6,
|
||||||
"Attributes": [],
|
"Attributes": [],
|
||||||
|
|||||||
@@ -4,5 +4,5 @@
|
|||||||
"screenOffsetY": 0.655,
|
"screenOffsetY": 0.655,
|
||||||
"confineCameraArea": true,
|
"confineCameraArea": true,
|
||||||
"cameraOffsetX": 1.5,
|
"cameraOffsetX": 1.5,
|
||||||
"cameraOffsetY": -1
|
"cameraOffsetY": -0.83
|
||||||
}
|
}
|
||||||
|
|||||||
589
map/map01.map
589
map/map01.map
@@ -16,7 +16,7 @@
|
|||||||
{
|
{
|
||||||
"id": "bdadf19a-cc27-4a45-99c6-7a439c858a1b",
|
"id": "bdadf19a-cc27-4a45-99c6-7a439c858a1b",
|
||||||
"path": "/maps/map01",
|
"path": "/maps/map01",
|
||||||
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.MapCamera,script.PlayerLock",
|
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.PlayerLock,script.MapCamera",
|
||||||
"jsonString": {
|
"jsonString": {
|
||||||
"name": "map01",
|
"name": "map01",
|
||||||
"path": "/maps/map01",
|
"path": "/maps/map01",
|
||||||
@@ -1105,11 +1105,11 @@
|
|||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.MapCamera",
|
"@type": "script.PlayerLock",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.PlayerLock",
|
"@type": "script.MapCamera",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -1140,7 +1140,7 @@
|
|||||||
"b": 0.5019608,
|
"b": 0.5019608,
|
||||||
"a": 0.7058824
|
"a": 0.7058824
|
||||||
},
|
},
|
||||||
"TemplateRUID": "93a3334d007949658766225bb6363c4b",
|
"TemplateRUID": "79cf249e1519401795aad717096dbf6f",
|
||||||
"Type": 1,
|
"Type": 1,
|
||||||
"WebUrl": "eab37efa7f0d400f94259a2df836eb8a",
|
"WebUrl": "eab37efa7f0d400f94259a2df836eb8a",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
@@ -6364,12 +6364,12 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "2da3fe39-a00f-48df-b9a9-9a01f5009b30",
|
"id": "595374e9-e49a-4733-b00f-77e8e61dad59",
|
||||||
"path": "/maps/map01/StaticMonsterTemplate",
|
"path": "/maps/map01/주황버섯",
|
||||||
"componentNames": "MOD.Core.TransformComponent,MOD.Core.StateAnimationComponent,MOD.Core.SpriteRendererComponent,MOD.Core.DamageSkinSettingComponent,MOD.Core.HitComponent,MOD.Core.DamageSkinSpawnerComponent,MOD.Core.StateComponent,MOD.Core.RigidbodyComponent,MOD.Core.KinematicbodyComponent,MOD.Core.SideviewbodyComponent,MOD.Core.MovementComponent,script.Monster,script.MonsterAttack",
|
"componentNames": "MOD.Core.TransformComponent,MOD.Core.StateAnimationComponent,MOD.Core.SpriteRendererComponent,MOD.Core.RigidbodyComponent,MOD.Core.MovementComponent,MOD.Core.StateComponent,MOD.Core.HitComponent,MOD.Core.DamageSkinSpawnerComponent,script.Monster,script.MonsterAttack,MOD.Core.KinematicbodyComponent,MOD.Core.SideviewbodyComponent,MOD.Core.DamageSkinSettingComponent",
|
||||||
"jsonString": {
|
"jsonString": {
|
||||||
"name": "StaticMonsterTemplate",
|
"name": "주황버섯",
|
||||||
"path": "/maps/map01/StaticMonsterTemplate",
|
"path": "/maps/map01/주황버섯",
|
||||||
"nameEditable": true,
|
"nameEditable": true,
|
||||||
"enable": true,
|
"enable": true,
|
||||||
"visible": true,
|
"visible": true,
|
||||||
@@ -6377,305 +6377,6 @@
|
|||||||
"displayOrder": 4,
|
"displayOrder": 4,
|
||||||
"pathConstraints": "///",
|
"pathConstraints": "///",
|
||||||
"revision": 2,
|
"revision": 2,
|
||||||
"origin": {
|
|
||||||
"type": "Model",
|
|
||||||
"entry_id": "StaticMonster",
|
|
||||||
"sub_entity_id": null,
|
|
||||||
"root_entity_id": "2da3fe39-a00f-48df-b9a9-9a01f5009b30",
|
|
||||||
"replaced_model_id": null
|
|
||||||
},
|
|
||||||
"modelId": "staticmonster",
|
|
||||||
"@components": [
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.TransformComponent",
|
|
||||||
"Position": {
|
|
||||||
"x": 3.8,
|
|
||||||
"y": 0.03499998,
|
|
||||||
"z": 999.999
|
|
||||||
},
|
|
||||||
"QuaternionRotation": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0,
|
|
||||||
"z": 0,
|
|
||||||
"w": 1
|
|
||||||
},
|
|
||||||
"Scale": {
|
|
||||||
"x": 1,
|
|
||||||
"y": 1,
|
|
||||||
"z": 1
|
|
||||||
},
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.StateAnimationComponent",
|
|
||||||
"ActionSheet": {
|
|
||||||
"stand": "4b1d55e35ae9462b944297691025429a",
|
|
||||||
"hit": "35c14328c2a6446eb5464dc85c39ab56",
|
|
||||||
"die": "770cfcbab36448999137d25e8ace707e"
|
|
||||||
},
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.SpriteRendererComponent",
|
|
||||||
"ActionSheet": {},
|
|
||||||
"EndFrameIndex": 0,
|
|
||||||
"RenderSetting": 1,
|
|
||||||
"SortingLayer": "MapLayer0",
|
|
||||||
"SpriteRUID": "4b1d55e35ae9462b944297691025429a",
|
|
||||||
"StartFrameIndex": 0,
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.DamageSkinSettingComponent",
|
|
||||||
"DamageSkinId": {
|
|
||||||
"DataId": "02c22d93421b4038b3c413b3e40b57ec"
|
|
||||||
},
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.HitComponent",
|
|
||||||
"BoxSize": {
|
|
||||||
"x": 0.78,
|
|
||||||
"y": 0.86
|
|
||||||
},
|
|
||||||
"ColliderOffset": {
|
|
||||||
"x": 0.03999999,
|
|
||||||
"y": 0.43
|
|
||||||
},
|
|
||||||
"CollisionGroup": {
|
|
||||||
"Id": "8992acd1e8cd45838db6f10a7b41df09"
|
|
||||||
},
|
|
||||||
"IsLegacy": false,
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.DamageSkinSpawnerComponent",
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.StateComponent",
|
|
||||||
"IsLegacy": false,
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.RigidbodyComponent",
|
|
||||||
"MoveVelocity": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"RealMoveVelocity": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.KinematicbodyComponent",
|
|
||||||
"MoveVelocity": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.SideviewbodyComponent",
|
|
||||||
"MoveVelocity": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.MovementComponent",
|
|
||||||
"InputSpeed": 0,
|
|
||||||
"Enable": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "script.Monster",
|
|
||||||
"Enable": true,
|
|
||||||
"IsDead": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "script.MonsterAttack",
|
|
||||||
"Enable": true,
|
|
||||||
"SpriteSize": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"PositionOffset": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"@version": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "03928039-6972-4aec-bb07-64aea430561e",
|
|
||||||
"path": "/maps/map01/MoveMonsterTemplate",
|
|
||||||
"componentNames": "MOD.Core.TransformComponent,MOD.Core.StateAnimationComponent,MOD.Core.SpriteRendererComponent,MOD.Core.RigidbodyComponent,MOD.Core.MovementComponent,MOD.Core.StateComponent,MOD.Core.HitComponent,MOD.Core.DamageSkinSpawnerComponent,script.Monster,script.MonsterAttack,MOD.Core.KinematicbodyComponent,MOD.Core.SideviewbodyComponent,MOD.Core.DamageSkinSettingComponent",
|
|
||||||
"jsonString": {
|
|
||||||
"name": "MoveMonsterTemplate",
|
|
||||||
"path": "/maps/map01/MoveMonsterTemplate",
|
|
||||||
"nameEditable": true,
|
|
||||||
"enable": true,
|
|
||||||
"visible": true,
|
|
||||||
"localize": false,
|
|
||||||
"displayOrder": 5,
|
|
||||||
"pathConstraints": "///",
|
|
||||||
"revision": 3,
|
|
||||||
"origin": {
|
|
||||||
"type": "Model",
|
|
||||||
"entry_id": "MoveMonster",
|
|
||||||
"sub_entity_id": null,
|
|
||||||
"root_entity_id": "03928039-6972-4aec-bb07-64aea430561e",
|
|
||||||
"replaced_model_id": null
|
|
||||||
},
|
|
||||||
"modelId": "movemonster",
|
|
||||||
"@components": [
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.TransformComponent",
|
|
||||||
"Position": {
|
|
||||||
"x": 2.08546019,
|
|
||||||
"y": 0.03499998,
|
|
||||||
"z": 999.999
|
|
||||||
},
|
|
||||||
"QuaternionRotation": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0,
|
|
||||||
"z": 0,
|
|
||||||
"w": 1
|
|
||||||
},
|
|
||||||
"Scale": {
|
|
||||||
"x": 1,
|
|
||||||
"y": 1,
|
|
||||||
"z": 1
|
|
||||||
},
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.StateAnimationComponent",
|
|
||||||
"ActionSheet": {
|
|
||||||
"move": "969f52dd34934009b5c687af97c8435b",
|
|
||||||
"stand": "3e76c89ae8e7477ca871f5bbcd6f6f29",
|
|
||||||
"attack": "44b6336ac84a4091a9adb5f0aa0c02b7",
|
|
||||||
"attack2": "3c66552bd7ff48f98482e417be3e3772",
|
|
||||||
"attack3": "20d46f5a9b9641e0b3703dc95ac5fbc2",
|
|
||||||
"skill": "022d41ea8ce247639fd4f0fa83563c96",
|
|
||||||
"hit": "0bcbc0ec869245d4a454e00d635fc64d",
|
|
||||||
"die": "4e38904690784278a50fa378086b65a7"
|
|
||||||
},
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.SpriteRendererComponent",
|
|
||||||
"ActionSheet": {},
|
|
||||||
"EndFrameIndex": 0,
|
|
||||||
"RenderSetting": 1,
|
|
||||||
"SortingLayer": "MapLayer0",
|
|
||||||
"SpriteRUID": "3e76c89ae8e7477ca871f5bbcd6f6f29",
|
|
||||||
"StartFrameIndex": 0,
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.RigidbodyComponent",
|
|
||||||
"MoveVelocity": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"RealMoveVelocity": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.MovementComponent",
|
|
||||||
"InputSpeed": 0,
|
|
||||||
"JumpForce": 0,
|
|
||||||
"Enable": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.StateComponent",
|
|
||||||
"IsLegacy": false,
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.HitComponent",
|
|
||||||
"BoxSize": {
|
|
||||||
"x": 1.6,
|
|
||||||
"y": 1.56
|
|
||||||
},
|
|
||||||
"ColliderOffset": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0.78
|
|
||||||
},
|
|
||||||
"IsLegacy": false,
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.DamageSkinSpawnerComponent",
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "script.Monster",
|
|
||||||
"Enable": true,
|
|
||||||
"IsDead": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "script.MonsterAttack",
|
|
||||||
"Enable": true,
|
|
||||||
"SpriteSize": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"PositionOffset": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.KinematicbodyComponent",
|
|
||||||
"MoveVelocity": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.SideviewbodyComponent",
|
|
||||||
"MoveVelocity": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.DamageSkinSettingComponent",
|
|
||||||
"DamageSkinId": {
|
|
||||||
"DataId": "02c22d93421b4038b3c413b3e40b57ec"
|
|
||||||
},
|
|
||||||
"Enable": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"@version": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "595374e9-e49a-4733-b00f-77e8e61dad59",
|
|
||||||
"path": "/maps/map01/ChaseMonsterTemplate",
|
|
||||||
"componentNames": "MOD.Core.TransformComponent,MOD.Core.StateAnimationComponent,MOD.Core.SpriteRendererComponent,MOD.Core.RigidbodyComponent,MOD.Core.MovementComponent,MOD.Core.StateComponent,MOD.Core.HitComponent,MOD.Core.DamageSkinSpawnerComponent,script.Monster,script.MonsterAttack,MOD.Core.KinematicbodyComponent,MOD.Core.SideviewbodyComponent,MOD.Core.DamageSkinSettingComponent",
|
|
||||||
"jsonString": {
|
|
||||||
"name": "ChaseMonsterTemplate",
|
|
||||||
"path": "/maps/map01/ChaseMonsterTemplate",
|
|
||||||
"nameEditable": true,
|
|
||||||
"enable": true,
|
|
||||||
"visible": true,
|
|
||||||
"localize": false,
|
|
||||||
"displayOrder": 6,
|
|
||||||
"pathConstraints": "///",
|
|
||||||
"revision": 2,
|
|
||||||
"origin": {
|
"origin": {
|
||||||
"type": "Model",
|
"type": "Model",
|
||||||
"entry_id": "ChaseMonster",
|
"entry_id": "ChaseMonster",
|
||||||
@@ -6809,6 +6510,278 @@
|
|||||||
],
|
],
|
||||||
"@version": 1
|
"@version": 1
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "b1923aa6-7265-4f99-9ab6-1c45eae9af23",
|
||||||
|
"path": "/maps/map01/돼지",
|
||||||
|
"componentNames": "MOD.Core.TransformComponent,MOD.Core.StateAnimationComponent,MOD.Core.SpriteRendererComponent,MOD.Core.RigidbodyComponent,MOD.Core.MovementComponent,MOD.Core.StateComponent,MOD.Core.HitComponent,MOD.Core.DamageSkinSpawnerComponent,script.Monster,script.MonsterAttack,MOD.Core.KinematicbodyComponent,MOD.Core.SideviewbodyComponent",
|
||||||
|
"jsonString": {
|
||||||
|
"name": "돼지",
|
||||||
|
"path": "/maps/map01/돼지",
|
||||||
|
"nameEditable": true,
|
||||||
|
"enable": true,
|
||||||
|
"visible": true,
|
||||||
|
"localize": false,
|
||||||
|
"displayOrder": 5,
|
||||||
|
"pathConstraints": "///",
|
||||||
|
"revision": 1,
|
||||||
|
"origin": {
|
||||||
|
"type": "Model",
|
||||||
|
"entry_id": "ChaseMonster",
|
||||||
|
"sub_entity_id": null,
|
||||||
|
"root_entity_id": "b1923aa6-7265-4f99-9ab6-1c45eae9af23",
|
||||||
|
"replaced_model_id": null
|
||||||
|
},
|
||||||
|
"modelId": "chasemonster",
|
||||||
|
"@components": [
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.TransformComponent",
|
||||||
|
"Position": {
|
||||||
|
"x": 3.767562,
|
||||||
|
"y": 0.03499998,
|
||||||
|
"z": 999.999
|
||||||
|
},
|
||||||
|
"QuaternionRotation": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"z": 0,
|
||||||
|
"w": 1
|
||||||
|
},
|
||||||
|
"Enable": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.StateAnimationComponent",
|
||||||
|
"ActionSheet": {
|
||||||
|
"move": "8baad61512be4b33b2a0879fec7a266e",
|
||||||
|
"stand": "528a8638b12f41b8b5781a05360d2949",
|
||||||
|
"jump": "c9e27ce6f8344aefba169c5ca6571def",
|
||||||
|
"hit": "60e42a918a0342478903cc71adba1dc5",
|
||||||
|
"die": "0644beff80a44ec7acc011ea0961df57"
|
||||||
|
},
|
||||||
|
"Enable": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.SpriteRendererComponent",
|
||||||
|
"ActionSheet": {},
|
||||||
|
"EndFrameIndex": 0,
|
||||||
|
"RenderSetting": 1,
|
||||||
|
"SortingLayer": "MapLayer0",
|
||||||
|
"SpriteRUID": "528a8638b12f41b8b5781a05360d2949",
|
||||||
|
"StartFrameIndex": 0,
|
||||||
|
"Enable": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.RigidbodyComponent",
|
||||||
|
"MoveVelocity": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"RealMoveVelocity": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"Enable": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.MovementComponent",
|
||||||
|
"InputSpeed": 1.5,
|
||||||
|
"JumpForce": 6,
|
||||||
|
"Enable": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.StateComponent",
|
||||||
|
"IsLegacy": false,
|
||||||
|
"Enable": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.HitComponent",
|
||||||
|
"BoxSize": {
|
||||||
|
"x": 0.68,
|
||||||
|
"y": 0.4
|
||||||
|
},
|
||||||
|
"ColliderOffset": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0.2
|
||||||
|
},
|
||||||
|
"IsLegacy": false,
|
||||||
|
"Enable": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.DamageSkinSpawnerComponent",
|
||||||
|
"Enable": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "script.Monster",
|
||||||
|
"Enable": true,
|
||||||
|
"IsDead": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "script.MonsterAttack",
|
||||||
|
"Enable": true,
|
||||||
|
"SpriteSize": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"PositionOffset": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.KinematicbodyComponent",
|
||||||
|
"MoveVelocity": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"Enable": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.SideviewbodyComponent",
|
||||||
|
"MoveVelocity": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"Enable": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"@version": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "566e94be-0efe-4536-9007-882dde030a95",
|
||||||
|
"path": "/maps/map01/초록버섯",
|
||||||
|
"componentNames": "MOD.Core.TransformComponent,MOD.Core.StateAnimationComponent,MOD.Core.SpriteRendererComponent,MOD.Core.RigidbodyComponent,MOD.Core.MovementComponent,MOD.Core.StateComponent,MOD.Core.HitComponent,MOD.Core.DamageSkinSpawnerComponent,script.Monster,script.MonsterAttack,MOD.Core.KinematicbodyComponent,MOD.Core.SideviewbodyComponent",
|
||||||
|
"jsonString": {
|
||||||
|
"name": "초록버섯",
|
||||||
|
"path": "/maps/map01/초록버섯",
|
||||||
|
"nameEditable": true,
|
||||||
|
"enable": true,
|
||||||
|
"visible": true,
|
||||||
|
"localize": false,
|
||||||
|
"displayOrder": 6,
|
||||||
|
"pathConstraints": "///",
|
||||||
|
"revision": 1,
|
||||||
|
"origin": {
|
||||||
|
"type": "Model",
|
||||||
|
"entry_id": "MoveMonster",
|
||||||
|
"sub_entity_id": null,
|
||||||
|
"root_entity_id": "566e94be-0efe-4536-9007-882dde030a95",
|
||||||
|
"replaced_model_id": null
|
||||||
|
},
|
||||||
|
"modelId": "movemonster",
|
||||||
|
"@components": [
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.TransformComponent",
|
||||||
|
"Position": {
|
||||||
|
"x": 2.289299,
|
||||||
|
"y": 0.03499998,
|
||||||
|
"z": 999.999
|
||||||
|
},
|
||||||
|
"QuaternionRotation": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"z": 0,
|
||||||
|
"w": 1
|
||||||
|
},
|
||||||
|
"Enable": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.StateAnimationComponent",
|
||||||
|
"ActionSheet": {
|
||||||
|
"move": "7dc99047c46d4b2e85ec6a1e4252d0a8",
|
||||||
|
"stand": "7863066dbf184f06886ce96b69fea4ee",
|
||||||
|
"attack": "91804a0917634cc198238d4cda1dd735",
|
||||||
|
"hit": "a16e83f471684ef4a2543263caca7799",
|
||||||
|
"die": "f45adb12126f4167bddcfece10ddf6e3"
|
||||||
|
},
|
||||||
|
"Enable": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.SpriteRendererComponent",
|
||||||
|
"ActionSheet": {},
|
||||||
|
"EndFrameIndex": 0,
|
||||||
|
"RenderSetting": 1,
|
||||||
|
"SortingLayer": "MapLayer0",
|
||||||
|
"SpriteRUID": "7863066dbf184f06886ce96b69fea4ee",
|
||||||
|
"StartFrameIndex": 0,
|
||||||
|
"Enable": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.RigidbodyComponent",
|
||||||
|
"MoveVelocity": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"RealMoveVelocity": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"Enable": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.MovementComponent",
|
||||||
|
"InputSpeed": 1,
|
||||||
|
"JumpForce": 0,
|
||||||
|
"Enable": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.StateComponent",
|
||||||
|
"IsLegacy": false,
|
||||||
|
"Enable": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.HitComponent",
|
||||||
|
"BoxSize": {
|
||||||
|
"x": 0.56,
|
||||||
|
"y": 0.52
|
||||||
|
},
|
||||||
|
"ColliderOffset": {
|
||||||
|
"x": 0.00999999,
|
||||||
|
"y": 0.26
|
||||||
|
},
|
||||||
|
"IsLegacy": false,
|
||||||
|
"Enable": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.DamageSkinSpawnerComponent",
|
||||||
|
"Enable": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "script.Monster",
|
||||||
|
"Enable": true,
|
||||||
|
"IsDead": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "script.MonsterAttack",
|
||||||
|
"Enable": true,
|
||||||
|
"SpriteSize": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"PositionOffset": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.KinematicbodyComponent",
|
||||||
|
"MoveVelocity": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"Enable": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "MOD.Core.SideviewbodyComponent",
|
||||||
|
"MoveVelocity": {
|
||||||
|
"x": 0,
|
||||||
|
"y": 0
|
||||||
|
},
|
||||||
|
"Enable": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"@version": 1
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
{
|
{
|
||||||
"id": "000007d0-0000-4000-8000-0000000007d0",
|
"id": "000007d0-0000-4000-8000-0000000007d0",
|
||||||
"path": "/maps/map02",
|
"path": "/maps/map02",
|
||||||
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.MapCamera,script.PlayerLock",
|
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.PlayerLock,script.MapCamera",
|
||||||
"jsonString": {
|
"jsonString": {
|
||||||
"name": "map02",
|
"name": "map02",
|
||||||
"path": "/maps/map02",
|
"path": "/maps/map02",
|
||||||
@@ -1105,11 +1105,11 @@
|
|||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.MapCamera",
|
"@type": "script.PlayerLock",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.PlayerLock",
|
"@type": "script.MapCamera",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
{
|
{
|
||||||
"id": "00000bb8-0000-4000-8000-000000000bb8",
|
"id": "00000bb8-0000-4000-8000-000000000bb8",
|
||||||
"path": "/maps/map03",
|
"path": "/maps/map03",
|
||||||
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.MapCamera,script.PlayerLock",
|
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.PlayerLock,script.MapCamera",
|
||||||
"jsonString": {
|
"jsonString": {
|
||||||
"name": "map03",
|
"name": "map03",
|
||||||
"path": "/maps/map03",
|
"path": "/maps/map03",
|
||||||
@@ -1105,11 +1105,11 @@
|
|||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.MapCamera",
|
"@type": "script.PlayerLock",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.PlayerLock",
|
"@type": "script.MapCamera",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
{
|
{
|
||||||
"id": "00000fa0-0000-4000-8000-000000000fa0",
|
"id": "00000fa0-0000-4000-8000-000000000fa0",
|
||||||
"path": "/maps/map04",
|
"path": "/maps/map04",
|
||||||
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.MapCamera,script.PlayerLock",
|
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.PlayerLock,script.MapCamera",
|
||||||
"jsonString": {
|
"jsonString": {
|
||||||
"name": "map04",
|
"name": "map04",
|
||||||
"path": "/maps/map04",
|
"path": "/maps/map04",
|
||||||
@@ -1105,11 +1105,11 @@
|
|||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.MapCamera",
|
"@type": "script.PlayerLock",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.PlayerLock",
|
"@type": "script.MapCamera",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
{
|
{
|
||||||
"id": "00001388-0000-4000-8000-000000001388",
|
"id": "00001388-0000-4000-8000-000000001388",
|
||||||
"path": "/maps/map05",
|
"path": "/maps/map05",
|
||||||
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.MapCamera,script.PlayerLock",
|
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.PlayerLock,script.MapCamera",
|
||||||
"jsonString": {
|
"jsonString": {
|
||||||
"name": "map05",
|
"name": "map05",
|
||||||
"path": "/maps/map05",
|
"path": "/maps/map05",
|
||||||
@@ -1105,11 +1105,11 @@
|
|||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.MapCamera",
|
"@type": "script.PlayerLock",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.PlayerLock",
|
"@type": "script.MapCamera",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
{
|
{
|
||||||
"id": "00001770-0000-4000-8000-000000001770",
|
"id": "00001770-0000-4000-8000-000000001770",
|
||||||
"path": "/maps/map06",
|
"path": "/maps/map06",
|
||||||
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.MapCamera,script.PlayerLock",
|
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.PlayerLock,script.MapCamera",
|
||||||
"jsonString": {
|
"jsonString": {
|
||||||
"name": "map06",
|
"name": "map06",
|
||||||
"path": "/maps/map06",
|
"path": "/maps/map06",
|
||||||
@@ -1105,11 +1105,11 @@
|
|||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.MapCamera",
|
"@type": "script.PlayerLock",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.PlayerLock",
|
"@type": "script.MapCamera",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
{
|
{
|
||||||
"id": "00001b58-0000-4000-8000-000000001b58",
|
"id": "00001b58-0000-4000-8000-000000001b58",
|
||||||
"path": "/maps/map07",
|
"path": "/maps/map07",
|
||||||
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.MapCamera,script.PlayerLock",
|
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.PlayerLock,script.MapCamera",
|
||||||
"jsonString": {
|
"jsonString": {
|
||||||
"name": "map07",
|
"name": "map07",
|
||||||
"path": "/maps/map07",
|
"path": "/maps/map07",
|
||||||
@@ -1105,11 +1105,11 @@
|
|||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.MapCamera",
|
"@type": "script.PlayerLock",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.PlayerLock",
|
"@type": "script.MapCamera",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
{
|
{
|
||||||
"id": "00001f40-0000-4000-8000-000000001f40",
|
"id": "00001f40-0000-4000-8000-000000001f40",
|
||||||
"path": "/maps/map08",
|
"path": "/maps/map08",
|
||||||
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.MapCamera,script.PlayerLock",
|
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.PlayerLock,script.MapCamera",
|
||||||
"jsonString": {
|
"jsonString": {
|
||||||
"name": "map08",
|
"name": "map08",
|
||||||
"path": "/maps/map08",
|
"path": "/maps/map08",
|
||||||
@@ -1105,11 +1105,11 @@
|
|||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.MapCamera",
|
"@type": "script.PlayerLock",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.PlayerLock",
|
"@type": "script.MapCamera",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
{
|
{
|
||||||
"id": "00002328-0000-4000-8000-000000002328",
|
"id": "00002328-0000-4000-8000-000000002328",
|
||||||
"path": "/maps/map09",
|
"path": "/maps/map09",
|
||||||
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.MapCamera,script.PlayerLock",
|
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.PlayerLock,script.MapCamera",
|
||||||
"jsonString": {
|
"jsonString": {
|
||||||
"name": "map09",
|
"name": "map09",
|
||||||
"path": "/maps/map09",
|
"path": "/maps/map09",
|
||||||
@@ -1105,11 +1105,11 @@
|
|||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.MapCamera",
|
"@type": "script.PlayerLock",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.PlayerLock",
|
"@type": "script.MapCamera",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
{
|
{
|
||||||
"id": "00002710-0000-4000-8000-000000002710",
|
"id": "00002710-0000-4000-8000-000000002710",
|
||||||
"path": "/maps/map10",
|
"path": "/maps/map10",
|
||||||
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.MapCamera,script.PlayerLock",
|
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.PlayerLock,script.MapCamera",
|
||||||
"jsonString": {
|
"jsonString": {
|
||||||
"name": "map10",
|
"name": "map10",
|
||||||
"path": "/maps/map10",
|
"path": "/maps/map10",
|
||||||
@@ -1105,11 +1105,11 @@
|
|||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.MapCamera",
|
"@type": "script.PlayerLock",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.PlayerLock",
|
"@type": "script.MapCamera",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
{
|
{
|
||||||
"id": "00002af8-0000-4000-8000-000000002af8",
|
"id": "00002af8-0000-4000-8000-000000002af8",
|
||||||
"path": "/maps/map11",
|
"path": "/maps/map11",
|
||||||
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.MapCamera,script.PlayerLock",
|
"componentNames": "MOD.Core.MapComponent,MOD.Core.FootholdComponent,script.PlayerLock,script.MapCamera",
|
||||||
"jsonString": {
|
"jsonString": {
|
||||||
"name": "map11",
|
"name": "map11",
|
||||||
"path": "/maps/map11",
|
"path": "/maps/map11",
|
||||||
@@ -1105,11 +1105,11 @@
|
|||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.MapCamera",
|
"@type": "script.PlayerLock",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"@type": "script.PlayerLock",
|
"@type": "script.MapCamera",
|
||||||
"Enable": true
|
"Enable": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
11154
ui/DefaultGroup.ui
11154
ui/DefaultGroup.ui
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user