캐릭터 선택 덱보기 버튼 제거 #67
1
RULES.md
1
RULES.md
@@ -59,6 +59,7 @@ grep -c "CalcPlayerAttack" RootDesk/MyDesk/SlayDeckController.codeblock
|
|||||||
|
|
||||||
- 브랜치 → 커밋(기능 단위) → push → **PR은 반드시 `node tools/git/gitea-pr.mjs`로** (인라인 `curl -d` 한글 본문은 Windows에서 CP949로 깨짐 — PR #34~41 사고).
|
- 브랜치 → 커밋(기능 단위) → push → **PR은 반드시 `node tools/git/gitea-pr.mjs`로** (인라인 `curl -d` 한글 본문은 Windows에서 CP949로 깨짐 — PR #34~41 사고).
|
||||||
- 제목/본문은 UTF-8 spec JSON 파일로 작성 후 `create <spec.json>` / `merge <번호>`.
|
- 제목/본문은 UTF-8 spec JSON 파일로 작성 후 `create <spec.json>` / `merge <번호>`.
|
||||||
|
- PR 제목과 본문은 한국어로 작성한다.
|
||||||
- 산출물 재생성 커밋은 소스 변경 커밋과 분리하거나, 메시지에 "산출물 재생성"을 명시.
|
- 산출물 재생성 커밋은 소스 변경 커밋과 분리하거나, 메시지에 "산출물 재생성"을 명시.
|
||||||
|
|
||||||
## 5. 메이커(MSW) 연동 주의
|
## 5. 메이커(MSW) 연동 주의
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -2573,20 +2573,6 @@ function upsertUi() {
|
|||||||
],
|
],
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
select.push(entity({
|
|
||||||
id: guid('menu', 170 + i),
|
|
||||||
path: `/ui/DefaultGroup/CharacterSelectHud/${cls.key}DeckButton`,
|
|
||||||
modelId: 'uibutton',
|
|
||||||
entryId: 'UIButton',
|
|
||||||
componentNames: 'MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.ButtonComponent,MOD.Core.TextComponent',
|
|
||||||
displayOrder: 18 + i,
|
|
||||||
components: [
|
|
||||||
transform({ parentW: 1920, parentH: 1080, anchor: { x: 0.5, y: 0.5 }, pivot: { x: 0.5, y: 0.5 }, size: { x: 160, y: 46 }, pos: { x: cls.x, y: -160 }, align: ALIGN_CENTER }),
|
|
||||||
sprite({ color: { r: 0.11, g: 0.13, b: 0.16, a: 1 }, type: 1, raycast: true }),
|
|
||||||
button({ enabled: cls.enabled }),
|
|
||||||
text({ value: '\uB371 \uBCF4\uAE30', fontSize: 20, bold: true, color: GOLD, alignment: 0 }),
|
|
||||||
],
|
|
||||||
}));
|
|
||||||
}
|
}
|
||||||
select.push(entity({
|
select.push(entity({
|
||||||
id: guid('menu', 180),
|
id: guid('menu', 180),
|
||||||
@@ -2912,9 +2898,6 @@ function writeCodeblocks() {
|
|||||||
prop('any', 'WarriorSelectHandler'),
|
prop('any', 'WarriorSelectHandler'),
|
||||||
prop('any', 'ThiefSelectHandler'),
|
prop('any', 'ThiefSelectHandler'),
|
||||||
prop('any', 'MageSelectHandler'),
|
prop('any', 'MageSelectHandler'),
|
||||||
prop('any', 'WarriorDeckHandler'),
|
|
||||||
prop('any', 'ThiefDeckHandler'),
|
|
||||||
prop('any', 'MageDeckHandler'),
|
|
||||||
prop('any', 'WarriorDeckTabHandler'),
|
prop('any', 'WarriorDeckTabHandler'),
|
||||||
prop('any', 'ThiefDeckTabHandler'),
|
prop('any', 'ThiefDeckTabHandler'),
|
||||||
prop('any', 'MageDeckTabHandler'),
|
prop('any', 'MageDeckTabHandler'),
|
||||||
@@ -3143,30 +3126,6 @@ if mage ~= nil and mage.ButtonComponent ~= nil then
|
|||||||
end
|
end
|
||||||
self.MageSelectHandler = mage:ConnectEvent(ButtonClickEvent, function() self:SelectClass("magician") end)
|
self.MageSelectHandler = mage:ConnectEvent(ButtonClickEvent, function() self:SelectClass("magician") end)
|
||||||
end
|
end
|
||||||
local warriorDeck = _EntityService:GetEntityByPath("/ui/DefaultGroup/CharacterSelectHud/WarriorDeckButton")
|
|
||||||
if warriorDeck ~= nil and warriorDeck.ButtonComponent ~= nil then
|
|
||||||
if self.WarriorDeckHandler ~= nil then
|
|
||||||
warriorDeck:DisconnectEvent(ButtonClickEvent, self.WarriorDeckHandler)
|
|
||||||
self.WarriorDeckHandler = nil
|
|
||||||
end
|
|
||||||
self.WarriorDeckHandler = warriorDeck:ConnectEvent(ButtonClickEvent, function() self:OpenClassDeck("warrior") end)
|
|
||||||
end
|
|
||||||
local thiefDeck = _EntityService:GetEntityByPath("/ui/DefaultGroup/CharacterSelectHud/ThiefDeckButton")
|
|
||||||
if thiefDeck ~= nil and thiefDeck.ButtonComponent ~= nil then
|
|
||||||
if self.ThiefDeckHandler ~= nil then
|
|
||||||
thiefDeck:DisconnectEvent(ButtonClickEvent, self.ThiefDeckHandler)
|
|
||||||
self.ThiefDeckHandler = nil
|
|
||||||
end
|
|
||||||
self.ThiefDeckHandler = thiefDeck:ConnectEvent(ButtonClickEvent, function() self:OpenClassDeck("bandit") end)
|
|
||||||
end
|
|
||||||
local mageDeck = _EntityService:GetEntityByPath("/ui/DefaultGroup/CharacterSelectHud/MageDeckButton")
|
|
||||||
if mageDeck ~= nil and mageDeck.ButtonComponent ~= nil then
|
|
||||||
if self.MageDeckHandler ~= nil then
|
|
||||||
mageDeck:DisconnectEvent(ButtonClickEvent, self.MageDeckHandler)
|
|
||||||
self.MageDeckHandler = nil
|
|
||||||
end
|
|
||||||
self.MageDeckHandler = mageDeck:ConnectEvent(ButtonClickEvent, function() self:OpenClassDeck("magician") end)
|
|
||||||
end
|
|
||||||
local allDeckClose = _EntityService:GetEntityByPath("/ui/DefaultGroup/DeckAllHud/Close")
|
local allDeckClose = _EntityService:GetEntityByPath("/ui/DefaultGroup/DeckAllHud/Close")
|
||||||
if allDeckClose ~= nil and allDeckClose.ButtonComponent ~= nil then
|
if allDeckClose ~= nil and allDeckClose.ButtonComponent ~= nil then
|
||||||
if self.AllDeckCloseHandler ~= nil then
|
if self.AllDeckCloseHandler ~= nil then
|
||||||
|
|||||||
@@ -237251,241 +237251,6 @@
|
|||||||
"@version": 1
|
"@version": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"id": "0e0000aa-0000-4000-8000-00000e0000aa",
|
|
||||||
"path": "/ui/DefaultGroup/CharacterSelectHud/WarriorDeckButton",
|
|
||||||
"componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.ButtonComponent,MOD.Core.TextComponent",
|
|
||||||
"jsonString": {
|
|
||||||
"name": "WarriorDeckButton",
|
|
||||||
"path": "/ui/DefaultGroup/CharacterSelectHud/WarriorDeckButton",
|
|
||||||
"nameEditable": true,
|
|
||||||
"enable": true,
|
|
||||||
"visible": true,
|
|
||||||
"localize": true,
|
|
||||||
"displayOrder": 18,
|
|
||||||
"pathConstraints": "////",
|
|
||||||
"revision": 1,
|
|
||||||
"origin": {
|
|
||||||
"type": "Model",
|
|
||||||
"entry_id": "UIButton",
|
|
||||||
"sub_entity_id": null,
|
|
||||||
"root_entity_id": null,
|
|
||||||
"replaced_model_id": null
|
|
||||||
},
|
|
||||||
"modelId": "uibutton",
|
|
||||||
"@components": [
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.UITransformComponent",
|
|
||||||
"ActivePlatform": 255,
|
|
||||||
"AlignmentOption": 0,
|
|
||||||
"AnchorsMax": {
|
|
||||||
"x": 0.5,
|
|
||||||
"y": 0.5
|
|
||||||
},
|
|
||||||
"AnchorsMin": {
|
|
||||||
"x": 0.5,
|
|
||||||
"y": 0.5
|
|
||||||
},
|
|
||||||
"MobileOnly": false,
|
|
||||||
"OffsetMax": {
|
|
||||||
"x": -280,
|
|
||||||
"y": -137
|
|
||||||
},
|
|
||||||
"OffsetMin": {
|
|
||||||
"x": -440,
|
|
||||||
"y": -183
|
|
||||||
},
|
|
||||||
"Pivot": {
|
|
||||||
"x": 0.5,
|
|
||||||
"y": 0.5
|
|
||||||
},
|
|
||||||
"RectSize": {
|
|
||||||
"x": 160,
|
|
||||||
"y": 46
|
|
||||||
},
|
|
||||||
"UIMode": 1,
|
|
||||||
"UIScale": {
|
|
||||||
"x": 1,
|
|
||||||
"y": 1,
|
|
||||||
"z": 1
|
|
||||||
},
|
|
||||||
"UIVersion": 2,
|
|
||||||
"anchoredPosition": {
|
|
||||||
"x": -360,
|
|
||||||
"y": -160
|
|
||||||
},
|
|
||||||
"Position": {
|
|
||||||
"x": -360,
|
|
||||||
"y": -160,
|
|
||||||
"z": 0
|
|
||||||
},
|
|
||||||
"QuaternionRotation": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0,
|
|
||||||
"z": 0,
|
|
||||||
"w": 1
|
|
||||||
},
|
|
||||||
"Scale": {
|
|
||||||
"x": 1,
|
|
||||||
"y": 1,
|
|
||||||
"z": 1
|
|
||||||
},
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.SpriteGUIRendererComponent",
|
|
||||||
"AnimClipPlayType": 0,
|
|
||||||
"EndFrameIndex": 2147483647,
|
|
||||||
"ImageRUID": {
|
|
||||||
"DataId": ""
|
|
||||||
},
|
|
||||||
"LocalPosition": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"LocalScale": {
|
|
||||||
"x": 1,
|
|
||||||
"y": 1
|
|
||||||
},
|
|
||||||
"OverrideSorting": false,
|
|
||||||
"PlayRate": 1,
|
|
||||||
"PreserveSprite": 0,
|
|
||||||
"StartFrameIndex": 0,
|
|
||||||
"Color": {
|
|
||||||
"r": 0.11,
|
|
||||||
"g": 0.13,
|
|
||||||
"b": 0.16,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"DropShadow": false,
|
|
||||||
"DropShadowAngle": 30,
|
|
||||||
"DropShadowColor": {
|
|
||||||
"r": 0,
|
|
||||||
"g": 0,
|
|
||||||
"b": 0,
|
|
||||||
"a": 0.72
|
|
||||||
},
|
|
||||||
"DropShadowDistance": 32,
|
|
||||||
"FillAmount": 1,
|
|
||||||
"FillCenter": true,
|
|
||||||
"FillClockWise": true,
|
|
||||||
"FillMethod": 0,
|
|
||||||
"FillOrigin": 0,
|
|
||||||
"FlipX": false,
|
|
||||||
"FlipY": false,
|
|
||||||
"FrameColumn": 1,
|
|
||||||
"FrameRate": 0,
|
|
||||||
"FrameRow": 1,
|
|
||||||
"Outline": false,
|
|
||||||
"OutlineColor": {
|
|
||||||
"r": 0,
|
|
||||||
"g": 0,
|
|
||||||
"b": 0,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"OutlineWidth": 3,
|
|
||||||
"RaycastTarget": true,
|
|
||||||
"Type": 1,
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.ButtonComponent",
|
|
||||||
"Colors": {
|
|
||||||
"NormalColor": {
|
|
||||||
"r": 1,
|
|
||||||
"g": 1,
|
|
||||||
"b": 1,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"HighlightedColor": {
|
|
||||||
"r": 0.9607843,
|
|
||||||
"g": 0.9607843,
|
|
||||||
"b": 0.9607843,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"PressedColor": {
|
|
||||||
"r": 0.784313738,
|
|
||||||
"g": 0.784313738,
|
|
||||||
"b": 0.784313738,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"SelectedColor": {
|
|
||||||
"r": 0.9607843,
|
|
||||||
"g": 0.9607843,
|
|
||||||
"b": 0.9607843,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"DisabledColor": {
|
|
||||||
"r": 0.784313738,
|
|
||||||
"g": 0.784313738,
|
|
||||||
"b": 0.784313738,
|
|
||||||
"a": 0.5019608
|
|
||||||
},
|
|
||||||
"ColorMultiplier": 1,
|
|
||||||
"FadeDuration": 0.1
|
|
||||||
},
|
|
||||||
"ImageRUIDs": {
|
|
||||||
"HighlightedSprite": null,
|
|
||||||
"PressedSprite": null,
|
|
||||||
"SelectedSprite": null,
|
|
||||||
"DisabledSprite": null
|
|
||||||
},
|
|
||||||
"KeyCode": 0,
|
|
||||||
"OverrideSorting": false,
|
|
||||||
"Transition": 1,
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.TextComponent",
|
|
||||||
"Alignment": 0,
|
|
||||||
"Bold": true,
|
|
||||||
"DropShadow": false,
|
|
||||||
"DropShadowAngle": 30,
|
|
||||||
"DropShadowColor": {
|
|
||||||
"r": 0,
|
|
||||||
"g": 0,
|
|
||||||
"b": 0,
|
|
||||||
"a": 0.72
|
|
||||||
},
|
|
||||||
"DropShadowDistance": 32,
|
|
||||||
"Font": 0,
|
|
||||||
"FontColor": {
|
|
||||||
"r": 0.94,
|
|
||||||
"g": 0.74,
|
|
||||||
"b": 0.26,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"FontSize": 20,
|
|
||||||
"MaxSize": 20,
|
|
||||||
"MinSize": 8,
|
|
||||||
"OutlineColor": {
|
|
||||||
"r": 0.08,
|
|
||||||
"g": 0.08,
|
|
||||||
"b": 0.08,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"OutlineDistance": {
|
|
||||||
"x": 1,
|
|
||||||
"y": -1
|
|
||||||
},
|
|
||||||
"OutlineWidth": 1,
|
|
||||||
"Overflow": 0,
|
|
||||||
"OverrideSorting": false,
|
|
||||||
"Padding": {
|
|
||||||
"left": 0,
|
|
||||||
"right": 0,
|
|
||||||
"top": 0,
|
|
||||||
"bottom": 0
|
|
||||||
},
|
|
||||||
"SizeFit": false,
|
|
||||||
"Text": "덱 보기",
|
|
||||||
"UseOutLine": true,
|
|
||||||
"Enable": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"@version": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"id": "0e00006f-0000-4000-8000-00000e00006f",
|
"id": "0e00006f-0000-4000-8000-00000e00006f",
|
||||||
"path": "/ui/DefaultGroup/CharacterSelectHud/ThiefButton",
|
"path": "/ui/DefaultGroup/CharacterSelectHud/ThiefButton",
|
||||||
@@ -238144,241 +237909,6 @@
|
|||||||
"@version": 1
|
"@version": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"id": "0e0000ab-0000-4000-8000-00000e0000ab",
|
|
||||||
"path": "/ui/DefaultGroup/CharacterSelectHud/ThiefDeckButton",
|
|
||||||
"componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.ButtonComponent,MOD.Core.TextComponent",
|
|
||||||
"jsonString": {
|
|
||||||
"name": "ThiefDeckButton",
|
|
||||||
"path": "/ui/DefaultGroup/CharacterSelectHud/ThiefDeckButton",
|
|
||||||
"nameEditable": true,
|
|
||||||
"enable": true,
|
|
||||||
"visible": true,
|
|
||||||
"localize": true,
|
|
||||||
"displayOrder": 19,
|
|
||||||
"pathConstraints": "////",
|
|
||||||
"revision": 1,
|
|
||||||
"origin": {
|
|
||||||
"type": "Model",
|
|
||||||
"entry_id": "UIButton",
|
|
||||||
"sub_entity_id": null,
|
|
||||||
"root_entity_id": null,
|
|
||||||
"replaced_model_id": null
|
|
||||||
},
|
|
||||||
"modelId": "uibutton",
|
|
||||||
"@components": [
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.UITransformComponent",
|
|
||||||
"ActivePlatform": 255,
|
|
||||||
"AlignmentOption": 0,
|
|
||||||
"AnchorsMax": {
|
|
||||||
"x": 0.5,
|
|
||||||
"y": 0.5
|
|
||||||
},
|
|
||||||
"AnchorsMin": {
|
|
||||||
"x": 0.5,
|
|
||||||
"y": 0.5
|
|
||||||
},
|
|
||||||
"MobileOnly": false,
|
|
||||||
"OffsetMax": {
|
|
||||||
"x": 80,
|
|
||||||
"y": -137
|
|
||||||
},
|
|
||||||
"OffsetMin": {
|
|
||||||
"x": -80,
|
|
||||||
"y": -183
|
|
||||||
},
|
|
||||||
"Pivot": {
|
|
||||||
"x": 0.5,
|
|
||||||
"y": 0.5
|
|
||||||
},
|
|
||||||
"RectSize": {
|
|
||||||
"x": 160,
|
|
||||||
"y": 46
|
|
||||||
},
|
|
||||||
"UIMode": 1,
|
|
||||||
"UIScale": {
|
|
||||||
"x": 1,
|
|
||||||
"y": 1,
|
|
||||||
"z": 1
|
|
||||||
},
|
|
||||||
"UIVersion": 2,
|
|
||||||
"anchoredPosition": {
|
|
||||||
"x": 0,
|
|
||||||
"y": -160
|
|
||||||
},
|
|
||||||
"Position": {
|
|
||||||
"x": 0,
|
|
||||||
"y": -160,
|
|
||||||
"z": 0
|
|
||||||
},
|
|
||||||
"QuaternionRotation": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0,
|
|
||||||
"z": 0,
|
|
||||||
"w": 1
|
|
||||||
},
|
|
||||||
"Scale": {
|
|
||||||
"x": 1,
|
|
||||||
"y": 1,
|
|
||||||
"z": 1
|
|
||||||
},
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.SpriteGUIRendererComponent",
|
|
||||||
"AnimClipPlayType": 0,
|
|
||||||
"EndFrameIndex": 2147483647,
|
|
||||||
"ImageRUID": {
|
|
||||||
"DataId": ""
|
|
||||||
},
|
|
||||||
"LocalPosition": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"LocalScale": {
|
|
||||||
"x": 1,
|
|
||||||
"y": 1
|
|
||||||
},
|
|
||||||
"OverrideSorting": false,
|
|
||||||
"PlayRate": 1,
|
|
||||||
"PreserveSprite": 0,
|
|
||||||
"StartFrameIndex": 0,
|
|
||||||
"Color": {
|
|
||||||
"r": 0.11,
|
|
||||||
"g": 0.13,
|
|
||||||
"b": 0.16,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"DropShadow": false,
|
|
||||||
"DropShadowAngle": 30,
|
|
||||||
"DropShadowColor": {
|
|
||||||
"r": 0,
|
|
||||||
"g": 0,
|
|
||||||
"b": 0,
|
|
||||||
"a": 0.72
|
|
||||||
},
|
|
||||||
"DropShadowDistance": 32,
|
|
||||||
"FillAmount": 1,
|
|
||||||
"FillCenter": true,
|
|
||||||
"FillClockWise": true,
|
|
||||||
"FillMethod": 0,
|
|
||||||
"FillOrigin": 0,
|
|
||||||
"FlipX": false,
|
|
||||||
"FlipY": false,
|
|
||||||
"FrameColumn": 1,
|
|
||||||
"FrameRate": 0,
|
|
||||||
"FrameRow": 1,
|
|
||||||
"Outline": false,
|
|
||||||
"OutlineColor": {
|
|
||||||
"r": 0,
|
|
||||||
"g": 0,
|
|
||||||
"b": 0,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"OutlineWidth": 3,
|
|
||||||
"RaycastTarget": true,
|
|
||||||
"Type": 1,
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.ButtonComponent",
|
|
||||||
"Colors": {
|
|
||||||
"NormalColor": {
|
|
||||||
"r": 1,
|
|
||||||
"g": 1,
|
|
||||||
"b": 1,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"HighlightedColor": {
|
|
||||||
"r": 0.9607843,
|
|
||||||
"g": 0.9607843,
|
|
||||||
"b": 0.9607843,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"PressedColor": {
|
|
||||||
"r": 0.784313738,
|
|
||||||
"g": 0.784313738,
|
|
||||||
"b": 0.784313738,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"SelectedColor": {
|
|
||||||
"r": 0.9607843,
|
|
||||||
"g": 0.9607843,
|
|
||||||
"b": 0.9607843,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"DisabledColor": {
|
|
||||||
"r": 0.784313738,
|
|
||||||
"g": 0.784313738,
|
|
||||||
"b": 0.784313738,
|
|
||||||
"a": 0.5019608
|
|
||||||
},
|
|
||||||
"ColorMultiplier": 1,
|
|
||||||
"FadeDuration": 0.1
|
|
||||||
},
|
|
||||||
"ImageRUIDs": {
|
|
||||||
"HighlightedSprite": null,
|
|
||||||
"PressedSprite": null,
|
|
||||||
"SelectedSprite": null,
|
|
||||||
"DisabledSprite": null
|
|
||||||
},
|
|
||||||
"KeyCode": 0,
|
|
||||||
"OverrideSorting": false,
|
|
||||||
"Transition": 1,
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.TextComponent",
|
|
||||||
"Alignment": 0,
|
|
||||||
"Bold": true,
|
|
||||||
"DropShadow": false,
|
|
||||||
"DropShadowAngle": 30,
|
|
||||||
"DropShadowColor": {
|
|
||||||
"r": 0,
|
|
||||||
"g": 0,
|
|
||||||
"b": 0,
|
|
||||||
"a": 0.72
|
|
||||||
},
|
|
||||||
"DropShadowDistance": 32,
|
|
||||||
"Font": 0,
|
|
||||||
"FontColor": {
|
|
||||||
"r": 0.94,
|
|
||||||
"g": 0.74,
|
|
||||||
"b": 0.26,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"FontSize": 20,
|
|
||||||
"MaxSize": 20,
|
|
||||||
"MinSize": 8,
|
|
||||||
"OutlineColor": {
|
|
||||||
"r": 0.08,
|
|
||||||
"g": 0.08,
|
|
||||||
"b": 0.08,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"OutlineDistance": {
|
|
||||||
"x": 1,
|
|
||||||
"y": -1
|
|
||||||
},
|
|
||||||
"OutlineWidth": 1,
|
|
||||||
"Overflow": 0,
|
|
||||||
"OverrideSorting": false,
|
|
||||||
"Padding": {
|
|
||||||
"left": 0,
|
|
||||||
"right": 0,
|
|
||||||
"top": 0,
|
|
||||||
"bottom": 0
|
|
||||||
},
|
|
||||||
"SizeFit": false,
|
|
||||||
"Text": "덱 보기",
|
|
||||||
"UseOutLine": true,
|
|
||||||
"Enable": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"@version": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"id": "0e000070-0000-4000-8000-00000e000070",
|
"id": "0e000070-0000-4000-8000-00000e000070",
|
||||||
"path": "/ui/DefaultGroup/CharacterSelectHud/MageButton",
|
"path": "/ui/DefaultGroup/CharacterSelectHud/MageButton",
|
||||||
@@ -239037,241 +238567,6 @@
|
|||||||
"@version": 1
|
"@version": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"id": "0e0000ac-0000-4000-8000-00000e0000ac",
|
|
||||||
"path": "/ui/DefaultGroup/CharacterSelectHud/MageDeckButton",
|
|
||||||
"componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.ButtonComponent,MOD.Core.TextComponent",
|
|
||||||
"jsonString": {
|
|
||||||
"name": "MageDeckButton",
|
|
||||||
"path": "/ui/DefaultGroup/CharacterSelectHud/MageDeckButton",
|
|
||||||
"nameEditable": true,
|
|
||||||
"enable": true,
|
|
||||||
"visible": true,
|
|
||||||
"localize": true,
|
|
||||||
"displayOrder": 20,
|
|
||||||
"pathConstraints": "////",
|
|
||||||
"revision": 1,
|
|
||||||
"origin": {
|
|
||||||
"type": "Model",
|
|
||||||
"entry_id": "UIButton",
|
|
||||||
"sub_entity_id": null,
|
|
||||||
"root_entity_id": null,
|
|
||||||
"replaced_model_id": null
|
|
||||||
},
|
|
||||||
"modelId": "uibutton",
|
|
||||||
"@components": [
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.UITransformComponent",
|
|
||||||
"ActivePlatform": 255,
|
|
||||||
"AlignmentOption": 0,
|
|
||||||
"AnchorsMax": {
|
|
||||||
"x": 0.5,
|
|
||||||
"y": 0.5
|
|
||||||
},
|
|
||||||
"AnchorsMin": {
|
|
||||||
"x": 0.5,
|
|
||||||
"y": 0.5
|
|
||||||
},
|
|
||||||
"MobileOnly": false,
|
|
||||||
"OffsetMax": {
|
|
||||||
"x": 440,
|
|
||||||
"y": -137
|
|
||||||
},
|
|
||||||
"OffsetMin": {
|
|
||||||
"x": 280,
|
|
||||||
"y": -183
|
|
||||||
},
|
|
||||||
"Pivot": {
|
|
||||||
"x": 0.5,
|
|
||||||
"y": 0.5
|
|
||||||
},
|
|
||||||
"RectSize": {
|
|
||||||
"x": 160,
|
|
||||||
"y": 46
|
|
||||||
},
|
|
||||||
"UIMode": 1,
|
|
||||||
"UIScale": {
|
|
||||||
"x": 1,
|
|
||||||
"y": 1,
|
|
||||||
"z": 1
|
|
||||||
},
|
|
||||||
"UIVersion": 2,
|
|
||||||
"anchoredPosition": {
|
|
||||||
"x": 360,
|
|
||||||
"y": -160
|
|
||||||
},
|
|
||||||
"Position": {
|
|
||||||
"x": 360,
|
|
||||||
"y": -160,
|
|
||||||
"z": 0
|
|
||||||
},
|
|
||||||
"QuaternionRotation": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0,
|
|
||||||
"z": 0,
|
|
||||||
"w": 1
|
|
||||||
},
|
|
||||||
"Scale": {
|
|
||||||
"x": 1,
|
|
||||||
"y": 1,
|
|
||||||
"z": 1
|
|
||||||
},
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.SpriteGUIRendererComponent",
|
|
||||||
"AnimClipPlayType": 0,
|
|
||||||
"EndFrameIndex": 2147483647,
|
|
||||||
"ImageRUID": {
|
|
||||||
"DataId": ""
|
|
||||||
},
|
|
||||||
"LocalPosition": {
|
|
||||||
"x": 0,
|
|
||||||
"y": 0
|
|
||||||
},
|
|
||||||
"LocalScale": {
|
|
||||||
"x": 1,
|
|
||||||
"y": 1
|
|
||||||
},
|
|
||||||
"OverrideSorting": false,
|
|
||||||
"PlayRate": 1,
|
|
||||||
"PreserveSprite": 0,
|
|
||||||
"StartFrameIndex": 0,
|
|
||||||
"Color": {
|
|
||||||
"r": 0.11,
|
|
||||||
"g": 0.13,
|
|
||||||
"b": 0.16,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"DropShadow": false,
|
|
||||||
"DropShadowAngle": 30,
|
|
||||||
"DropShadowColor": {
|
|
||||||
"r": 0,
|
|
||||||
"g": 0,
|
|
||||||
"b": 0,
|
|
||||||
"a": 0.72
|
|
||||||
},
|
|
||||||
"DropShadowDistance": 32,
|
|
||||||
"FillAmount": 1,
|
|
||||||
"FillCenter": true,
|
|
||||||
"FillClockWise": true,
|
|
||||||
"FillMethod": 0,
|
|
||||||
"FillOrigin": 0,
|
|
||||||
"FlipX": false,
|
|
||||||
"FlipY": false,
|
|
||||||
"FrameColumn": 1,
|
|
||||||
"FrameRate": 0,
|
|
||||||
"FrameRow": 1,
|
|
||||||
"Outline": false,
|
|
||||||
"OutlineColor": {
|
|
||||||
"r": 0,
|
|
||||||
"g": 0,
|
|
||||||
"b": 0,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"OutlineWidth": 3,
|
|
||||||
"RaycastTarget": true,
|
|
||||||
"Type": 1,
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.ButtonComponent",
|
|
||||||
"Colors": {
|
|
||||||
"NormalColor": {
|
|
||||||
"r": 1,
|
|
||||||
"g": 1,
|
|
||||||
"b": 1,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"HighlightedColor": {
|
|
||||||
"r": 0.9607843,
|
|
||||||
"g": 0.9607843,
|
|
||||||
"b": 0.9607843,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"PressedColor": {
|
|
||||||
"r": 0.784313738,
|
|
||||||
"g": 0.784313738,
|
|
||||||
"b": 0.784313738,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"SelectedColor": {
|
|
||||||
"r": 0.9607843,
|
|
||||||
"g": 0.9607843,
|
|
||||||
"b": 0.9607843,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"DisabledColor": {
|
|
||||||
"r": 0.784313738,
|
|
||||||
"g": 0.784313738,
|
|
||||||
"b": 0.784313738,
|
|
||||||
"a": 0.5019608
|
|
||||||
},
|
|
||||||
"ColorMultiplier": 1,
|
|
||||||
"FadeDuration": 0.1
|
|
||||||
},
|
|
||||||
"ImageRUIDs": {
|
|
||||||
"HighlightedSprite": null,
|
|
||||||
"PressedSprite": null,
|
|
||||||
"SelectedSprite": null,
|
|
||||||
"DisabledSprite": null
|
|
||||||
},
|
|
||||||
"KeyCode": 0,
|
|
||||||
"OverrideSorting": false,
|
|
||||||
"Transition": 1,
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "MOD.Core.TextComponent",
|
|
||||||
"Alignment": 0,
|
|
||||||
"Bold": true,
|
|
||||||
"DropShadow": false,
|
|
||||||
"DropShadowAngle": 30,
|
|
||||||
"DropShadowColor": {
|
|
||||||
"r": 0,
|
|
||||||
"g": 0,
|
|
||||||
"b": 0,
|
|
||||||
"a": 0.72
|
|
||||||
},
|
|
||||||
"DropShadowDistance": 32,
|
|
||||||
"Font": 0,
|
|
||||||
"FontColor": {
|
|
||||||
"r": 0.94,
|
|
||||||
"g": 0.74,
|
|
||||||
"b": 0.26,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"FontSize": 20,
|
|
||||||
"MaxSize": 20,
|
|
||||||
"MinSize": 8,
|
|
||||||
"OutlineColor": {
|
|
||||||
"r": 0.08,
|
|
||||||
"g": 0.08,
|
|
||||||
"b": 0.08,
|
|
||||||
"a": 1
|
|
||||||
},
|
|
||||||
"OutlineDistance": {
|
|
||||||
"x": 1,
|
|
||||||
"y": -1
|
|
||||||
},
|
|
||||||
"OutlineWidth": 1,
|
|
||||||
"Overflow": 0,
|
|
||||||
"OverrideSorting": false,
|
|
||||||
"Padding": {
|
|
||||||
"left": 0,
|
|
||||||
"right": 0,
|
|
||||||
"top": 0,
|
|
||||||
"bottom": 0
|
|
||||||
},
|
|
||||||
"SizeFit": false,
|
|
||||||
"Text": "덱 보기",
|
|
||||||
"UseOutLine": true,
|
|
||||||
"Enable": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"@version": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"id": "0e0000b4-0000-4000-8000-00000e0000b4",
|
"id": "0e0000b4-0000-4000-8000-00000e0000b4",
|
||||||
"path": "/ui/DefaultGroup/CharacterSelectHud/StartButton",
|
"path": "/ui/DefaultGroup/CharacterSelectHud/StartButton",
|
||||||
|
|||||||
Reference in New Issue
Block a user