diff --git a/Global/common.gamelogic b/Global/common.gamelogic index f0f19e8..ddd599c 100644 --- a/Global/common.gamelogic +++ b/Global/common.gamelogic @@ -32,10 +32,10 @@ { "@type": "script.SlayDeckController", "Enable": true, - "Energy": 0.0, - "MaxEnergy": 3.0, - "Turn": 0.0, - "TweenEventId": 0.0 + "Energy": 0, + "MaxEnergy": 3, + "Turn": 0, + "TweenEventId": 0 } ], "@version": 1 diff --git a/RootDesk/MyDesk/SlayDeckController.codeblock b/RootDesk/MyDesk/SlayDeckController.codeblock index 008b241..d760939 100644 --- a/RootDesk/MyDesk/SlayDeckController.codeblock +++ b/RootDesk/MyDesk/SlayDeckController.codeblock @@ -120,34 +120,6 @@ "Attributes": [], "Name": "PlayerBlock" }, - { - "Type": "number", - "DefaultValue": "0", - "SyncDirection": 0, - "Attributes": [], - "Name": "EnemyHp" - }, - { - "Type": "number", - "DefaultValue": "45", - "SyncDirection": 0, - "Attributes": [], - "Name": "EnemyMaxHp" - }, - { - "Type": "number", - "DefaultValue": "0", - "SyncDirection": 0, - "Attributes": [], - "Name": "EnemyBlock" - }, - { - "Type": "number", - "DefaultValue": "1", - "SyncDirection": 0, - "Attributes": [], - "Name": "EnemyIntentIndex" - }, { "Type": "boolean", "DefaultValue": "false", @@ -160,14 +132,28 @@ "DefaultValue": "nil", "SyncDirection": 0, "Attributes": [], - "Name": "EnemyIntents" + "Name": "Monsters" }, { "Type": "any", "DefaultValue": "nil", "SyncDirection": 0, "Attributes": [], - "Name": "EnemyName" + "Name": "Registered" + }, + { + "Type": "number", + "DefaultValue": "1", + "SyncDirection": 0, + "Attributes": [], + "Name": "TargetIndex" + }, + { + "Type": "any", + "DefaultValue": "nil", + "SyncDirection": 0, + "Attributes": [], + "Name": "SlotPos" }, { "Type": "any", @@ -396,7 +382,7 @@ "Name": null }, "Arguments": [], - "Code": "self.PlayerMaxHp = 80\nself.PlayerHp = self.PlayerMaxHp\nself.Gold = 0\nself.Floor = 1\nself.RunLength = 3\nself.RunDeck = { \"Strike\", \"Strike\", \"Strike\", \"Strike\", \"Strike\", \"Defend\", \"Defend\", \"Defend\", \"Defend\", \"Bash\" }\nself.RunActive = true\nself.RunRelics = {}\nself.Relics = {\n\tironHeart = { name = \"강철 심장\", desc = \"전투 시작 시 방어도 +6\", hook = \"combatStart\", effect = \"block\", value = 6 },\n\tenergyCore = { name = \"에너지 코어\", desc = \"턴 시작 시 에너지 +1\", hook = \"turnStart\", effect = \"energy\", value = 1 },\n\tvampire = { name = \"흡혈 송곳니\", desc = \"공격 카드 사용 시 HP +1\", hook = \"cardPlayed\", effect = \"healOnAttack\", value = 1 },\n\tgoldIdol = { name = \"황금 우상\", desc = \"전투 승리 시 골드 +10\", hook = \"combatReward\", effect = \"gold\", value = 10 },\n}\nself.RelicPool = { \"energyCore\", \"vampire\", \"goldIdol\" }\nself.Enemies = {\n\tslime = { name = \"슬라임\", maxHp = 45, intents = { { kind = \"Attack\", value = 10 }, { kind = \"Attack\", value = 6 }, { kind = \"Defend\", value = 8 } } },\n\tslime_elite = { name = \"정예 슬라임\", maxHp = 70, intents = { { kind = \"Attack\", value = 14 }, { kind = \"Attack\", value = 8 }, { kind = \"Defend\", value = 10 } } },\n\tslime_boss = { name = \"슬라임 킹\", maxHp = 120, intents = { { kind = \"Attack\", value = 18 }, { kind = \"Defend\", value = 12 }, { kind = \"Attack\", value = 10 }, { kind = \"Attack\", value = 22 } } },\n}\nself.MapNodes = {\n\tA = { type = \"combat\", enemy = \"slime\", row = 1, col = -1, next = { \"C\", \"D\" } },\n\tB = { type = \"combat\", enemy = \"slime\", row = 1, col = 1, next = { \"C\", \"D\" } },\n\tC = { type = \"rest\", row = 2, col = -1, next = { \"E\", \"F\" } },\n\tD = { type = \"shop\", row = 2, col = 1, next = { \"E\", \"F\" } },\n\tE = { type = \"elite\", enemy = \"slime_elite\", row = 3, col = -1, next = { \"BOSS\" } },\n\tF = { type = \"combat\", enemy = \"slime\", row = 3, col = 1, next = { \"BOSS\" } },\n\tBOSS = { type = \"boss\", enemy = \"slime_boss\", row = 4, col = 0, next = { } },\n}\nself.MapStart = { \"A\", \"B\" }\nself.CurrentNodeId = \"\"\nself.CurrentEnemyId = \"\"\nself:BindButtons()\nself:AddRelic(\"ironHeart\")\nself:ShowMap()", + "Code": "self.PlayerMaxHp = 80\nself.PlayerHp = self.PlayerMaxHp\nself.Gold = 0\nself.Floor = 1\nself.RunLength = 3\nself.RunDeck = { \"Strike\", \"Strike\", \"Strike\", \"Strike\", \"Strike\", \"Defend\", \"Defend\", \"Defend\", \"Defend\", \"Bash\" }\nself.RunActive = true\nself.RunRelics = {}\nself.Relics = {\n\tironHeart = { name = \"강철 심장\", desc = \"전투 시작 시 방어도 +6\", hook = \"combatStart\", effect = \"block\", value = 6 },\n\tenergyCore = { name = \"에너지 코어\", desc = \"턴 시작 시 에너지 +1\", hook = \"turnStart\", effect = \"energy\", value = 1 },\n\tvampire = { name = \"흡혈 송곳니\", desc = \"공격 카드 사용 시 HP +1\", hook = \"cardPlayed\", effect = \"healOnAttack\", value = 1 },\n\tgoldIdol = { name = \"황금 우상\", desc = \"전투 승리 시 골드 +10\", hook = \"combatReward\", effect = \"gold\", value = 10 },\n}\nself.RelicPool = { \"energyCore\", \"vampire\", \"goldIdol\" }\nself.Enemies = {\n\tslime = { name = \"슬라임\", maxHp = 45, intents = { { kind = \"Attack\", value = 10 }, { kind = \"Attack\", value = 6 }, { kind = \"Defend\", value = 8 } } },\n\tslime_elite = { name = \"정예 슬라임\", maxHp = 70, intents = { { kind = \"Attack\", value = 14 }, { kind = \"Attack\", value = 8 }, { kind = \"Defend\", value = 10 } } },\n\tslime_boss = { name = \"슬라임 킹\", maxHp = 120, intents = { { kind = \"Attack\", value = 18 }, { kind = \"Defend\", value = 12 }, { kind = \"Attack\", value = 10 }, { kind = \"Attack\", value = 22 } } },\n\torange_mushroom = { name = \"주황버섯\", maxHp = 16, intents = { { kind = \"Attack\", value = 5 }, { kind = \"Defend\", value = 4 }, { kind = \"Attack\", value = 7 } } },\n\tblue_mushroom = { name = \"파란버섯\", maxHp = 22, intents = { { kind = \"Attack\", value = 8 }, { kind = \"Attack\", value = 4 } } },\n}\nself.MapNodes = {\n\tA = { type = \"combat\", enemy = \"slime\", row = 1, col = -1, next = { \"C\", \"D\" } },\n\tB = { type = \"combat\", enemy = \"slime\", row = 1, col = 1, next = { \"C\", \"D\" } },\n\tC = { type = \"rest\", row = 2, col = -1, next = { \"E\", \"F\" } },\n\tD = { type = \"shop\", row = 2, col = 1, next = { \"E\", \"F\" } },\n\tE = { type = \"elite\", enemy = \"slime_elite\", row = 3, col = -1, next = { \"BOSS\" } },\n\tF = { type = \"combat\", enemy = \"slime\", row = 3, col = 1, next = { \"BOSS\" } },\n\tBOSS = { type = \"boss\", enemy = \"slime_boss\", row = 4, col = 0, next = { } },\n}\nself.MapStart = { \"A\", \"B\" }\nself.SlotPos = { { x = -480, y = 300 }, { x = -160, y = 300 }, { x = 160, y = 300 }, { x = 480, y = 300 } }\nself.CurrentNodeId = \"\"\nself.CurrentEnemyId = \"\"\nself:BindButtons()\nself:AddRelic(\"ironHeart\")\nself:ShowMap()", "Scope": 2, "ExecSpace": 6, "Attributes": [], @@ -411,12 +397,80 @@ "Name": null }, "Arguments": [], - "Code": "self.MaxEnergy = 3\nself.Turn = 0\nlocal enemy = self.Enemies[self.CurrentEnemyId]\nlocal mult = 1 + (self.Floor - 1) * 0.6\nself.PlayerBlock = 0\nself.EnemyName = enemy.name\nself.EnemyMaxHp = math.floor(enemy.maxHp * mult)\nself.EnemyHp = self.EnemyMaxHp\nself.EnemyBlock = 0\nself.EnemyIntents = {}\nfor i = 1, #enemy.intents do\n\tself.EnemyIntents[i] = { kind = enemy.intents[i].kind, value = math.floor(enemy.intents[i].value * mult) }\nend\nself.EnemyIntentIndex = 1\nself.CombatOver = false\nself.DiscardPile = {}\nself.Hand = {}\nself.Cards = {\n\tStrike = { name = \"타격\", cost = 1, desc = \"피해 6\", kind = \"Attack\", damage = 6 },\n\tDefend = { name = \"방어\", cost = 1, desc = \"방어도 5\", kind = \"Skill\", block = 5 },\n\tBash = { name = \"강타\", cost = 2, desc = \"피해 10\", kind = \"Attack\", damage = 10 },\n}\nself.DrawPile = {}\nfor i = 1, #self.RunDeck do\n\tself.DrawPile[i] = self.RunDeck[i]\nend\nself:Shuffle(self.DrawPile)\nself:RenderCombat()\nself:StartPlayerTurn()\nself:ApplyRelics(\"combatStart\")\nself:RenderCombat()", + "Code": "self.MaxEnergy = 3\nself.Turn = 0\nself.PlayerBlock = 0\nself.CombatOver = false\nself.DiscardPile = {}\nself.Hand = {}\nself.Cards = {\n\tStrike = { name = \"타격\", cost = 1, desc = \"피해 6\", kind = \"Attack\", damage = 6 },\n\tDefend = { name = \"방어\", cost = 1, desc = \"방어도 5\", kind = \"Skill\", block = 5 },\n\tBash = { name = \"강타\", cost = 2, desc = \"피해 10\", kind = \"Attack\", damage = 10 },\n}\nself.DrawPile = {}\nfor i = 1, #self.RunDeck do\n\tself.DrawPile[i] = self.RunDeck[i]\nend\nself:Shuffle(self.DrawPile)\nself:BuildMonsters()\nself:RenderCombat()\nself:StartPlayerTurn()\nself:ApplyRelics(\"combatStart\")\nself:RenderCombat()", "Scope": 2, "ExecSpace": 6, "Attributes": [], "Name": "StartCombat" }, + { + "Return": { + "Type": "void", + "DefaultValue": null, + "SyncDirection": 0, + "Attributes": [], + "Name": null + }, + "Arguments": [ + { + "Type": "any", + "DefaultValue": null, + "SyncDirection": 0, + "Attributes": [], + "Name": "monster" + }, + { + "Type": "string", + "DefaultValue": null, + "SyncDirection": 0, + "Attributes": [], + "Name": "enemyId" + } + ], + "Code": "if self.Registered == nil then\n\tself.Registered = {}\nend\ntable.insert(self.Registered, { entity = monster, enemyId = enemyId })", + "Scope": 2, + "ExecSpace": 6, + "Attributes": [], + "Name": "RegisterMonster" + }, + { + "Return": { + "Type": "void", + "DefaultValue": null, + "SyncDirection": 0, + "Attributes": [], + "Name": null + }, + "Arguments": [], + "Code": "self.Monsters = {}\nlocal reg = self.Registered or {}\nlocal list = {}\nfor i = 1, #reg do\n\tlocal r = reg[i]\n\tif r.entity ~= nil and isvalid(r.entity) then\n\t\tlocal x = 0\n\t\tif r.entity.TransformComponent ~= nil then\n\t\t\tx = r.entity.TransformComponent.WorldPosition.x\n\t\tend\n\t\ttable.insert(list, { entity = r.entity, enemyId = r.enemyId, x = x })\n\tend\nend\ntable.sort(list, function(a, b) return a.x < b.x end)\nlocal mult = 1 + (self.Floor - 1) * 0.6\nlocal n = #list\nif n > 4 then n = 4 end\nfor i = 1, n do\n\tlocal item = list[i]\n\tlocal e = self.Enemies[item.enemyId]\n\tif e == nil then e = { name = item.enemyId, maxHp = 10, intents = { { kind = \"Attack\", value = 5 } } } end\n\tlocal intents = {}\n\tfor k = 1, #e.intents do\n\t\tintents[k] = { kind = e.intents[k].kind, value = math.floor(e.intents[k].value * mult) }\n\tend\n\tlocal maxHp = math.floor(e.maxHp * mult)\n\tself.Monsters[i] = { entity = item.entity, enemyId = item.enemyId, name = e.name,\n\t\thp = maxHp, maxHp = maxHp, block = 0, intents = intents, intentIdx = 1, alive = true, slot = i }\n\tself:ReviveMonsterEntity(item.entity)\n\tself:PositionMonsterSlot(i)\nend\nself.TargetIndex = 1", + "Scope": 2, + "ExecSpace": 6, + "Attributes": [], + "Name": "BuildMonsters" + }, + { + "Return": { + "Type": "void", + "DefaultValue": null, + "SyncDirection": 0, + "Attributes": [], + "Name": null + }, + "Arguments": [ + { + "Type": "any", + "DefaultValue": null, + "SyncDirection": 0, + "Attributes": [], + "Name": "monster" + } + ], + "Code": "if monster == nil or not isvalid(monster) then\n\treturn\nend\nmonster:SetEnable(true)\nmonster:SetVisible(true)\nif monster.StateComponent ~= nil then\n\tmonster.StateComponent:ChangeState(\"IDLE\")\nend", + "Scope": 2, + "ExecSpace": 6, + "Attributes": [], + "Name": "ReviveMonsterEntity" + }, { "Return": { "Type": "void", @@ -449,7 +503,7 @@ "Name": null }, "Arguments": [], - "Code": "local endTurn = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/DeckHud/EndTurnButton\")\nif endTurn ~= nil and endTurn.ButtonComponent ~= nil then\n\tif self.EndTurnHandler ~= nil then\n\t\tendTurn:DisconnectEvent(ButtonClickEvent, self.EndTurnHandler)\n\t\tself.EndTurnHandler = nil\n\tend\n\tself.EndTurnHandler = endTurn:ConnectEvent(ButtonClickEvent, function() self:EndPlayerTurn() end)\nend\nfor i = 1, 5 do\n\tlocal cardEntity = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/CardHand/Card\" .. tostring(i))\n\tif cardEntity ~= nil and cardEntity.ButtonComponent ~= nil then\n\t\tcardEntity:ConnectEvent(ButtonClickEvent, function() self:PlayCard(i) end)\n\tend\nend\nfor i = 1, 3 do\n\tlocal rc = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/RewardHud/Reward\" .. tostring(i))\n\tif rc ~= nil and rc.ButtonComponent ~= nil then\n\t\trc:ConnectEvent(ButtonClickEvent, function() self:PickReward(i) end)\n\tend\nend\nlocal skip = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/RewardHud/Skip\")\nif skip ~= nil and skip.ButtonComponent ~= nil then\n\tskip:ConnectEvent(ButtonClickEvent, function() self:PickReward(0) end)\nend\nlocal mapNodeIds = { \"A\", \"B\", \"C\", \"D\", \"E\", \"F\", \"BOSS\" }\nfor i = 1, #mapNodeIds do\n\tlocal nid = mapNodeIds[i]\n\tlocal mn = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/MapHud/Node_\" .. nid)\n\tif mn ~= nil and mn.ButtonComponent ~= nil then\n\t\tmn:ConnectEvent(ButtonClickEvent, function() self:PickNode(nid) end)\n\tend\nend\nfor i = 1, 3 do\n\tlocal sc = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/ShopHud/Card\" .. tostring(i))\n\tif sc ~= nil and sc.ButtonComponent ~= nil then\n\t\tsc:ConnectEvent(ButtonClickEvent, function() self:BuyCard(i) end)\n\tend\nend\nlocal shopLeave = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/ShopHud/Leave\")\nif shopLeave ~= nil and shopLeave.ButtonComponent ~= nil then\n\tshopLeave:ConnectEvent(ButtonClickEvent, function() self:LeaveNode() end)\nend\nlocal shopRelic = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/ShopHud/Relic\")\nif shopRelic ~= nil and shopRelic.ButtonComponent ~= nil then\n\tshopRelic:ConnectEvent(ButtonClickEvent, function() self:BuyRelic() end)\nend\nlocal restLeave = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/RestHud/Leave\")\nif restLeave ~= nil and restLeave.ButtonComponent ~= nil then\n\trestLeave:ConnectEvent(ButtonClickEvent, function() self:LeaveNode() end)\nend", + "Code": "local endTurn = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/DeckHud/EndTurnButton\")\nif endTurn ~= nil and endTurn.ButtonComponent ~= nil then\n\tif self.EndTurnHandler ~= nil then\n\t\tendTurn:DisconnectEvent(ButtonClickEvent, self.EndTurnHandler)\n\t\tself.EndTurnHandler = nil\n\tend\n\tself.EndTurnHandler = endTurn:ConnectEvent(ButtonClickEvent, function() self:EndPlayerTurn() end)\nend\nfor i = 1, 5 do\n\tlocal cardEntity = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/CardHand/Card\" .. tostring(i))\n\tif cardEntity ~= nil and cardEntity.ButtonComponent ~= nil then\n\t\tcardEntity:ConnectEvent(ButtonClickEvent, function() self:PlayCard(i) end)\n\tend\nend\nfor i = 1, 3 do\n\tlocal rc = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/RewardHud/Reward\" .. tostring(i))\n\tif rc ~= nil and rc.ButtonComponent ~= nil then\n\t\trc:ConnectEvent(ButtonClickEvent, function() self:PickReward(i) end)\n\tend\nend\nlocal skip = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/RewardHud/Skip\")\nif skip ~= nil and skip.ButtonComponent ~= nil then\n\tskip:ConnectEvent(ButtonClickEvent, function() self:PickReward(0) end)\nend\nlocal mapNodeIds = { \"A\", \"B\", \"C\", \"D\", \"E\", \"F\", \"BOSS\" }\nfor i = 1, #mapNodeIds do\n\tlocal nid = mapNodeIds[i]\n\tlocal mn = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/MapHud/Node_\" .. nid)\n\tif mn ~= nil and mn.ButtonComponent ~= nil then\n\t\tmn:ConnectEvent(ButtonClickEvent, function() self:PickNode(nid) end)\n\tend\nend\nfor i = 1, 3 do\n\tlocal sc = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/ShopHud/Card\" .. tostring(i))\n\tif sc ~= nil and sc.ButtonComponent ~= nil then\n\t\tsc:ConnectEvent(ButtonClickEvent, function() self:BuyCard(i) end)\n\tend\nend\nlocal shopLeave = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/ShopHud/Leave\")\nif shopLeave ~= nil and shopLeave.ButtonComponent ~= nil then\n\tshopLeave:ConnectEvent(ButtonClickEvent, function() self:LeaveNode() end)\nend\nlocal shopRelic = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/ShopHud/Relic\")\nif shopRelic ~= nil and shopRelic.ButtonComponent ~= nil then\n\tshopRelic:ConnectEvent(ButtonClickEvent, function() self:BuyRelic() end)\nend\nlocal restLeave = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/RestHud/Leave\")\nif restLeave ~= nil and restLeave.ButtonComponent ~= nil then\n\trestLeave:ConnectEvent(ButtonClickEvent, function() self:LeaveNode() end)\nend\nfor i = 1, 4 do\n\tlocal ms = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/CombatHud/MonsterSlot\" .. tostring(i))\n\tif ms ~= nil and ms.ButtonComponent ~= nil then\n\t\tms:ConnectEvent(ButtonClickEvent, function() self:SetTarget(i) end)\n\tend\nend", "Scope": 2, "ExecSpace": 6, "Attributes": [], @@ -682,7 +736,7 @@ "Name": "slot" } ], - "Code": "if self.CombatOver == true then\n\treturn\nend\nif self.Hand == nil then\n\treturn\nend\nlocal cardId = self.Hand[slot]\nif cardId == nil then\n\treturn\nend\nlocal c = self.Cards[cardId]\nif c == nil then\n\treturn\nend\nif self.Energy < c.cost then\n\tself:Toast(\"에너지가 부족합니다\")\n\treturn\nend\nself.Energy = self.Energy - c.cost\nif c.kind == \"Attack\" then\n\tif c.damage ~= nil then\n\t\tself:DealDamageToEnemy(c.damage)\n\tend\n\tself:ApplyRelics(\"cardPlayed\")\nelseif c.kind == \"Skill\" then\n\tif c.block ~= nil then\n\t\tself.PlayerBlock = self.PlayerBlock + c.block\n\tend\nend\ntable.remove(self.Hand, slot)\ntable.insert(self.DiscardPile, cardId)\nself:RenderHand(false)\nself:RenderPiles()\nself:RenderCombat()\nself:CheckCombatEnd()", + "Code": "if self.CombatOver == true then\n\treturn\nend\nif self.Hand == nil then\n\treturn\nend\nlocal cardId = self.Hand[slot]\nif cardId == nil then\n\treturn\nend\nlocal c = self.Cards[cardId]\nif c == nil then\n\treturn\nend\nif self.Energy < c.cost then\n\tself:Toast(\"에너지가 부족합니다\")\n\treturn\nend\nself.Energy = self.Energy - c.cost\nif c.kind == \"Attack\" then\n\tif c.damage ~= nil then\n\t\tself:DealDamageToTarget(c.damage)\n\tend\n\tself:ApplyRelics(\"cardPlayed\")\nelseif c.kind == \"Skill\" then\n\tif c.block ~= nil then\n\t\tself.PlayerBlock = self.PlayerBlock + c.block\n\tend\nend\ntable.remove(self.Hand, slot)\ntable.insert(self.DiscardPile, cardId)\nself:RenderHand(false)\nself:RenderPiles()\nself:RenderCombat()\nself:CheckCombatEnd()", "Scope": 2, "ExecSpace": 6, "Attributes": [], @@ -728,11 +782,34 @@ "Name": "amount" } ], - "Code": "local dmg = amount\nif self.EnemyBlock > 0 then\n\tlocal absorbed = math.min(self.EnemyBlock, dmg)\n\tself.EnemyBlock = self.EnemyBlock - absorbed\n\tdmg = dmg - absorbed\nend\nself.EnemyHp = self.EnemyHp - dmg\nif self.EnemyHp < 0 then\n\tself.EnemyHp = 0\nend", + "Code": "local m = self.Monsters[self.TargetIndex]\nif m == nil or m.alive ~= true then\n\tm = nil\n\tfor i = 1, #self.Monsters do\n\t\tif self.Monsters[i].alive == true then m = self.Monsters[i]; self.TargetIndex = i; break end\n\tend\nend\nif m == nil then\n\treturn\nend\nlocal dmg = amount\nif m.block > 0 then\n\tlocal absorbed = math.min(m.block, dmg)\n\tm.block = m.block - absorbed\n\tdmg = dmg - absorbed\nend\nm.hp = m.hp - dmg\nif m.hp <= 0 then\n\tm.hp = 0\n\tself:KillMonster(m.slot)\nend", "Scope": 2, "ExecSpace": 6, "Attributes": [], - "Name": "DealDamageToEnemy" + "Name": "DealDamageToTarget" + }, + { + "Return": { + "Type": "void", + "DefaultValue": null, + "SyncDirection": 0, + "Attributes": [], + "Name": null + }, + "Arguments": [ + { + "Type": "number", + "DefaultValue": null, + "SyncDirection": 0, + "Attributes": [], + "Name": "slot" + } + ], + "Code": "local m = self.Monsters[slot]\nif m == nil then\n\treturn\nend\nm.alive = false\nif m.entity ~= nil and isvalid(m.entity) then\n\tif m.entity.StateComponent ~= nil then\n\t\tm.entity.StateComponent:ChangeState(\"DEAD\")\n\tend\n\tlocal ent = m.entity\n\t_TimerService:SetTimerOnce(function() if isvalid(ent) then ent:SetVisible(false) end end, 0.6)\nend\nself:SetEntityEnabled(\"/ui/DefaultGroup/CombatHud/MonsterSlot\" .. tostring(slot), false)\nfor i = 1, #self.Monsters do\n\tif self.Monsters[i].alive == true then self.TargetIndex = i; break end\nend", + "Scope": 2, + "ExecSpace": 6, + "Attributes": [], + "Name": "KillMonster" }, { "Return": { @@ -766,7 +843,7 @@ "Name": null }, "Arguments": [], - "Code": "self.EnemyBlock = 0\nlocal intent = self.EnemyIntents[self.EnemyIntentIndex]\nif intent ~= nil then\n\tif intent.kind == \"Attack\" then\n\t\tself:DealDamageToPlayer(intent.value)\n\telseif intent.kind == \"Defend\" then\n\t\tself.EnemyBlock = self.EnemyBlock + intent.value\n\tend\nend\nself.EnemyIntentIndex = self.EnemyIntentIndex + 1\nif self.EnemyIntentIndex > #self.EnemyIntents then\n\tself.EnemyIntentIndex = 1\nend\nself:RenderCombat()", + "Code": "for i = 1, #self.Monsters do\n\tlocal m = self.Monsters[i]\n\tif m.alive == true then\n\t\tm.block = 0\n\t\tlocal intent = m.intents[m.intentIdx]\n\t\tif intent ~= nil then\n\t\t\tif intent.kind == \"Attack\" then\n\t\t\t\tself:DealDamageToPlayer(intent.value)\n\t\t\telseif intent.kind == \"Defend\" then\n\t\t\t\tm.block = m.block + intent.value\n\t\t\tend\n\t\tend\n\t\tm.intentIdx = m.intentIdx + 1\n\t\tif m.intentIdx > #m.intents then\n\t\t\tm.intentIdx = 1\n\t\tend\n\tend\nend\nself:RenderCombat()", "Scope": 2, "ExecSpace": 6, "Attributes": [], @@ -781,7 +858,7 @@ "Name": null }, "Arguments": [], - "Code": "if self.EnemyHp <= 0 then\n\tself.CombatOver = true\n\tself.Gold = self.Gold + 15\n\tself:ApplyRelics(\"combatReward\")\n\tself:RenderRun()\n\tlocal node = self.MapNodes[self.CurrentNodeId]\n\tif node ~= nil and node.type == \"elite\" then\n\t\tself:AddRelic(self.RelicPool[math.random(1, #self.RelicPool)])\n\tend\n\tif node ~= nil and node.type == \"boss\" then\n\t\tif self.Floor < self.RunLength then\n\t\t\tself.Floor = self.Floor + 1\n\t\t\tself.CurrentNodeId = \"\"\n\t\t\tself.CurrentEnemyId = \"\"\n\t\t\tself:RenderRun()\n\t\t\tself:ShowMap()\n\t\telse\n\t\t\tself:ShowResult(\"런 클리어!\")\n\t\t\tself.RunActive = false\n\t\tend\n\telse\n\t\tself:OfferReward()\n\tend\nelseif self.PlayerHp <= 0 then\n\tself.CombatOver = true\n\tself:ShowResult(\"패배...\")\n\tself.RunActive = false\nend", + "Code": "local anyAlive = false\nfor i = 1, #self.Monsters do\n\tif self.Monsters[i].alive == true then anyAlive = true; break end\nend\nif anyAlive == false then\n\tself.CombatOver = true\n\tself.Gold = self.Gold + 15\n\tself:ApplyRelics(\"combatReward\")\n\tself:RenderRun()\n\tlocal node = self.MapNodes[self.CurrentNodeId]\n\tif node ~= nil and node.type == \"elite\" then\n\t\tself:AddRelic(self.RelicPool[math.random(1, #self.RelicPool)])\n\tend\n\tif node ~= nil and node.type == \"boss\" then\n\t\tif self.Floor < self.RunLength then\n\t\t\tself.Floor = self.Floor + 1\n\t\t\tself.CurrentNodeId = \"\"\n\t\t\tself.CurrentEnemyId = \"\"\n\t\t\tself:RenderRun()\n\t\t\tself:ShowMap()\n\t\telse\n\t\t\tself:ShowResult(\"런 클리어!\")\n\t\t\tself.RunActive = false\n\t\tend\n\telse\n\t\tself:OfferReward()\n\tend\nelseif self.PlayerHp <= 0 then\n\tself.CombatOver = true\n\tself:ShowResult(\"패배...\")\n\tself.RunActive = false\nend", "Scope": 2, "ExecSpace": 6, "Attributes": [], @@ -819,12 +896,95 @@ "Name": null }, "Arguments": [], - "Code": "self:SetText(\"/ui/DefaultGroup/CombatHud/EnemyName\", self.EnemyName)\nself:SetText(\"/ui/DefaultGroup/CombatHud/EnemyHp\", \"HP \" .. string.format(\"%d\", self.EnemyHp) .. \"/\" .. string.format(\"%d\", self.EnemyMaxHp))\nself:SetText(\"/ui/DefaultGroup/CombatHud/EnemyBlock\", \"방어 \" .. string.format(\"%d\", self.EnemyBlock))\nlocal intent = self.EnemyIntents[self.EnemyIntentIndex]\nlocal intentText = \"\"\nif intent ~= nil then\n\tif intent.kind == \"Attack\" then\n\t\tintentText = \"의도: 공격 \" .. tostring(intent.value)\n\telseif intent.kind == \"Defend\" then\n\t\tintentText = \"의도: 방어 \" .. tostring(intent.value)\n\tend\nend\nself:SetText(\"/ui/DefaultGroup/CombatHud/EnemyIntent\", intentText)\nself:SetText(\"/ui/DefaultGroup/CombatHud/PlayerHp\", \"HP \" .. string.format(\"%d\", self.PlayerHp) .. \"/\" .. string.format(\"%d\", self.PlayerMaxHp))\nself:SetText(\"/ui/DefaultGroup/CombatHud/PlayerBlock\", \"방어 \" .. string.format(\"%d\", self.PlayerBlock))\nself:RenderRun()", + "Code": "for i = 1, 4 do\n\tlocal base = \"/ui/DefaultGroup/CombatHud/MonsterSlot\" .. tostring(i)\n\tlocal m = self.Monsters[i]\n\tif m ~= nil and m.alive == true then\n\t\tself:SetEntityEnabled(base, true)\n\t\tself:SetText(base .. \"/Name\", m.name)\n\t\tself:SetText(base .. \"/Hp\", string.format(\"%d\", m.hp) .. \"/\" .. string.format(\"%d\", m.maxHp))\n\t\tlocal intent = m.intents[m.intentIdx]\n\t\tlocal t = \"\"\n\t\tif intent ~= nil then\n\t\t\tif intent.kind == \"Attack\" then t = \"공격 \" .. tostring(intent.value)\n\t\t\telseif intent.kind == \"Defend\" then t = \"방어 \" .. tostring(intent.value) end\n\t\tend\n\t\tif i == self.TargetIndex then t = \"[타겟] \" .. t end\n\t\tself:SetText(base .. \"/Intent\", t)\n\t\tself:SetHpBar(base .. \"/HpBarFill\", m.hp, m.maxHp)\n\telse\n\t\tself:SetEntityEnabled(base, false)\n\tend\nend\nself:SetText(\"/ui/DefaultGroup/CombatHud/PlayerHp\", \"HP \" .. string.format(\"%d\", self.PlayerHp) .. \"/\" .. string.format(\"%d\", self.PlayerMaxHp))\nself:SetText(\"/ui/DefaultGroup/CombatHud/PlayerBlock\", \"방어 \" .. string.format(\"%d\", self.PlayerBlock))\nself:RenderRun()", "Scope": 2, "ExecSpace": 6, "Attributes": [], "Name": "RenderCombat" }, + { + "Return": { + "Type": "void", + "DefaultValue": null, + "SyncDirection": 0, + "Attributes": [], + "Name": null + }, + "Arguments": [ + { + "Type": "string", + "DefaultValue": null, + "SyncDirection": 0, + "Attributes": [], + "Name": "path" + }, + { + "Type": "number", + "DefaultValue": null, + "SyncDirection": 0, + "Attributes": [], + "Name": "hp" + }, + { + "Type": "number", + "DefaultValue": null, + "SyncDirection": 0, + "Attributes": [], + "Name": "maxHp" + } + ], + "Code": "local e = _EntityService:GetEntityByPath(path)\nif e == nil or e.UITransformComponent == nil then\n\treturn\nend\nlocal ratio = 0\nif maxHp > 0 then ratio = hp / maxHp end\nif ratio < 0 then ratio = 0 end\nlocal w = 120 * ratio\ne.UITransformComponent.RectSize = Vector2(w, 14)", + "Scope": 2, + "ExecSpace": 6, + "Attributes": [], + "Name": "SetHpBar" + }, + { + "Return": { + "Type": "void", + "DefaultValue": null, + "SyncDirection": 0, + "Attributes": [], + "Name": null + }, + "Arguments": [ + { + "Type": "number", + "DefaultValue": null, + "SyncDirection": 0, + "Attributes": [], + "Name": "slot" + } + ], + "Code": "local sp = self.SlotPos\nif sp == nil or sp[slot] == nil then\n\treturn\nend\nlocal e = _EntityService:GetEntityByPath(\"/ui/DefaultGroup/CombatHud/MonsterSlot\" .. tostring(slot))\nif e ~= nil and e.UITransformComponent ~= nil then\n\te.UITransformComponent.anchoredPosition = Vector2(sp[slot].x, sp[slot].y)\nend", + "Scope": 2, + "ExecSpace": 6, + "Attributes": [], + "Name": "PositionMonsterSlot" + }, + { + "Return": { + "Type": "void", + "DefaultValue": null, + "SyncDirection": 0, + "Attributes": [], + "Name": null + }, + "Arguments": [ + { + "Type": "number", + "DefaultValue": null, + "SyncDirection": 0, + "Attributes": [], + "Name": "slot" + } + ], + "Code": "if self.Monsters[slot] ~= nil and self.Monsters[slot].alive == true then\n\tself.TargetIndex = slot\n\tself:RenderCombat()\nend", + "Scope": 2, + "ExecSpace": 6, + "Attributes": [], + "Name": "SetTarget" + }, { "Return": { "Type": "void", diff --git a/ui/DefaultGroup.ui b/ui/DefaultGroup.ui index 163eac4..abaa9e2 100644 --- a/ui/DefaultGroup.ui +++ b/ui/DefaultGroup.ui @@ -41,56 +41,56 @@ "ActivePlatform": 255, "AlignmentOption": 15, "AnchorsMax": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "AnchorsMin": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "MobileOnly": false, "OffsetMax": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "OffsetMin": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 1920.0, - "y": 1080.0 + "x": 1920, + "y": 1080 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -104,7 +104,7 @@ { "@type": "MOD.Core.CanvasGroupComponent", "BlocksRaycasts": true, - "GroupAlpha": 1.0, + "GroupAlpha": 1, "Interactable": true, "Enable": true } @@ -140,56 +140,56 @@ "ActivePlatform": 2, "AlignmentOption": 8, "AnchorsMax": { - "x": 1.0, - "y": 0.0 + "x": 1, + "y": 0 }, "AnchorsMin": { - "x": 1.0, - "y": 0.0 + "x": 1, + "y": 0 }, "MobileOnly": false, "OffsetMax": { "x": -72.8999939, - "y": 434.0 + "y": 434 }, "OffsetMin": { "x": -276.9, - "y": 230.0 + "y": 230 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 204.0, - "y": 204.0 + "x": 204, + "y": 204 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { "x": -174.9, - "y": 332.0 + "y": 332 }, "Position": { "x": 785.1, - "y": -208.0, - "z": 0.0 + "y": -208, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -201,33 +201,33 @@ "DataId": "cd0560c4fc7f3b14994b90a502f00a21" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -239,12 +239,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 0, "Enable": true @@ -253,28 +253,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -282,7 +282,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -337,11 +337,11 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 52.0, + "x": 52, "y": 53.5 }, "OffsetMin": { - "x": -56.0, + "x": -56, "y": -55.5 }, "Pivot": { @@ -349,35 +349,35 @@ "y": 0.5 }, "RectSize": { - "x": 108.0, - "y": 109.0 + "x": 108, + "y": 109 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -2.0, - "y": -1.0 + "x": -2, + "y": -1 }, "Position": { - "x": -2.0, - "y": -1.0, - "z": 0.0 + "x": -2, + "y": -1, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -389,33 +389,33 @@ "DataId": "cc55ed79f099cc94fae152e754984ddd" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -427,12 +427,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 0, "Enable": true @@ -469,20 +469,20 @@ "ActivePlatform": 2, "AlignmentOption": 8, "AnchorsMax": { - "x": 1.0, - "y": 0.0 + "x": 1, + "y": 0 }, "AnchorsMin": { - "x": 1.0, - "y": 0.0 + "x": 1, + "y": 0 }, "MobileOnly": false, "OffsetMax": { - "x": -290.0, + "x": -290, "y": 295.57 }, "OffsetMin": { - "x": -494.0, + "x": -494, "y": 91.57001 }, "Pivot": { @@ -490,35 +490,35 @@ "y": 0.5 }, "RectSize": { - "x": 204.0, - "y": 204.0 + "x": 204, + "y": 204 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -392.0, + "x": -392, "y": 193.57 }, "Position": { - "x": 568.0, + "x": 568, "y": -346.43, - "z": 0.0 + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -530,33 +530,33 @@ "DataId": "cd0560c4fc7f3b14994b90a502f00a21" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -568,12 +568,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 0, "Enable": true @@ -582,28 +582,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -611,7 +611,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -667,46 +667,46 @@ "MobileOnly": false, "OffsetMax": { "x": 71.5, - "y": 68.0 + "y": 68 }, "OffsetMin": { "x": -81.5, - "y": -66.0 + "y": -66 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 153.0, - "y": 134.0 + "x": 153, + "y": 134 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -5.0, - "y": 1.0 + "x": -5, + "y": 1 }, "Position": { - "x": -5.0, - "y": 1.0, - "z": 0.0 + "x": -5, + "y": 1, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -718,33 +718,33 @@ "DataId": "b44742a7c3de2604ba4999a54ae0b4ed" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -756,12 +756,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 0, "Enable": true @@ -798,20 +798,20 @@ "ActivePlatform": 2, "AlignmentOption": 7, "AnchorsMax": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "AnchorsMin": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "MobileOnly": false, "OffsetMax": { - "x": 410.0, + "x": 410, "y": 330.0001 }, "OffsetMin": { - "x": 210.0, + "x": 210, "y": 129.999908 }, "Pivot": { @@ -819,35 +819,35 @@ "y": 0.5 }, "RectSize": { - "x": 200.0, + "x": 200, "y": 200.0002 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 310.0, - "y": 230.0 + "x": 310, + "y": 230 }, "Position": { - "x": -650.0, - "y": -310.0, - "z": 0.0 + "x": -650, + "y": -310, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -859,33 +859,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -897,12 +897,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -945,12 +945,12 @@ "ActivePlatform": 255, "AlignmentOption": 4, "AnchorsMax": { - "x": 0.0, - "y": 1.0 + "x": 0, + "y": 1 }, "AnchorsMin": { - "x": 0.0, - "y": 1.0 + "x": 0, + "y": 1 }, "MobileOnly": false, "OffsetMax": { @@ -971,9 +971,9 @@ }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { @@ -983,18 +983,18 @@ "Position": { "x": -591.027466, "y": 288.1949, - "z": 0.0 + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -1006,33 +1006,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -1044,12 +1044,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -1094,55 +1094,55 @@ "AlignmentOption": 6, "AnchorsMax": { "x": 0.5, - "y": 0.0 + "y": 0 }, "AnchorsMin": { "x": 0.5, - "y": 0.0 + "y": 0 }, "MobileOnly": false, "OffsetMax": { - "x": 510.0, - "y": 320.0 + "x": 510, + "y": 320 }, "OffsetMin": { - "x": -510.0, - "y": 40.0 + "x": -510, + "y": 40 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 1020.0, - "y": 280.0 + "x": 1020, + "y": 280 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 180.0 + "x": 0, + "y": 180 }, "Position": { - "x": 0.0, - "y": -360.0, - "z": 0.0 + "x": 0, + "y": -360, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -1154,33 +1154,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -1192,12 +1192,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -1243,47 +1243,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -310.0, - "y": 125.0 + "x": -310, + "y": 125 }, "OffsetMin": { - "x": -490.0, - "y": -125.0 + "x": -490, + "y": -125 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 180.0, - "y": 250.0 + "x": 180, + "y": 250 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -400.0, - "y": 0.0 + "x": -400, + "y": 0 }, "Position": { - "x": -400.0, - "y": 0.0, - "z": 0.0 + "x": -400, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -1295,33 +1295,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.86, "g": 0.42, "b": 0.38, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -1333,12 +1333,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -1347,28 +1347,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -1376,7 +1376,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -1431,47 +1431,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -35.0, - "y": 120.0 + "x": -35, + "y": 120 }, "OffsetMin": { - "x": -85.0, - "y": 70.0 + "x": -85, + "y": 70 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 50.0, - "y": 50.0 + "x": 50, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -60.0, - "y": 95.0 + "x": -60, + "y": 95 }, "Position": { - "x": -60.0, - "y": 95.0, - "z": 0.0 + "x": -60, + "y": 95, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -1483,33 +1483,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -1521,12 +1521,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -1536,20 +1536,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 34, "MaxSize": 34, @@ -1558,13 +1558,13 @@ "r": 0.1, "g": 0.1, "b": 0.1, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -1619,47 +1619,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": 75.0 + "x": 80, + "y": 75 }, "OffsetMin": { - "x": -80.0, - "y": 25.0 + "x": -80, + "y": 25 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 50.0 + "x": 160, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 50.0 + "x": 0, + "y": 50 }, "Position": { - "x": 0.0, - "y": 50.0, - "z": 0.0 + "x": 0, + "y": 50, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -1671,33 +1671,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -1709,12 +1709,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -1724,20 +1724,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 26, "MaxSize": 26, @@ -1746,13 +1746,13 @@ "r": 0.1, "g": 0.1, "b": 0.1, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -1807,47 +1807,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": -40.0 + "x": 80, + "y": -40 }, "OffsetMin": { - "x": -80.0, - "y": -120.0 + "x": -80, + "y": -120 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 80.0 + "x": 160, + "y": 80 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -80.0 + "x": 0, + "y": -80 }, "Position": { - "x": 0.0, - "y": -80.0, - "z": 0.0 + "x": 0, + "y": -80, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -1859,33 +1859,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -1897,12 +1897,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -1912,20 +1912,20 @@ "Alignment": 4, "Bold": false, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -1934,13 +1934,13 @@ "r": 0.1, "g": 0.1, "b": 0.1, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -1995,47 +1995,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -110.0, - "y": 125.0 + "x": -110, + "y": 125 }, "OffsetMin": { - "x": -290.0, - "y": -125.0 + "x": -290, + "y": -125 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 180.0, - "y": 250.0 + "x": 180, + "y": 250 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -200.0, - "y": 0.0 + "x": -200, + "y": 0 }, "Position": { - "x": -200.0, - "y": 0.0, - "z": 0.0 + "x": -200, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -2047,33 +2047,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.42, "g": 0.55, "b": 0.85, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -2085,12 +2085,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -2099,28 +2099,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -2128,7 +2128,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -2183,47 +2183,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -35.0, - "y": 120.0 + "x": -35, + "y": 120 }, "OffsetMin": { - "x": -85.0, - "y": 70.0 + "x": -85, + "y": 70 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 50.0, - "y": 50.0 + "x": 50, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -60.0, - "y": 95.0 + "x": -60, + "y": 95 }, "Position": { - "x": -60.0, - "y": 95.0, - "z": 0.0 + "x": -60, + "y": 95, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -2235,33 +2235,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -2273,12 +2273,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -2288,20 +2288,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 34, "MaxSize": 34, @@ -2310,13 +2310,13 @@ "r": 0.1, "g": 0.1, "b": 0.1, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -2371,47 +2371,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": 75.0 + "x": 80, + "y": 75 }, "OffsetMin": { - "x": -80.0, - "y": 25.0 + "x": -80, + "y": 25 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 50.0 + "x": 160, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 50.0 + "x": 0, + "y": 50 }, "Position": { - "x": 0.0, - "y": 50.0, - "z": 0.0 + "x": 0, + "y": 50, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -2423,33 +2423,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -2461,12 +2461,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -2476,20 +2476,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 26, "MaxSize": 26, @@ -2498,13 +2498,13 @@ "r": 0.1, "g": 0.1, "b": 0.1, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -2559,47 +2559,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": -40.0 + "x": 80, + "y": -40 }, "OffsetMin": { - "x": -80.0, - "y": -120.0 + "x": -80, + "y": -120 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 80.0 + "x": 160, + "y": 80 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -80.0 + "x": 0, + "y": -80 }, "Position": { - "x": 0.0, - "y": -80.0, - "z": 0.0 + "x": 0, + "y": -80, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -2611,33 +2611,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -2649,12 +2649,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -2664,20 +2664,20 @@ "Alignment": 4, "Bold": false, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -2686,13 +2686,13 @@ "r": 0.1, "g": 0.1, "b": 0.1, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -2747,47 +2747,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 90.0, - "y": 125.0 + "x": 90, + "y": 125 }, "OffsetMin": { - "x": -90.0, - "y": -125.0 + "x": -90, + "y": -125 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 180.0, - "y": 250.0 + "x": 180, + "y": 250 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -2799,33 +2799,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.86, "g": 0.42, "b": 0.38, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -2837,12 +2837,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -2851,28 +2851,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -2880,7 +2880,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -2935,47 +2935,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -35.0, - "y": 120.0 + "x": -35, + "y": 120 }, "OffsetMin": { - "x": -85.0, - "y": 70.0 + "x": -85, + "y": 70 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 50.0, - "y": 50.0 + "x": 50, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -60.0, - "y": 95.0 + "x": -60, + "y": 95 }, "Position": { - "x": -60.0, - "y": 95.0, - "z": 0.0 + "x": -60, + "y": 95, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -2987,33 +2987,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -3025,12 +3025,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -3040,20 +3040,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 34, "MaxSize": 34, @@ -3062,13 +3062,13 @@ "r": 0.1, "g": 0.1, "b": 0.1, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -3123,47 +3123,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": 75.0 + "x": 80, + "y": 75 }, "OffsetMin": { - "x": -80.0, - "y": 25.0 + "x": -80, + "y": 25 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 50.0 + "x": 160, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 50.0 + "x": 0, + "y": 50 }, "Position": { - "x": 0.0, - "y": 50.0, - "z": 0.0 + "x": 0, + "y": 50, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -3175,33 +3175,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -3213,12 +3213,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -3228,20 +3228,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 26, "MaxSize": 26, @@ -3250,13 +3250,13 @@ "r": 0.1, "g": 0.1, "b": 0.1, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -3311,47 +3311,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": -40.0 + "x": 80, + "y": -40 }, "OffsetMin": { - "x": -80.0, - "y": -120.0 + "x": -80, + "y": -120 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 80.0 + "x": 160, + "y": 80 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -80.0 + "x": 0, + "y": -80 }, "Position": { - "x": 0.0, - "y": -80.0, - "z": 0.0 + "x": 0, + "y": -80, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -3363,33 +3363,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -3401,12 +3401,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -3416,20 +3416,20 @@ "Alignment": 4, "Bold": false, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -3438,13 +3438,13 @@ "r": 0.1, "g": 0.1, "b": 0.1, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -3499,47 +3499,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 290.0, - "y": 125.0 + "x": 290, + "y": 125 }, "OffsetMin": { - "x": 110.0, - "y": -125.0 + "x": 110, + "y": -125 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 180.0, - "y": 250.0 + "x": 180, + "y": 250 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 200.0, - "y": 0.0 + "x": 200, + "y": 0 }, "Position": { - "x": 200.0, - "y": 0.0, - "z": 0.0 + "x": 200, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -3551,33 +3551,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.86, "g": 0.42, "b": 0.38, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -3589,12 +3589,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -3603,28 +3603,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -3632,7 +3632,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -3687,47 +3687,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -35.0, - "y": 120.0 + "x": -35, + "y": 120 }, "OffsetMin": { - "x": -85.0, - "y": 70.0 + "x": -85, + "y": 70 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 50.0, - "y": 50.0 + "x": 50, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -60.0, - "y": 95.0 + "x": -60, + "y": 95 }, "Position": { - "x": -60.0, - "y": 95.0, - "z": 0.0 + "x": -60, + "y": 95, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -3739,33 +3739,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -3777,12 +3777,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -3792,20 +3792,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 34, "MaxSize": 34, @@ -3814,13 +3814,13 @@ "r": 0.1, "g": 0.1, "b": 0.1, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -3875,47 +3875,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": 75.0 + "x": 80, + "y": 75 }, "OffsetMin": { - "x": -80.0, - "y": 25.0 + "x": -80, + "y": 25 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 50.0 + "x": 160, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 50.0 + "x": 0, + "y": 50 }, "Position": { - "x": 0.0, - "y": 50.0, - "z": 0.0 + "x": 0, + "y": 50, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -3927,33 +3927,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -3965,12 +3965,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -3980,20 +3980,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 26, "MaxSize": 26, @@ -4002,13 +4002,13 @@ "r": 0.1, "g": 0.1, "b": 0.1, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -4063,47 +4063,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": -40.0 + "x": 80, + "y": -40 }, "OffsetMin": { - "x": -80.0, - "y": -120.0 + "x": -80, + "y": -120 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 80.0 + "x": 160, + "y": 80 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -80.0 + "x": 0, + "y": -80 }, "Position": { - "x": 0.0, - "y": -80.0, - "z": 0.0 + "x": 0, + "y": -80, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -4115,33 +4115,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -4153,12 +4153,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -4168,20 +4168,20 @@ "Alignment": 4, "Bold": false, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -4190,13 +4190,13 @@ "r": 0.1, "g": 0.1, "b": 0.1, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -4251,47 +4251,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 490.0, - "y": 125.0 + "x": 490, + "y": 125 }, "OffsetMin": { - "x": 310.0, - "y": -125.0 + "x": 310, + "y": -125 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 180.0, - "y": 250.0 + "x": 180, + "y": 250 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 400.0, - "y": 0.0 + "x": 400, + "y": 0 }, "Position": { - "x": 400.0, - "y": 0.0, - "z": 0.0 + "x": 400, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -4303,33 +4303,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.42, "g": 0.55, "b": 0.85, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -4341,12 +4341,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -4355,28 +4355,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -4384,7 +4384,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -4439,47 +4439,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -35.0, - "y": 120.0 + "x": -35, + "y": 120 }, "OffsetMin": { - "x": -85.0, - "y": 70.0 + "x": -85, + "y": 70 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 50.0, - "y": 50.0 + "x": 50, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -60.0, - "y": 95.0 + "x": -60, + "y": 95 }, "Position": { - "x": -60.0, - "y": 95.0, - "z": 0.0 + "x": -60, + "y": 95, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -4491,33 +4491,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -4529,12 +4529,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -4544,20 +4544,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 34, "MaxSize": 34, @@ -4566,13 +4566,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -4627,47 +4627,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": 75.0 + "x": 80, + "y": 75 }, "OffsetMin": { - "x": -80.0, - "y": 25.0 + "x": -80, + "y": 25 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 50.0 + "x": 160, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 50.0 + "x": 0, + "y": 50 }, "Position": { - "x": 0.0, - "y": 50.0, - "z": 0.0 + "x": 0, + "y": 50, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -4679,33 +4679,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -4717,12 +4717,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -4732,20 +4732,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 26, "MaxSize": 26, @@ -4754,13 +4754,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -4815,47 +4815,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": -39.0 + "x": 80, + "y": -39 }, "OffsetMin": { - "x": -80.0, - "y": -121.0 + "x": -80, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 82.0 + "x": 160, + "y": 82 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -80.0 + "x": 0, + "y": -80 }, "Position": { - "x": 0.0, - "y": -80.0, - "z": 0.0 + "x": 0, + "y": -80, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -4867,33 +4867,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -4905,12 +4905,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -4920,20 +4920,20 @@ "Alignment": 4, "Bold": false, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -4942,13 +4942,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -4995,55 +4995,55 @@ "AlignmentOption": 6, "AnchorsMax": { "x": 0.5, - "y": 0.0 + "y": 0 }, "AnchorsMin": { "x": 0.5, - "y": 0.0 + "y": 0 }, "MobileOnly": false, "OffsetMax": { - "x": 640.0, - "y": 345.0 + "x": 640, + "y": 345 }, "OffsetMin": { - "x": -640.0, - "y": 15.0 + "x": -640, + "y": 15 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 1280.0, - "y": 330.0 + "x": 1280, + "y": 330 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 180.0 + "x": 0, + "y": 180 }, "Position": { - "x": 0.0, - "y": -360.0, - "z": 0.0 + "x": 0, + "y": -360, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -5055,33 +5055,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -5093,12 +5093,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -5144,47 +5144,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -524.0, - "y": 101.0 + "x": -524, + "y": 101 }, "OffsetMin": { - "x": -656.0, - "y": -85.0 + "x": -656, + "y": -85 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132.0, - "y": 186.0 + "x": 132, + "y": 186 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -590.0, - "y": 8.0 + "x": -590, + "y": 8 }, "Position": { - "x": -590.0, - "y": 8.0, - "z": 0.0 + "x": -590, + "y": 8, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -5196,33 +5196,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.17, "g": 0.2, "b": 0.25, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -5234,12 +5234,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -5285,47 +5285,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 60.0, - "y": 66.0 + "x": 60, + "y": 66 }, "OffsetMin": { - "x": -60.0, - "y": 24.0 + "x": -60, + "y": 24 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 120.0, - "y": 42.0 + "x": 120, + "y": 42 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 45.0 + "x": 0, + "y": 45 }, "Position": { - "x": 0.0, - "y": 45.0, - "z": 0.0 + "x": 0, + "y": 45, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -5337,33 +5337,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -5375,12 +5375,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -5390,20 +5390,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.94, "g": 0.74, "b": 0.26, - "a": 1.0 + "a": 1 }, "FontSize": 21, "MaxSize": 21, @@ -5412,13 +5412,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -5473,47 +5473,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 60.0, - "y": 16.0 + "x": 60, + "y": 16 }, "OffsetMin": { - "x": -60.0, - "y": -56.0 + "x": -60, + "y": -56 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 120.0, - "y": 72.0 + "x": 120, + "y": 72 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -20.0 + "x": 0, + "y": -20 }, "Position": { - "x": 0.0, - "y": -20.0, - "z": 0.0 + "x": 0, + "y": -20, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -5525,33 +5525,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -5563,12 +5563,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -5578,20 +5578,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 42, "MaxSize": 42, @@ -5600,13 +5600,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -5661,47 +5661,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 656.0, - "y": 101.0 + "x": 656, + "y": 101 }, "OffsetMin": { - "x": 524.0, - "y": -85.0 + "x": 524, + "y": -85 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 132.0, - "y": 186.0 + "x": 132, + "y": 186 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 590.0, - "y": 8.0 + "x": 590, + "y": 8 }, "Position": { - "x": 590.0, - "y": 8.0, - "z": 0.0 + "x": 590, + "y": 8, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -5713,33 +5713,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.22, "g": 0.18, "b": 0.16, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -5751,12 +5751,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -5802,47 +5802,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 60.0, - "y": 66.0 + "x": 60, + "y": 66 }, "OffsetMin": { - "x": -60.0, - "y": 24.0 + "x": -60, + "y": 24 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 120.0, - "y": 42.0 + "x": 120, + "y": 42 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 45.0 + "x": 0, + "y": 45 }, "Position": { - "x": 0.0, - "y": 45.0, - "z": 0.0 + "x": 0, + "y": 45, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -5854,33 +5854,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -5892,12 +5892,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -5907,20 +5907,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.94, "g": 0.74, "b": 0.26, - "a": 1.0 + "a": 1 }, "FontSize": 21, "MaxSize": 21, @@ -5929,13 +5929,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -5990,47 +5990,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 60.0, - "y": 16.0 + "x": 60, + "y": 16 }, "OffsetMin": { - "x": -60.0, - "y": -56.0 + "x": -60, + "y": -56 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 120.0, - "y": 72.0 + "x": 120, + "y": 72 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -20.0 + "x": 0, + "y": -20 }, "Position": { - "x": 0.0, - "y": -20.0, - "z": 0.0 + "x": 0, + "y": -20, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -6042,33 +6042,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -6080,12 +6080,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -6095,20 +6095,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 42, "MaxSize": 42, @@ -6117,13 +6117,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -6178,47 +6178,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 85.0, - "y": 164.0 + "x": 85, + "y": 164 }, "OffsetMin": { - "x": -85.0, - "y": 106.0 + "x": -85, + "y": 106 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 170.0, - "y": 58.0 + "x": 170, + "y": 58 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 135.0 + "x": 0, + "y": 135 }, "Position": { - "x": 0.0, - "y": 135.0, - "z": 0.0 + "x": 0, + "y": 135, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -6230,15 +6230,15 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { @@ -6248,15 +6248,15 @@ "a": 0.92 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -6268,12 +6268,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -6282,28 +6282,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -6311,7 +6311,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -6330,20 +6330,20 @@ "Alignment": 0, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.94, "g": 0.74, "b": 0.26, - "a": 1.0 + "a": 1 }, "FontSize": 25, "MaxSize": 25, @@ -6352,13 +6352,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -6413,47 +6413,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 110.0, - "y": 111.0 + "x": 110, + "y": 111 }, "OffsetMin": { - "x": -110.0, - "y": 69.0 + "x": -110, + "y": 69 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 220.0, - "y": 42.0 + "x": 220, + "y": 42 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 90.0 + "x": 0, + "y": 90 }, "Position": { - "x": 0.0, - "y": 90.0, - "z": 0.0 + "x": 0, + "y": 90, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -6465,33 +6465,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -6503,12 +6503,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -6518,20 +6518,20 @@ "Alignment": 0, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.6, "g": 0.9, - "b": 1.0, - "a": 1.0 + "b": 1, + "a": 1 }, "FontSize": 24, "MaxSize": 24, @@ -6540,13 +6540,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -6575,7 +6575,7 @@ "enable": true, "visible": true, "localize": true, - "displayOrder": 6, + "displayOrder": 4, "pathConstraints": "///", "revision": 1, "origin": { @@ -6601,47 +6601,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 960.0, - "y": 540.0 + "x": 960, + "y": 540 }, "OffsetMin": { - "x": -960.0, - "y": -540.0 + "x": -960, + "y": -540 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 1920.0, - "y": 1080.0 + "x": 1920, + "y": 1080 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -6653,33 +6653,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -6691,12 +6691,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -6706,17 +6706,17 @@ } }, { - "id": "0cb00001-0000-4000-8000-00000cb00001", - "path": "/ui/DefaultGroup/CombatHud/EnemyBg", - "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent", + "id": "0cb00029-0000-4000-8000-00000cb00029", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot1", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.ButtonComponent", "jsonString": { - "name": "EnemyBg", - "path": "/ui/DefaultGroup/CombatHud/EnemyBg", + "name": "MonsterSlot1", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot1", "nameEditable": true, - "enable": true, + "enable": false, "visible": true, "localize": true, - "displayOrder": 0, + "displayOrder": 21, "pathConstraints": "////", "revision": 1, "origin": { @@ -6742,47 +6742,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 190.0, - "y": 385.0 + "x": -410, + "y": 348 }, "OffsetMin": { - "x": -190.0, - "y": 215.0 + "x": -550, + "y": 252 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 380.0, - "y": 170.0 + "x": 140, + "y": 96 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 300.0 + "x": -480, + "y": 300 }, "Position": { - "x": 0.0, - "y": 300.0, - "z": 0.0 + "x": -480, + "y": 300, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -6794,33 +6794,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.08, - "g": 0.09, - "b": 0.11, - "a": 0.78 + "r": 0, + "g": 0, + "b": 0, + "a": 0.0001 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -6832,33 +6832,80 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, - "RaycastTarget": false, + "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 } ], "@version": 1 } }, { - "id": "0cb00002-0000-4000-8000-00000cb00002", - "path": "/ui/DefaultGroup/CombatHud/EnemyName", + "id": "0cb0003d-0000-4000-8000-00000cb0003d", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot1/Name", "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", "jsonString": { - "name": "EnemyName", - "path": "/ui/DefaultGroup/CombatHud/EnemyName", + "name": "Name", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot1/Name", "nameEditable": true, "enable": true, "visible": true, "localize": true, - "displayOrder": 1, - "pathConstraints": "////", + "displayOrder": 0, + "pathConstraints": "/////", "revision": 1, "origin": { "type": "Model", @@ -6883,47 +6930,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 180.0, - "y": 380.0 + "x": 70, + "y": 49 }, "OffsetMin": { - "x": -180.0, - "y": 336.0 + "x": -70, + "y": 19 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 360.0, - "y": 44.0 + "x": 140, + "y": 30 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 358.0 + "x": 0, + "y": 34 }, "Position": { - "x": 0.0, - "y": 358.0, - "z": 0.0 + "x": 0, + "y": 34, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -6935,33 +6982,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -6973,12 +7020,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -6988,396 +7035,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.94, "g": 0.74, "b": 0.26, - "a": 1.0 - }, - "FontSize": 28, - "MaxSize": 28, - "MinSize": 8, - "OutlineColor": { - "r": 0.08, - "g": 0.08, - "b": 0.08, - "a": 1.0 - }, - "OutlineDistance": { - "x": 1.0, - "y": -1.0 - }, - "OutlineWidth": 1.0, - "Overflow": 0, - "OverrideSorting": false, - "Padding": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "SizeFit": false, - "Text": "슬라임", - "UseOutLine": true, - "Enable": true - } - ], - "@version": 1 - } - }, - { - "id": "0cb00003-0000-4000-8000-00000cb00003", - "path": "/ui/DefaultGroup/CombatHud/EnemyHp", - "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", - "jsonString": { - "name": "EnemyHp", - "path": "/ui/DefaultGroup/CombatHud/EnemyHp", - "nameEditable": true, - "enable": true, - "visible": true, - "localize": true, - "displayOrder": 2, - "pathConstraints": "////", - "revision": 1, - "origin": { - "type": "Model", - "entry_id": "UIText", - "sub_entity_id": null, - "root_entity_id": null, - "replaced_model_id": null - }, - "modelId": "uitext", - "@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": 180.0, - "y": 336.0 - }, - "OffsetMin": { - "x": -180.0, - "y": 296.0 - }, - "Pivot": { - "x": 0.5, - "y": 0.5 - }, - "RectSize": { - "x": 360.0, - "y": 40.0 - }, - "UIMode": 1, - "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 - }, - "UIVersion": 2, - "anchoredPosition": { - "x": 0.0, - "y": 316.0 - }, - "Position": { - "x": 0.0, - "y": 316.0, - "z": 0.0 - }, - "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 - }, - "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 - }, - "Enable": true - }, - { - "@type": "MOD.Core.SpriteGUIRendererComponent", - "AnimClipPlayType": 0, - "EndFrameIndex": 2147483647, - "ImageRUID": { - "DataId": "" - }, - "LocalPosition": { - "x": 0.0, - "y": 0.0 - }, - "LocalScale": { - "x": 1.0, - "y": 1.0 - }, - "OverrideSorting": false, - "PlayRate": 1.0, - "PreserveSprite": 0, - "StartFrameIndex": 0, - "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 - }, - "DropShadow": false, - "DropShadowAngle": 30.0, - "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.72 - }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, - "FillCenter": true, - "FillClockWise": true, - "FillMethod": 0, - "FillOrigin": 0, - "FlipX": false, - "FlipY": false, - "FrameColumn": 1, - "FrameRate": 0, - "FrameRow": 1, - "Outline": false, - "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 - }, - "OutlineWidth": 3.0, - "RaycastTarget": false, - "Type": 1, - "Enable": true - }, - { - "@type": "MOD.Core.TextComponent", - "Alignment": 4, - "Bold": true, - "DropShadow": false, - "DropShadowAngle": 30.0, - "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.72 - }, - "DropShadowDistance": 32.0, - "Font": 0, - "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 - }, - "FontSize": 24, - "MaxSize": 24, - "MinSize": 8, - "OutlineColor": { - "r": 0.08, - "g": 0.08, - "b": 0.08, - "a": 1.0 - }, - "OutlineDistance": { - "x": 1.0, - "y": -1.0 - }, - "OutlineWidth": 1.0, - "Overflow": 0, - "OverrideSorting": false, - "Padding": { - "left": 0, - "right": 0, - "top": 0, - "bottom": 0 - }, - "SizeFit": false, - "Text": "HP 45/45", - "UseOutLine": true, - "Enable": true - } - ], - "@version": 1 - } - }, - { - "id": "0cb00004-0000-4000-8000-00000cb00004", - "path": "/ui/DefaultGroup/CombatHud/EnemyBlock", - "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", - "jsonString": { - "name": "EnemyBlock", - "path": "/ui/DefaultGroup/CombatHud/EnemyBlock", - "nameEditable": true, - "enable": true, - "visible": true, - "localize": true, - "displayOrder": 3, - "pathConstraints": "////", - "revision": 1, - "origin": { - "type": "Model", - "entry_id": "UIText", - "sub_entity_id": null, - "root_entity_id": null, - "replaced_model_id": null - }, - "modelId": "uitext", - "@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": 180.0, - "y": 298.0 - }, - "OffsetMin": { - "x": -180.0, - "y": 262.0 - }, - "Pivot": { - "x": 0.5, - "y": 0.5 - }, - "RectSize": { - "x": 360.0, - "y": 36.0 - }, - "UIMode": 1, - "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 - }, - "UIVersion": 2, - "anchoredPosition": { - "x": 0.0, - "y": 280.0 - }, - "Position": { - "x": 0.0, - "y": 280.0, - "z": 0.0 - }, - "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 - }, - "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 - }, - "Enable": true - }, - { - "@type": "MOD.Core.SpriteGUIRendererComponent", - "AnimClipPlayType": 0, - "EndFrameIndex": 2147483647, - "ImageRUID": { - "DataId": "" - }, - "LocalPosition": { - "x": 0.0, - "y": 0.0 - }, - "LocalScale": { - "x": 1.0, - "y": 1.0 - }, - "OverrideSorting": false, - "PlayRate": 1.0, - "PreserveSprite": 0, - "StartFrameIndex": 0, - "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 - }, - "DropShadow": false, - "DropShadowAngle": 30.0, - "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.72 - }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, - "FillCenter": true, - "FillClockWise": true, - "FillMethod": 0, - "FillOrigin": 0, - "FlipX": false, - "FlipY": false, - "FrameColumn": 1, - "FrameRate": 0, - "FrameRow": 1, - "Outline": false, - "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 - }, - "OutlineWidth": 3.0, - "RaycastTarget": false, - "Type": 1, - "Enable": true - }, - { - "@type": "MOD.Core.TextComponent", - "Alignment": 4, - "Bold": false, - "DropShadow": false, - "DropShadowAngle": 30.0, - "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.72 - }, - "DropShadowDistance": 32.0, - "Font": 0, - "FontColor": { - "r": 0.6, - "g": 0.8, - "b": 1.0, - "a": 1.0 + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -7386,13 +7057,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -7402,7 +7073,7 @@ "bottom": 0 }, "SizeFit": false, - "Text": "방어 0", + "Text": "", "UseOutLine": true, "Enable": true } @@ -7411,18 +7082,18 @@ } }, { - "id": "0cb00005-0000-4000-8000-00000cb00005", - "path": "/ui/DefaultGroup/CombatHud/EnemyIntent", + "id": "0cb00051-0000-4000-8000-00000cb00051", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot1/Hp", "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", "jsonString": { - "name": "EnemyIntent", - "path": "/ui/DefaultGroup/CombatHud/EnemyIntent", + "name": "Hp", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot1/Hp", "nameEditable": true, "enable": true, "visible": true, "localize": true, - "displayOrder": 4, - "pathConstraints": "////", + "displayOrder": 1, + "pathConstraints": "/////", "revision": 1, "origin": { "type": "Model", @@ -7447,47 +7118,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 180.0, - "y": 263.0 + "x": 70, + "y": 19 }, "OffsetMin": { - "x": -180.0, - "y": 225.0 + "x": -70, + "y": -7 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 360.0, - "y": 38.0 + "x": 140, + "y": 26 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 244.0 + "x": 0, + "y": 6 }, "Position": { - "x": 0.0, - "y": 244.0, - "z": 0.0 + "x": 0, + "y": 6, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -7499,33 +7170,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -7537,12 +7208,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -7552,35 +7223,35 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 0.72, - "b": 0.5, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, - "FontSize": 22, - "MaxSize": 22, + "FontSize": 18, + "MaxSize": 18, "MinSize": 8, "OutlineColor": { "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -7590,7 +7261,7 @@ "bottom": 0 }, "SizeFit": false, - "Text": "의도: 공격 10", + "Text": "", "UseOutLine": true, "Enable": true } @@ -7599,7 +7270,3579 @@ } }, { - "id": "0cb00006-0000-4000-8000-00000cb00006", + "id": "0cb00065-0000-4000-8000-00000cb00065", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot1/HpBarBg", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent", + "jsonString": { + "name": "HpBarBg", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot1/HpBarBg", + "nameEditable": true, + "enable": true, + "visible": true, + "localize": true, + "displayOrder": 2, + "pathConstraints": "/////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UISprite", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uisprite", + "@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": 60, + "y": -7 + }, + "OffsetMin": { + "x": -60, + "y": -21 + }, + "Pivot": { + "x": 0.5, + "y": 0.5 + }, + "RectSize": { + "x": 120, + "y": 14 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": 0, + "y": -14 + }, + "Position": { + "x": 0, + "y": -14, + "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.18, + "g": 0.05, + "b": 0.06, + "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": false, + "Type": 1, + "Enable": true + } + ], + "@version": 1 + } + }, + { + "id": "0cb00079-0000-4000-8000-00000cb00079", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot1/HpBarFill", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent", + "jsonString": { + "name": "HpBarFill", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot1/HpBarFill", + "nameEditable": true, + "enable": true, + "visible": true, + "localize": true, + "displayOrder": 3, + "pathConstraints": "/////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UISprite", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uisprite", + "@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": 60, + "y": -7 + }, + "OffsetMin": { + "x": -60, + "y": -21 + }, + "Pivot": { + "x": 0, + "y": 0.5 + }, + "RectSize": { + "x": 120, + "y": 14 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": -60, + "y": -14 + }, + "Position": { + "x": -60, + "y": -14, + "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.86, + "g": 0.35, + "b": 0.32, + "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": false, + "Type": 1, + "Enable": true + } + ], + "@version": 1 + } + }, + { + "id": "0cb0008d-0000-4000-8000-00000cb0008d", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot1/Intent", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", + "jsonString": { + "name": "Intent", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot1/Intent", + "nameEditable": true, + "enable": true, + "visible": true, + "localize": true, + "displayOrder": 4, + "pathConstraints": "/////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UIText", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uitext", + "@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": 90, + "y": -24 + }, + "OffsetMin": { + "x": -90, + "y": -48 + }, + "Pivot": { + "x": 0.5, + "y": 0.5 + }, + "RectSize": { + "x": 180, + "y": 24 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": 0, + "y": -36 + }, + "Position": { + "x": 0, + "y": -36, + "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, + "g": 0, + "b": 0, + "a": 0 + }, + "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": false, + "Type": 1, + "Enable": true + }, + { + "@type": "MOD.Core.TextComponent", + "Alignment": 4, + "Bold": true, + "DropShadow": false, + "DropShadowAngle": 30, + "DropShadowColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0.72 + }, + "DropShadowDistance": 32, + "Font": 0, + "FontColor": { + "r": 1, + "g": 0.72, + "b": 0.5, + "a": 1 + }, + "FontSize": 17, + "MaxSize": 17, + "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": "0cb0002a-0000-4000-8000-00000cb0002a", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot2", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.ButtonComponent", + "jsonString": { + "name": "MonsterSlot2", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot2", + "nameEditable": true, + "enable": false, + "visible": true, + "localize": true, + "displayOrder": 22, + "pathConstraints": "////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UISprite", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uisprite", + "@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": -90, + "y": 348 + }, + "OffsetMin": { + "x": -230, + "y": 252 + }, + "Pivot": { + "x": 0.5, + "y": 0.5 + }, + "RectSize": { + "x": 140, + "y": 96 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": -160, + "y": 300 + }, + "Position": { + "x": -160, + "y": 300, + "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, + "g": 0, + "b": 0, + "a": 0.0001 + }, + "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 + } + ], + "@version": 1 + } + }, + { + "id": "0cb0003e-0000-4000-8000-00000cb0003e", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot2/Name", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", + "jsonString": { + "name": "Name", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot2/Name", + "nameEditable": true, + "enable": true, + "visible": true, + "localize": true, + "displayOrder": 0, + "pathConstraints": "/////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UIText", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uitext", + "@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": 70, + "y": 49 + }, + "OffsetMin": { + "x": -70, + "y": 19 + }, + "Pivot": { + "x": 0.5, + "y": 0.5 + }, + "RectSize": { + "x": 140, + "y": 30 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": 0, + "y": 34 + }, + "Position": { + "x": 0, + "y": 34, + "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, + "g": 0, + "b": 0, + "a": 0 + }, + "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": false, + "Type": 1, + "Enable": true + }, + { + "@type": "MOD.Core.TextComponent", + "Alignment": 4, + "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": "0cb00052-0000-4000-8000-00000cb00052", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot2/Hp", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", + "jsonString": { + "name": "Hp", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot2/Hp", + "nameEditable": true, + "enable": true, + "visible": true, + "localize": true, + "displayOrder": 1, + "pathConstraints": "/////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UIText", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uitext", + "@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": 70, + "y": 19 + }, + "OffsetMin": { + "x": -70, + "y": -7 + }, + "Pivot": { + "x": 0.5, + "y": 0.5 + }, + "RectSize": { + "x": 140, + "y": 26 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": 0, + "y": 6 + }, + "Position": { + "x": 0, + "y": 6, + "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, + "g": 0, + "b": 0, + "a": 0 + }, + "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": false, + "Type": 1, + "Enable": true + }, + { + "@type": "MOD.Core.TextComponent", + "Alignment": 4, + "Bold": true, + "DropShadow": false, + "DropShadowAngle": 30, + "DropShadowColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0.72 + }, + "DropShadowDistance": 32, + "Font": 0, + "FontColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "FontSize": 18, + "MaxSize": 18, + "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": "0cb00066-0000-4000-8000-00000cb00066", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot2/HpBarBg", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent", + "jsonString": { + "name": "HpBarBg", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot2/HpBarBg", + "nameEditable": true, + "enable": true, + "visible": true, + "localize": true, + "displayOrder": 2, + "pathConstraints": "/////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UISprite", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uisprite", + "@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": 60, + "y": -7 + }, + "OffsetMin": { + "x": -60, + "y": -21 + }, + "Pivot": { + "x": 0.5, + "y": 0.5 + }, + "RectSize": { + "x": 120, + "y": 14 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": 0, + "y": -14 + }, + "Position": { + "x": 0, + "y": -14, + "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.18, + "g": 0.05, + "b": 0.06, + "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": false, + "Type": 1, + "Enable": true + } + ], + "@version": 1 + } + }, + { + "id": "0cb0007a-0000-4000-8000-00000cb0007a", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot2/HpBarFill", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent", + "jsonString": { + "name": "HpBarFill", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot2/HpBarFill", + "nameEditable": true, + "enable": true, + "visible": true, + "localize": true, + "displayOrder": 3, + "pathConstraints": "/////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UISprite", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uisprite", + "@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": 60, + "y": -7 + }, + "OffsetMin": { + "x": -60, + "y": -21 + }, + "Pivot": { + "x": 0, + "y": 0.5 + }, + "RectSize": { + "x": 120, + "y": 14 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": -60, + "y": -14 + }, + "Position": { + "x": -60, + "y": -14, + "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.86, + "g": 0.35, + "b": 0.32, + "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": false, + "Type": 1, + "Enable": true + } + ], + "@version": 1 + } + }, + { + "id": "0cb0008e-0000-4000-8000-00000cb0008e", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot2/Intent", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", + "jsonString": { + "name": "Intent", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot2/Intent", + "nameEditable": true, + "enable": true, + "visible": true, + "localize": true, + "displayOrder": 4, + "pathConstraints": "/////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UIText", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uitext", + "@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": 90, + "y": -24 + }, + "OffsetMin": { + "x": -90, + "y": -48 + }, + "Pivot": { + "x": 0.5, + "y": 0.5 + }, + "RectSize": { + "x": 180, + "y": 24 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": 0, + "y": -36 + }, + "Position": { + "x": 0, + "y": -36, + "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, + "g": 0, + "b": 0, + "a": 0 + }, + "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": false, + "Type": 1, + "Enable": true + }, + { + "@type": "MOD.Core.TextComponent", + "Alignment": 4, + "Bold": true, + "DropShadow": false, + "DropShadowAngle": 30, + "DropShadowColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0.72 + }, + "DropShadowDistance": 32, + "Font": 0, + "FontColor": { + "r": 1, + "g": 0.72, + "b": 0.5, + "a": 1 + }, + "FontSize": 17, + "MaxSize": 17, + "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": "0cb0002b-0000-4000-8000-00000cb0002b", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot3", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.ButtonComponent", + "jsonString": { + "name": "MonsterSlot3", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot3", + "nameEditable": true, + "enable": false, + "visible": true, + "localize": true, + "displayOrder": 23, + "pathConstraints": "////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UISprite", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uisprite", + "@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": 230, + "y": 348 + }, + "OffsetMin": { + "x": 90, + "y": 252 + }, + "Pivot": { + "x": 0.5, + "y": 0.5 + }, + "RectSize": { + "x": 140, + "y": 96 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": 160, + "y": 300 + }, + "Position": { + "x": 160, + "y": 300, + "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, + "g": 0, + "b": 0, + "a": 0.0001 + }, + "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 + } + ], + "@version": 1 + } + }, + { + "id": "0cb0003f-0000-4000-8000-00000cb0003f", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot3/Name", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", + "jsonString": { + "name": "Name", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot3/Name", + "nameEditable": true, + "enable": true, + "visible": true, + "localize": true, + "displayOrder": 0, + "pathConstraints": "/////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UIText", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uitext", + "@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": 70, + "y": 49 + }, + "OffsetMin": { + "x": -70, + "y": 19 + }, + "Pivot": { + "x": 0.5, + "y": 0.5 + }, + "RectSize": { + "x": 140, + "y": 30 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": 0, + "y": 34 + }, + "Position": { + "x": 0, + "y": 34, + "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, + "g": 0, + "b": 0, + "a": 0 + }, + "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": false, + "Type": 1, + "Enable": true + }, + { + "@type": "MOD.Core.TextComponent", + "Alignment": 4, + "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": "0cb00053-0000-4000-8000-00000cb00053", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot3/Hp", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", + "jsonString": { + "name": "Hp", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot3/Hp", + "nameEditable": true, + "enable": true, + "visible": true, + "localize": true, + "displayOrder": 1, + "pathConstraints": "/////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UIText", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uitext", + "@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": 70, + "y": 19 + }, + "OffsetMin": { + "x": -70, + "y": -7 + }, + "Pivot": { + "x": 0.5, + "y": 0.5 + }, + "RectSize": { + "x": 140, + "y": 26 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": 0, + "y": 6 + }, + "Position": { + "x": 0, + "y": 6, + "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, + "g": 0, + "b": 0, + "a": 0 + }, + "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": false, + "Type": 1, + "Enable": true + }, + { + "@type": "MOD.Core.TextComponent", + "Alignment": 4, + "Bold": true, + "DropShadow": false, + "DropShadowAngle": 30, + "DropShadowColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0.72 + }, + "DropShadowDistance": 32, + "Font": 0, + "FontColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "FontSize": 18, + "MaxSize": 18, + "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": "0cb00067-0000-4000-8000-00000cb00067", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot3/HpBarBg", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent", + "jsonString": { + "name": "HpBarBg", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot3/HpBarBg", + "nameEditable": true, + "enable": true, + "visible": true, + "localize": true, + "displayOrder": 2, + "pathConstraints": "/////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UISprite", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uisprite", + "@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": 60, + "y": -7 + }, + "OffsetMin": { + "x": -60, + "y": -21 + }, + "Pivot": { + "x": 0.5, + "y": 0.5 + }, + "RectSize": { + "x": 120, + "y": 14 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": 0, + "y": -14 + }, + "Position": { + "x": 0, + "y": -14, + "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.18, + "g": 0.05, + "b": 0.06, + "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": false, + "Type": 1, + "Enable": true + } + ], + "@version": 1 + } + }, + { + "id": "0cb0007b-0000-4000-8000-00000cb0007b", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot3/HpBarFill", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent", + "jsonString": { + "name": "HpBarFill", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot3/HpBarFill", + "nameEditable": true, + "enable": true, + "visible": true, + "localize": true, + "displayOrder": 3, + "pathConstraints": "/////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UISprite", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uisprite", + "@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": 60, + "y": -7 + }, + "OffsetMin": { + "x": -60, + "y": -21 + }, + "Pivot": { + "x": 0, + "y": 0.5 + }, + "RectSize": { + "x": 120, + "y": 14 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": -60, + "y": -14 + }, + "Position": { + "x": -60, + "y": -14, + "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.86, + "g": 0.35, + "b": 0.32, + "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": false, + "Type": 1, + "Enable": true + } + ], + "@version": 1 + } + }, + { + "id": "0cb0008f-0000-4000-8000-00000cb0008f", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot3/Intent", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", + "jsonString": { + "name": "Intent", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot3/Intent", + "nameEditable": true, + "enable": true, + "visible": true, + "localize": true, + "displayOrder": 4, + "pathConstraints": "/////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UIText", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uitext", + "@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": 90, + "y": -24 + }, + "OffsetMin": { + "x": -90, + "y": -48 + }, + "Pivot": { + "x": 0.5, + "y": 0.5 + }, + "RectSize": { + "x": 180, + "y": 24 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": 0, + "y": -36 + }, + "Position": { + "x": 0, + "y": -36, + "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, + "g": 0, + "b": 0, + "a": 0 + }, + "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": false, + "Type": 1, + "Enable": true + }, + { + "@type": "MOD.Core.TextComponent", + "Alignment": 4, + "Bold": true, + "DropShadow": false, + "DropShadowAngle": 30, + "DropShadowColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0.72 + }, + "DropShadowDistance": 32, + "Font": 0, + "FontColor": { + "r": 1, + "g": 0.72, + "b": 0.5, + "a": 1 + }, + "FontSize": 17, + "MaxSize": 17, + "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": "0cb0002c-0000-4000-8000-00000cb0002c", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot4", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.ButtonComponent", + "jsonString": { + "name": "MonsterSlot4", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot4", + "nameEditable": true, + "enable": false, + "visible": true, + "localize": true, + "displayOrder": 24, + "pathConstraints": "////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UISprite", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uisprite", + "@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": 550, + "y": 348 + }, + "OffsetMin": { + "x": 410, + "y": 252 + }, + "Pivot": { + "x": 0.5, + "y": 0.5 + }, + "RectSize": { + "x": 140, + "y": 96 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": 480, + "y": 300 + }, + "Position": { + "x": 480, + "y": 300, + "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, + "g": 0, + "b": 0, + "a": 0.0001 + }, + "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 + } + ], + "@version": 1 + } + }, + { + "id": "0cb00040-0000-4000-8000-00000cb00040", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot4/Name", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", + "jsonString": { + "name": "Name", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot4/Name", + "nameEditable": true, + "enable": true, + "visible": true, + "localize": true, + "displayOrder": 0, + "pathConstraints": "/////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UIText", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uitext", + "@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": 70, + "y": 49 + }, + "OffsetMin": { + "x": -70, + "y": 19 + }, + "Pivot": { + "x": 0.5, + "y": 0.5 + }, + "RectSize": { + "x": 140, + "y": 30 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": 0, + "y": 34 + }, + "Position": { + "x": 0, + "y": 34, + "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, + "g": 0, + "b": 0, + "a": 0 + }, + "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": false, + "Type": 1, + "Enable": true + }, + { + "@type": "MOD.Core.TextComponent", + "Alignment": 4, + "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": "0cb00054-0000-4000-8000-00000cb00054", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot4/Hp", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", + "jsonString": { + "name": "Hp", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot4/Hp", + "nameEditable": true, + "enable": true, + "visible": true, + "localize": true, + "displayOrder": 1, + "pathConstraints": "/////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UIText", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uitext", + "@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": 70, + "y": 19 + }, + "OffsetMin": { + "x": -70, + "y": -7 + }, + "Pivot": { + "x": 0.5, + "y": 0.5 + }, + "RectSize": { + "x": 140, + "y": 26 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": 0, + "y": 6 + }, + "Position": { + "x": 0, + "y": 6, + "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, + "g": 0, + "b": 0, + "a": 0 + }, + "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": false, + "Type": 1, + "Enable": true + }, + { + "@type": "MOD.Core.TextComponent", + "Alignment": 4, + "Bold": true, + "DropShadow": false, + "DropShadowAngle": 30, + "DropShadowColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0.72 + }, + "DropShadowDistance": 32, + "Font": 0, + "FontColor": { + "r": 1, + "g": 1, + "b": 1, + "a": 1 + }, + "FontSize": 18, + "MaxSize": 18, + "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": "0cb00068-0000-4000-8000-00000cb00068", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot4/HpBarBg", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent", + "jsonString": { + "name": "HpBarBg", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot4/HpBarBg", + "nameEditable": true, + "enable": true, + "visible": true, + "localize": true, + "displayOrder": 2, + "pathConstraints": "/////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UISprite", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uisprite", + "@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": 60, + "y": -7 + }, + "OffsetMin": { + "x": -60, + "y": -21 + }, + "Pivot": { + "x": 0.5, + "y": 0.5 + }, + "RectSize": { + "x": 120, + "y": 14 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": 0, + "y": -14 + }, + "Position": { + "x": 0, + "y": -14, + "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.18, + "g": 0.05, + "b": 0.06, + "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": false, + "Type": 1, + "Enable": true + } + ], + "@version": 1 + } + }, + { + "id": "0cb0007c-0000-4000-8000-00000cb0007c", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot4/HpBarFill", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent", + "jsonString": { + "name": "HpBarFill", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot4/HpBarFill", + "nameEditable": true, + "enable": true, + "visible": true, + "localize": true, + "displayOrder": 3, + "pathConstraints": "/////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UISprite", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uisprite", + "@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": 60, + "y": -7 + }, + "OffsetMin": { + "x": -60, + "y": -21 + }, + "Pivot": { + "x": 0, + "y": 0.5 + }, + "RectSize": { + "x": 120, + "y": 14 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": -60, + "y": -14 + }, + "Position": { + "x": -60, + "y": -14, + "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.86, + "g": 0.35, + "b": 0.32, + "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": false, + "Type": 1, + "Enable": true + } + ], + "@version": 1 + } + }, + { + "id": "0cb00090-0000-4000-8000-00000cb00090", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot4/Intent", + "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", + "jsonString": { + "name": "Intent", + "path": "/ui/DefaultGroup/CombatHud/MonsterSlot4/Intent", + "nameEditable": true, + "enable": true, + "visible": true, + "localize": true, + "displayOrder": 4, + "pathConstraints": "/////", + "revision": 1, + "origin": { + "type": "Model", + "entry_id": "UIText", + "sub_entity_id": null, + "root_entity_id": null, + "replaced_model_id": null + }, + "modelId": "uitext", + "@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": 90, + "y": -24 + }, + "OffsetMin": { + "x": -90, + "y": -48 + }, + "Pivot": { + "x": 0.5, + "y": 0.5 + }, + "RectSize": { + "x": 180, + "y": 24 + }, + "UIMode": 1, + "UIScale": { + "x": 1, + "y": 1, + "z": 1 + }, + "UIVersion": 2, + "anchoredPosition": { + "x": 0, + "y": -36 + }, + "Position": { + "x": 0, + "y": -36, + "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, + "g": 0, + "b": 0, + "a": 0 + }, + "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": false, + "Type": 1, + "Enable": true + }, + { + "@type": "MOD.Core.TextComponent", + "Alignment": 4, + "Bold": true, + "DropShadow": false, + "DropShadowAngle": 30, + "DropShadowColor": { + "r": 0, + "g": 0, + "b": 0, + "a": 0.72 + }, + "DropShadowDistance": 32, + "Font": 0, + "FontColor": { + "r": 1, + "g": 0.72, + "b": 0.5, + "a": 1 + }, + "FontSize": 17, + "MaxSize": 17, + "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": "0cb00002-0000-4000-8000-00000cb00002", "path": "/ui/DefaultGroup/CombatHud/PlayerBg", "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent", "jsonString": { @@ -7635,47 +10878,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -610.0, - "y": -205.0 + "x": -610, + "y": -205 }, "OffsetMin": { - "x": -910.0, - "y": -315.0 + "x": -910, + "y": -315 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 300.0, - "y": 110.0 + "x": 300, + "y": 110 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -760.0, - "y": -260.0 + "x": -760, + "y": -260 }, "Position": { - "x": -760.0, - "y": -260.0, - "z": 0.0 + "x": -760, + "y": -260, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -7687,15 +10930,15 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { @@ -7705,15 +10948,15 @@ "a": 0.78 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -7725,12 +10968,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -7740,7 +10983,7 @@ } }, { - "id": "0cb00007-0000-4000-8000-00000cb00007", + "id": "0cb00003-0000-4000-8000-00000cb00003", "path": "/ui/DefaultGroup/CombatHud/PlayerHp", "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", "jsonString": { @@ -7776,47 +11019,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -620.0, - "y": -216.0 + "x": -620, + "y": -216 }, "OffsetMin": { - "x": -900.0, - "y": -260.0 + "x": -900, + "y": -260 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 280.0, - "y": 44.0 + "x": 280, + "y": 44 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -760.0, - "y": -238.0 + "x": -760, + "y": -238 }, "Position": { - "x": -760.0, - "y": -238.0, - "z": 0.0 + "x": -760, + "y": -238, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -7828,33 +11071,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -7866,12 +11109,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -7881,20 +11124,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 26, "MaxSize": 26, @@ -7903,13 +11146,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -7928,7 +11171,7 @@ } }, { - "id": "0cb00008-0000-4000-8000-00000cb00008", + "id": "0cb00004-0000-4000-8000-00000cb00004", "path": "/ui/DefaultGroup/CombatHud/PlayerBlock", "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", "jsonString": { @@ -7964,47 +11207,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -620.0, - "y": -265.0 + "x": -620, + "y": -265 }, "OffsetMin": { - "x": -900.0, - "y": -303.0 + "x": -900, + "y": -303 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 280.0, - "y": 38.0 + "x": 280, + "y": 38 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -760.0, - "y": -284.0 + "x": -760, + "y": -284 }, "Position": { - "x": -760.0, - "y": -284.0, - "z": 0.0 + "x": -760, + "y": -284, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -8016,33 +11259,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -8054,12 +11297,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -8069,20 +11312,20 @@ "Alignment": 4, "Bold": false, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.6, "g": 0.8, - "b": 1.0, - "a": 1.0 + "b": 1, + "a": 1 }, "FontSize": 22, "MaxSize": 22, @@ -8091,13 +11334,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -8116,7 +11359,7 @@ } }, { - "id": "0cb00009-0000-4000-8000-00000cb00009", + "id": "0cb00005-0000-4000-8000-00000cb00005", "path": "/ui/DefaultGroup/CombatHud/Floor", "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", "jsonString": { @@ -8126,7 +11369,7 @@ "enable": true, "visible": true, "localize": true, - "displayOrder": 8, + "displayOrder": 9, "pathConstraints": "////", "revision": 1, "origin": { @@ -8152,47 +11395,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -700.0, - "y": 502.0 + "x": -700, + "y": 502 }, "OffsetMin": { - "x": -940.0, - "y": 458.0 + "x": -940, + "y": 458 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 240.0, - "y": 44.0 + "x": 240, + "y": 44 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -820.0, - "y": 480.0 + "x": -820, + "y": 480 }, "Position": { - "x": -820.0, - "y": 480.0, - "z": 0.0 + "x": -820, + "y": 480, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -8204,33 +11447,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -8242,12 +11485,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -8257,20 +11500,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.94, "g": 0.74, "b": 0.26, - "a": 1.0 + "a": 1 }, "FontSize": 26, "MaxSize": 26, @@ -8279,13 +11522,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -8304,7 +11547,7 @@ } }, { - "id": "0cb0000a-0000-4000-8000-00000cb0000a", + "id": "0cb00006-0000-4000-8000-00000cb00006", "path": "/ui/DefaultGroup/CombatHud/Gold", "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", "jsonString": { @@ -8340,47 +11583,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 940.0, - "y": 502.0 + "x": 940, + "y": 502 }, "OffsetMin": { - "x": 700.0, - "y": 458.0 + "x": 700, + "y": 458 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 240.0, - "y": 44.0 + "x": 240, + "y": 44 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 820.0, - "y": 480.0 + "x": 820, + "y": 480 }, "Position": { - "x": 820.0, - "y": 480.0, - "z": 0.0 + "x": 820, + "y": 480, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -8392,33 +11635,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -8430,12 +11673,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -8445,20 +11688,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.98, "g": 0.85, "b": 0.4, - "a": 1.0 + "a": 1 }, "FontSize": 26, "MaxSize": 26, @@ -8467,13 +11710,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -8492,7 +11735,7 @@ } }, { - "id": "0cb0000b-0000-4000-8000-00000cb0000b", + "id": "0cb00007-0000-4000-8000-00000cb00007", "path": "/ui/DefaultGroup/CombatHud/Relics", "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", "jsonString": { @@ -8502,7 +11745,7 @@ "enable": true, "visible": true, "localize": true, - "displayOrder": 10, + "displayOrder": 9, "pathConstraints": "////", "revision": 1, "origin": { @@ -8528,47 +11771,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 500.0, - "y": 450.0 + "x": 500, + "y": 450 }, "OffsetMin": { - "x": -500.0, - "y": 410.0 + "x": -500, + "y": 410 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 1000.0, - "y": 40.0 + "x": 1000, + "y": 40 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 430.0 + "x": 0, + "y": 430 }, "Position": { - "x": 0.0, - "y": 430.0, - "z": 0.0 + "x": 0, + "y": 430, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -8580,33 +11823,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -8618,12 +11861,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -8633,20 +11876,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.8, "g": 0.7, "b": 0.95, - "a": 1.0 + "a": 1 }, "FontSize": 22, "MaxSize": 22, @@ -8655,13 +11898,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -8680,7 +11923,7 @@ } }, { - "id": "0cb0000c-0000-4000-8000-00000cb0000c", + "id": "0cb00008-0000-4000-8000-00000cb00008", "path": "/ui/DefaultGroup/CombatHud/Result", "componentNames": "MOD.Core.UITransformComponent,MOD.Core.SpriteGUIRendererComponent,MOD.Core.TextComponent", "jsonString": { @@ -8690,7 +11933,7 @@ "enable": false, "visible": true, "localize": true, - "displayOrder": 11, + "displayOrder": 8, "pathConstraints": "////", "revision": 1, "origin": { @@ -8716,47 +11959,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 350.0, - "y": 190.0 + "x": 350, + "y": 190 }, "OffsetMin": { - "x": -350.0, - "y": 50.0 + "x": -350, + "y": 50 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 700.0, - "y": 140.0 + "x": 700, + "y": 140 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 120.0 + "x": 0, + "y": 120 }, "Position": { - "x": 0.0, - "y": 120.0, - "z": 0.0 + "x": 0, + "y": 120, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -8768,33 +12011,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -8806,12 +12049,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -8821,20 +12064,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.94, "g": 0.74, "b": 0.26, - "a": 1.0 + "a": 1 }, "FontSize": 64, "MaxSize": 64, @@ -8843,13 +12086,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -8878,7 +12121,7 @@ "enable": false, "visible": true, "localize": true, - "displayOrder": 7, + "displayOrder": 6, "pathConstraints": "///", "revision": 1, "origin": { @@ -8904,47 +12147,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 960.0, - "y": 540.0 + "x": 960, + "y": 540 }, "OffsetMin": { - "x": -960.0, - "y": -540.0 + "x": -960, + "y": -540 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 1920.0, - "y": 1080.0 + "x": 1920, + "y": 1080 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -8956,15 +12199,15 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { @@ -8974,15 +12217,15 @@ "a": 0.86 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -8994,12 +12237,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -9045,47 +12288,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 350.0, - "y": 332.0 + "x": 350, + "y": 332 }, "OffsetMin": { - "x": -350.0, - "y": 268.0 + "x": -350, + "y": 268 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 700.0, - "y": 64.0 + "x": 700, + "y": 64 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 300.0 + "x": 0, + "y": 300 }, "Position": { - "x": 0.0, - "y": 300.0, - "z": 0.0 + "x": 0, + "y": 300, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -9097,33 +12340,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -9135,12 +12378,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -9150,20 +12393,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.94, "g": 0.74, "b": 0.26, - "a": 1.0 + "a": 1 }, "FontSize": 44, "MaxSize": 44, @@ -9172,13 +12415,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -9233,47 +12476,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -210.0, - "y": 125.0 + "x": -210, + "y": 125 }, "OffsetMin": { - "x": -390.0, - "y": -125.0 + "x": -390, + "y": -125 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 180.0, - "y": 250.0 + "x": 180, + "y": 250 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -300.0, - "y": 0.0 + "x": -300, + "y": 0 }, "Position": { - "x": -300.0, - "y": 0.0, - "z": 0.0 + "x": -300, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -9285,33 +12528,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.86, "g": 0.42, "b": 0.38, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -9323,12 +12566,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -9337,28 +12580,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -9366,7 +12609,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -9421,47 +12664,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -35.0, - "y": 120.0 + "x": -35, + "y": 120 }, "OffsetMin": { - "x": -85.0, - "y": 70.0 + "x": -85, + "y": 70 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 50.0, - "y": 50.0 + "x": 50, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -60.0, - "y": 95.0 + "x": -60, + "y": 95 }, "Position": { - "x": -60.0, - "y": 95.0, - "z": 0.0 + "x": -60, + "y": 95, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -9473,33 +12716,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -9511,12 +12754,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -9526,20 +12769,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 34, "MaxSize": 34, @@ -9548,13 +12791,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -9609,47 +12852,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": 75.0 + "x": 80, + "y": 75 }, "OffsetMin": { - "x": -80.0, - "y": 25.0 + "x": -80, + "y": 25 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 50.0 + "x": 160, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 50.0 + "x": 0, + "y": 50 }, "Position": { - "x": 0.0, - "y": 50.0, - "z": 0.0 + "x": 0, + "y": 50, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -9661,33 +12904,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -9699,12 +12942,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -9714,20 +12957,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 26, "MaxSize": 26, @@ -9736,13 +12979,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -9797,47 +13040,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": -39.0 + "x": 80, + "y": -39 }, "OffsetMin": { - "x": -80.0, - "y": -121.0 + "x": -80, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 82.0 + "x": 160, + "y": 82 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -80.0 + "x": 0, + "y": -80 }, "Position": { - "x": 0.0, - "y": -80.0, - "z": 0.0 + "x": 0, + "y": -80, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -9849,33 +13092,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -9887,12 +13130,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -9902,20 +13145,20 @@ "Alignment": 4, "Bold": false, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -9924,13 +13167,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -9985,47 +13228,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 90.0, - "y": 125.0 + "x": 90, + "y": 125 }, "OffsetMin": { - "x": -90.0, - "y": -125.0 + "x": -90, + "y": -125 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 180.0, - "y": 250.0 + "x": 180, + "y": 250 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -10037,33 +13280,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.86, "g": 0.42, "b": 0.38, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -10075,12 +13318,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -10089,28 +13332,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -10118,7 +13361,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -10173,47 +13416,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -35.0, - "y": 120.0 + "x": -35, + "y": 120 }, "OffsetMin": { - "x": -85.0, - "y": 70.0 + "x": -85, + "y": 70 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 50.0, - "y": 50.0 + "x": 50, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -60.0, - "y": 95.0 + "x": -60, + "y": 95 }, "Position": { - "x": -60.0, - "y": 95.0, - "z": 0.0 + "x": -60, + "y": 95, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -10225,33 +13468,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -10263,12 +13506,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -10278,20 +13521,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 34, "MaxSize": 34, @@ -10300,13 +13543,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -10361,47 +13604,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": 75.0 + "x": 80, + "y": 75 }, "OffsetMin": { - "x": -80.0, - "y": 25.0 + "x": -80, + "y": 25 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 50.0 + "x": 160, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 50.0 + "x": 0, + "y": 50 }, "Position": { - "x": 0.0, - "y": 50.0, - "z": 0.0 + "x": 0, + "y": 50, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -10413,33 +13656,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -10451,12 +13694,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -10466,20 +13709,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 26, "MaxSize": 26, @@ -10488,13 +13731,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -10549,47 +13792,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": -39.0 + "x": 80, + "y": -39 }, "OffsetMin": { - "x": -80.0, - "y": -121.0 + "x": -80, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 82.0 + "x": 160, + "y": 82 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -80.0 + "x": 0, + "y": -80 }, "Position": { - "x": 0.0, - "y": -80.0, - "z": 0.0 + "x": 0, + "y": -80, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -10601,33 +13844,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -10639,12 +13882,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -10654,20 +13897,20 @@ "Alignment": 4, "Bold": false, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -10676,13 +13919,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -10737,47 +13980,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 390.0, - "y": 125.0 + "x": 390, + "y": 125 }, "OffsetMin": { - "x": 210.0, - "y": -125.0 + "x": 210, + "y": -125 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 180.0, - "y": 250.0 + "x": 180, + "y": 250 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 300.0, - "y": 0.0 + "x": 300, + "y": 0 }, "Position": { - "x": 300.0, - "y": 0.0, - "z": 0.0 + "x": 300, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -10789,33 +14032,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.86, "g": 0.42, "b": 0.38, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -10827,12 +14070,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -10841,28 +14084,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -10870,7 +14113,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -10925,47 +14168,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -35.0, - "y": 120.0 + "x": -35, + "y": 120 }, "OffsetMin": { - "x": -85.0, - "y": 70.0 + "x": -85, + "y": 70 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 50.0, - "y": 50.0 + "x": 50, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -60.0, - "y": 95.0 + "x": -60, + "y": 95 }, "Position": { - "x": -60.0, - "y": 95.0, - "z": 0.0 + "x": -60, + "y": 95, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -10977,33 +14220,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -11015,12 +14258,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -11030,20 +14273,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 34, "MaxSize": 34, @@ -11052,13 +14295,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -11113,47 +14356,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": 75.0 + "x": 80, + "y": 75 }, "OffsetMin": { - "x": -80.0, - "y": 25.0 + "x": -80, + "y": 25 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 50.0 + "x": 160, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 50.0 + "x": 0, + "y": 50 }, "Position": { - "x": 0.0, - "y": 50.0, - "z": 0.0 + "x": 0, + "y": 50, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -11165,33 +14408,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -11203,12 +14446,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -11218,20 +14461,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 26, "MaxSize": 26, @@ -11240,13 +14483,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -11301,47 +14544,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": -39.0 + "x": 80, + "y": -39 }, "OffsetMin": { - "x": -80.0, - "y": -121.0 + "x": -80, + "y": -121 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 82.0 + "x": 160, + "y": 82 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -80.0 + "x": 0, + "y": -80 }, "Position": { - "x": 0.0, - "y": -80.0, - "z": 0.0 + "x": 0, + "y": -80, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -11353,33 +14596,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -11391,12 +14634,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -11406,20 +14649,20 @@ "Alignment": 4, "Bold": false, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -11428,13 +14671,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -11463,7 +14706,7 @@ "enable": true, "visible": true, "localize": true, - "displayOrder": 4, + "displayOrder": 10, "pathConstraints": "////", "revision": 1, "origin": { @@ -11489,47 +14732,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 100.0, - "y": -230.0 + "x": 100, + "y": -230 }, "OffsetMin": { - "x": -100.0, - "y": -290.0 + "x": -100, + "y": -290 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 200.0, - "y": 60.0 + "x": 200, + "y": 60 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -260.0 + "x": 0, + "y": -260 }, "Position": { - "x": 0.0, - "y": -260.0, - "z": 0.0 + "x": 0, + "y": -260, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -11541,15 +14784,15 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { @@ -11559,15 +14802,15 @@ "a": 0.92 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -11579,12 +14822,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -11593,28 +14836,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -11622,7 +14865,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -11641,20 +14884,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.94, "g": 0.74, "b": 0.26, - "a": 1.0 + "a": 1 }, "FontSize": 26, "MaxSize": 26, @@ -11663,13 +14906,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -11698,7 +14941,7 @@ "enable": false, "visible": true, "localize": true, - "displayOrder": 8, + "displayOrder": 7, "pathConstraints": "///", "revision": 1, "origin": { @@ -11724,47 +14967,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 960.0, - "y": 540.0 + "x": 960, + "y": 540 }, "OffsetMin": { - "x": -960.0, - "y": -540.0 + "x": -960, + "y": -540 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 1920.0, - "y": 1080.0 + "x": 1920, + "y": 1080 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -11776,15 +15019,15 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { @@ -11794,15 +15037,15 @@ "a": 0.9 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -11814,12 +15057,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -11865,47 +15108,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 350.0, - "y": 540.0 + "x": 350, + "y": 540 }, "OffsetMin": { - "x": -350.0, - "y": 480.0 + "x": -350, + "y": 480 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 700.0, - "y": 60.0 + "x": 700, + "y": 60 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 510.0 + "x": 0, + "y": 510 }, "Position": { - "x": 0.0, - "y": 510.0, - "z": 0.0 + "x": 0, + "y": 510, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -11917,33 +15160,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -11955,12 +15198,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -11970,20 +15213,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.94, "g": 0.74, "b": 0.26, - "a": 1.0 + "a": 1 }, "FontSize": 40, "MaxSize": 40, @@ -11992,13 +15235,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -12053,47 +15296,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -105.0, - "y": -170.0 + "x": -105, + "y": -170 }, "OffsetMin": { - "x": -255.0, - "y": -250.0 + "x": -255, + "y": -250 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150.0, - "y": 80.0 + "x": 150, + "y": 80 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -180.0, - "y": -210.0 + "x": -180, + "y": -210 }, "Position": { - "x": -180.0, - "y": -210.0, - "z": 0.0 + "x": -180, + "y": -210, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -12105,33 +15348,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.3, "g": 0.55, "b": 0.85, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -12143,12 +15386,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -12157,28 +15400,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -12186,7 +15429,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -12241,47 +15484,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 72.0, - "y": 36.0 + "x": 72, + "y": 36 }, "OffsetMin": { - "x": -72.0, - "y": -36.0 + "x": -72, + "y": -36 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 144.0, - "y": 72.0 + "x": 144, + "y": 72 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -12293,33 +15536,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -12331,12 +15574,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -12346,20 +15589,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -12368,13 +15611,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -12403,7 +15646,7 @@ "enable": true, "visible": true, "localize": true, - "displayOrder": 2, + "displayOrder": 1, "pathConstraints": "////", "revision": 1, "origin": { @@ -12429,47 +15672,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 255.0, - "y": -170.0 + "x": 255, + "y": -170 }, "OffsetMin": { - "x": 105.0, - "y": -250.0 + "x": 105, + "y": -250 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150.0, - "y": 80.0 + "x": 150, + "y": 80 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 180.0, - "y": -210.0 + "x": 180, + "y": -210 }, "Position": { - "x": 180.0, - "y": -210.0, - "z": 0.0 + "x": 180, + "y": -210, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -12481,33 +15724,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.3, "g": 0.55, "b": 0.85, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -12519,12 +15762,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -12533,28 +15776,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -12562,7 +15805,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -12617,47 +15860,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 72.0, - "y": 36.0 + "x": 72, + "y": 36 }, "OffsetMin": { - "x": -72.0, - "y": -36.0 + "x": -72, + "y": -36 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 144.0, - "y": 72.0 + "x": 144, + "y": 72 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -12669,33 +15912,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -12707,12 +15950,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -12722,20 +15965,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -12744,13 +15987,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -12779,7 +16022,7 @@ "enable": true, "visible": true, "localize": true, - "displayOrder": 3, + "displayOrder": 2, "pathConstraints": "////", "revision": 1, "origin": { @@ -12805,47 +16048,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -105.0, - "y": -30.0 + "x": -105, + "y": -30 }, "OffsetMin": { - "x": -255.0, - "y": -110.0 + "x": -255, + "y": -110 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150.0, - "y": 80.0 + "x": 150, + "y": 80 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -180.0, - "y": -70.0 + "x": -180, + "y": -70 }, "Position": { - "x": -180.0, - "y": -70.0, - "z": 0.0 + "x": -180, + "y": -70, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -12857,33 +16100,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.3, "g": 0.55, "b": 0.85, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -12895,12 +16138,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -12909,28 +16152,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -12938,7 +16181,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -12993,47 +16236,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 72.0, - "y": 36.0 + "x": 72, + "y": 36 }, "OffsetMin": { - "x": -72.0, - "y": -36.0 + "x": -72, + "y": -36 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 144.0, - "y": 72.0 + "x": 144, + "y": 72 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -13045,33 +16288,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -13083,12 +16326,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -13098,20 +16341,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -13120,13 +16363,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -13155,7 +16398,7 @@ "enable": true, "visible": true, "localize": true, - "displayOrder": 4, + "displayOrder": 2, "pathConstraints": "////", "revision": 1, "origin": { @@ -13181,47 +16424,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 255.0, - "y": -30.0 + "x": 255, + "y": -30 }, "OffsetMin": { - "x": 105.0, - "y": -110.0 + "x": 105, + "y": -110 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150.0, - "y": 80.0 + "x": 150, + "y": 80 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 180.0, - "y": -70.0 + "x": 180, + "y": -70 }, "Position": { - "x": 180.0, - "y": -70.0, - "z": 0.0 + "x": 180, + "y": -70, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -13233,33 +16476,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.3, "g": 0.55, "b": 0.85, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -13271,12 +16514,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -13285,28 +16528,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -13314,7 +16557,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -13369,47 +16612,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 72.0, - "y": 36.0 + "x": 72, + "y": 36 }, "OffsetMin": { - "x": -72.0, - "y": -36.0 + "x": -72, + "y": -36 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 144.0, - "y": 72.0 + "x": 144, + "y": 72 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -13421,33 +16664,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -13459,12 +16702,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -13474,20 +16717,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -13496,13 +16739,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -13531,7 +16774,7 @@ "enable": true, "visible": true, "localize": true, - "displayOrder": 5, + "displayOrder": 3, "pathConstraints": "////", "revision": 1, "origin": { @@ -13557,47 +16800,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -105.0, - "y": 110.0 + "x": -105, + "y": 110 }, "OffsetMin": { - "x": -255.0, - "y": 30.0 + "x": -255, + "y": 30 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150.0, - "y": 80.0 + "x": 150, + "y": 80 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -180.0, - "y": 70.0 + "x": -180, + "y": 70 }, "Position": { - "x": -180.0, - "y": 70.0, - "z": 0.0 + "x": -180, + "y": 70, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -13609,33 +16852,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.3, "g": 0.55, "b": 0.85, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -13647,12 +16890,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -13661,28 +16904,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -13690,7 +16933,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -13745,47 +16988,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 72.0, - "y": 36.0 + "x": 72, + "y": 36 }, "OffsetMin": { - "x": -72.0, - "y": -36.0 + "x": -72, + "y": -36 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 144.0, - "y": 72.0 + "x": 144, + "y": 72 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -13797,33 +17040,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -13835,12 +17078,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -13850,20 +17093,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -13872,13 +17115,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -13907,7 +17150,7 @@ "enable": true, "visible": true, "localize": true, - "displayOrder": 6, + "displayOrder": 3, "pathConstraints": "////", "revision": 1, "origin": { @@ -13933,47 +17176,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 255.0, - "y": 110.0 + "x": 255, + "y": 110 }, "OffsetMin": { - "x": 105.0, - "y": 30.0 + "x": 105, + "y": 30 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150.0, - "y": 80.0 + "x": 150, + "y": 80 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 180.0, - "y": 70.0 + "x": 180, + "y": 70 }, "Position": { - "x": 180.0, - "y": 70.0, - "z": 0.0 + "x": 180, + "y": 70, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -13985,33 +17228,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.3, "g": 0.55, "b": 0.85, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -14023,12 +17266,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -14037,28 +17280,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -14066,7 +17309,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -14121,47 +17364,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 72.0, - "y": 36.0 + "x": 72, + "y": 36 }, "OffsetMin": { - "x": -72.0, - "y": -36.0 + "x": -72, + "y": -36 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 144.0, - "y": 72.0 + "x": 144, + "y": 72 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -14173,33 +17416,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -14211,12 +17454,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -14226,20 +17469,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -14248,13 +17491,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -14283,7 +17526,7 @@ "enable": true, "visible": true, "localize": true, - "displayOrder": 7, + "displayOrder": 4, "pathConstraints": "////", "revision": 1, "origin": { @@ -14309,47 +17552,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 75.0, - "y": 250.0 + "x": 75, + "y": 250 }, "OffsetMin": { - "x": -75.0, - "y": 170.0 + "x": -75, + "y": 170 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 150.0, - "y": 80.0 + "x": 150, + "y": 80 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 210.0 + "x": 0, + "y": 210 }, "Position": { - "x": 0.0, - "y": 210.0, - "z": 0.0 + "x": 0, + "y": 210, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -14361,33 +17604,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.3, "g": 0.55, "b": 0.85, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -14399,12 +17642,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -14413,28 +17656,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -14442,7 +17685,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -14497,47 +17740,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 72.0, - "y": 36.0 + "x": 72, + "y": 36 }, "OffsetMin": { - "x": -72.0, - "y": -36.0 + "x": -72, + "y": -36 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 144.0, - "y": 72.0 + "x": 144, + "y": 72 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -14549,33 +17792,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -14587,12 +17830,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -14602,20 +17845,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -14624,13 +17867,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -14659,7 +17902,7 @@ "enable": false, "visible": true, "localize": true, - "displayOrder": 9, + "displayOrder": 8, "pathConstraints": "///", "revision": 1, "origin": { @@ -14685,47 +17928,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 960.0, - "y": 540.0 + "x": 960, + "y": 540 }, "OffsetMin": { - "x": -960.0, - "y": -540.0 + "x": -960, + "y": -540 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 1920.0, - "y": 1080.0 + "x": 1920, + "y": 1080 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -14737,15 +17980,15 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { @@ -14755,15 +17998,15 @@ "a": 0.92 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -14775,12 +18018,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -14826,47 +18069,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 350.0, - "y": 430.0 + "x": 350, + "y": 430 }, "OffsetMin": { - "x": -350.0, - "y": 370.0 + "x": -350, + "y": 370 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 700.0, - "y": 60.0 + "x": 700, + "y": 60 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 400.0 + "x": 0, + "y": 400 }, "Position": { - "x": 0.0, - "y": 400.0, - "z": 0.0 + "x": 0, + "y": 400, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -14878,33 +18121,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -14916,12 +18159,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -14931,20 +18174,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.94, "g": 0.74, "b": 0.26, - "a": 1.0 + "a": 1 }, "FontSize": 44, "MaxSize": 44, @@ -14953,13 +18196,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -15014,47 +18257,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 150.0, - "y": 352.0 + "x": 150, + "y": 352 }, "OffsetMin": { - "x": -150.0, - "y": 308.0 + "x": -150, + "y": 308 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 300.0, - "y": 44.0 + "x": 300, + "y": 44 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 330.0 + "x": 0, + "y": 330 }, "Position": { - "x": 0.0, - "y": 330.0, - "z": 0.0 + "x": 0, + "y": 330, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -15066,33 +18309,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -15104,12 +18347,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -15119,20 +18362,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.98, "g": 0.85, "b": 0.4, - "a": 1.0 + "a": 1 }, "FontSize": 28, "MaxSize": 28, @@ -15141,13 +18384,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -15176,7 +18419,7 @@ "enable": true, "visible": true, "localize": true, - "displayOrder": 2, + "displayOrder": 1, "pathConstraints": "////", "revision": 1, "origin": { @@ -15202,47 +18445,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -210.0, - "y": 145.0 + "x": -210, + "y": 145 }, "OffsetMin": { - "x": -390.0, - "y": -105.0 + "x": -390, + "y": -105 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 180.0, - "y": 250.0 + "x": 180, + "y": 250 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -300.0, - "y": 20.0 + "x": -300, + "y": 20 }, "Position": { - "x": -300.0, - "y": 20.0, - "z": 0.0 + "x": -300, + "y": 20, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -15254,33 +18497,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.86, "g": 0.42, "b": 0.38, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -15292,12 +18535,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -15306,28 +18549,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -15335,7 +18578,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -15390,47 +18633,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -35.0, - "y": 120.0 + "x": -35, + "y": 120 }, "OffsetMin": { - "x": -85.0, - "y": 70.0 + "x": -85, + "y": 70 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 50.0, - "y": 50.0 + "x": 50, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -60.0, - "y": 95.0 + "x": -60, + "y": 95 }, "Position": { - "x": -60.0, - "y": 95.0, - "z": 0.0 + "x": -60, + "y": 95, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -15442,33 +18685,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -15480,12 +18723,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -15495,20 +18738,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 34, "MaxSize": 34, @@ -15517,13 +18760,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -15578,47 +18821,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": 75.0 + "x": 80, + "y": 75 }, "OffsetMin": { - "x": -80.0, - "y": 25.0 + "x": -80, + "y": 25 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 50.0 + "x": 160, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 50.0 + "x": 0, + "y": 50 }, "Position": { - "x": 0.0, - "y": 50.0, - "z": 0.0 + "x": 0, + "y": 50, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -15630,33 +18873,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -15668,12 +18911,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -15683,20 +18926,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 26, "MaxSize": 26, @@ -15705,13 +18948,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -15766,47 +19009,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": -20.0 + "x": 80, + "y": -20 }, "OffsetMin": { - "x": -80.0, - "y": -80.0 + "x": -80, + "y": -80 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 60.0 + "x": 160, + "y": 60 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -50.0 + "x": 0, + "y": -50 }, "Position": { - "x": 0.0, - "y": -50.0, - "z": 0.0 + "x": 0, + "y": -50, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -15818,33 +19061,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -15856,12 +19099,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -15871,20 +19114,20 @@ "Alignment": 4, "Bold": false, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -15893,13 +19136,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -15954,47 +19197,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": -85.0 + "x": 80, + "y": -85 }, "OffsetMin": { - "x": -80.0, - "y": -125.0 + "x": -80, + "y": -125 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 40.0 + "x": 160, + "y": 40 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -105.0 + "x": 0, + "y": -105 }, "Position": { - "x": 0.0, - "y": -105.0, - "z": 0.0 + "x": 0, + "y": -105, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -16006,33 +19249,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -16044,12 +19287,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -16059,20 +19302,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.98, "g": 0.85, "b": 0.4, - "a": 1.0 + "a": 1 }, "FontSize": 22, "MaxSize": 22, @@ -16081,13 +19324,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -16116,7 +19359,7 @@ "enable": true, "visible": true, "localize": true, - "displayOrder": 3, + "displayOrder": 2, "pathConstraints": "////", "revision": 1, "origin": { @@ -16142,47 +19385,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 90.0, - "y": 145.0 + "x": 90, + "y": 145 }, "OffsetMin": { - "x": -90.0, - "y": -105.0 + "x": -90, + "y": -105 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 180.0, - "y": 250.0 + "x": 180, + "y": 250 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 20.0 + "x": 0, + "y": 20 }, "Position": { - "x": 0.0, - "y": 20.0, - "z": 0.0 + "x": 0, + "y": 20, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -16194,33 +19437,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.86, "g": 0.42, "b": 0.38, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -16232,12 +19475,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -16246,28 +19489,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -16275,7 +19518,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -16330,47 +19573,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -35.0, - "y": 120.0 + "x": -35, + "y": 120 }, "OffsetMin": { - "x": -85.0, - "y": 70.0 + "x": -85, + "y": 70 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 50.0, - "y": 50.0 + "x": 50, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -60.0, - "y": 95.0 + "x": -60, + "y": 95 }, "Position": { - "x": -60.0, - "y": 95.0, - "z": 0.0 + "x": -60, + "y": 95, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -16382,33 +19625,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -16420,12 +19663,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -16435,20 +19678,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 34, "MaxSize": 34, @@ -16457,13 +19700,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -16518,47 +19761,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": 75.0 + "x": 80, + "y": 75 }, "OffsetMin": { - "x": -80.0, - "y": 25.0 + "x": -80, + "y": 25 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 50.0 + "x": 160, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 50.0 + "x": 0, + "y": 50 }, "Position": { - "x": 0.0, - "y": 50.0, - "z": 0.0 + "x": 0, + "y": 50, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -16570,33 +19813,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -16608,12 +19851,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -16623,20 +19866,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 26, "MaxSize": 26, @@ -16645,13 +19888,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -16706,47 +19949,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": -20.0 + "x": 80, + "y": -20 }, "OffsetMin": { - "x": -80.0, - "y": -80.0 + "x": -80, + "y": -80 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 60.0 + "x": 160, + "y": 60 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -50.0 + "x": 0, + "y": -50 }, "Position": { - "x": 0.0, - "y": -50.0, - "z": 0.0 + "x": 0, + "y": -50, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -16758,33 +20001,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -16796,12 +20039,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -16811,20 +20054,20 @@ "Alignment": 4, "Bold": false, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -16833,13 +20076,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -16894,47 +20137,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": -85.0 + "x": 80, + "y": -85 }, "OffsetMin": { - "x": -80.0, - "y": -125.0 + "x": -80, + "y": -125 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 40.0 + "x": 160, + "y": 40 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -105.0 + "x": 0, + "y": -105 }, "Position": { - "x": 0.0, - "y": -105.0, - "z": 0.0 + "x": 0, + "y": -105, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -16946,33 +20189,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -16984,12 +20227,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -16999,20 +20242,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.98, "g": 0.85, "b": 0.4, - "a": 1.0 + "a": 1 }, "FontSize": 22, "MaxSize": 22, @@ -17021,13 +20264,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -17056,7 +20299,7 @@ "enable": true, "visible": true, "localize": true, - "displayOrder": 4, + "displayOrder": 3, "pathConstraints": "////", "revision": 1, "origin": { @@ -17082,47 +20325,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 390.0, - "y": 145.0 + "x": 390, + "y": 145 }, "OffsetMin": { - "x": 210.0, - "y": -105.0 + "x": 210, + "y": -105 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 180.0, - "y": 250.0 + "x": 180, + "y": 250 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 300.0, - "y": 20.0 + "x": 300, + "y": 20 }, "Position": { - "x": 300.0, - "y": 20.0, - "z": 0.0 + "x": 300, + "y": 20, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -17134,33 +20377,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.86, "g": 0.42, "b": 0.38, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -17172,12 +20415,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -17186,28 +20429,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -17215,7 +20458,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -17270,47 +20513,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": -35.0, - "y": 120.0 + "x": -35, + "y": 120 }, "OffsetMin": { - "x": -85.0, - "y": 70.0 + "x": -85, + "y": 70 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 50.0, - "y": 50.0 + "x": 50, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": -60.0, - "y": 95.0 + "x": -60, + "y": 95 }, "Position": { - "x": -60.0, - "y": 95.0, - "z": 0.0 + "x": -60, + "y": 95, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -17322,33 +20565,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -17360,12 +20603,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -17375,20 +20618,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 34, "MaxSize": 34, @@ -17397,13 +20640,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -17458,47 +20701,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": 75.0 + "x": 80, + "y": 75 }, "OffsetMin": { - "x": -80.0, - "y": 25.0 + "x": -80, + "y": 25 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 50.0 + "x": 160, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 50.0 + "x": 0, + "y": 50 }, "Position": { - "x": 0.0, - "y": 50.0, - "z": 0.0 + "x": 0, + "y": 50, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -17510,33 +20753,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -17548,12 +20791,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -17563,20 +20806,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 26, "MaxSize": 26, @@ -17585,13 +20828,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -17646,47 +20889,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": -20.0 + "x": 80, + "y": -20 }, "OffsetMin": { - "x": -80.0, - "y": -80.0 + "x": -80, + "y": -80 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 60.0 + "x": 160, + "y": 60 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -50.0 + "x": 0, + "y": -50 }, "Position": { - "x": 0.0, - "y": -50.0, - "z": 0.0 + "x": 0, + "y": -50, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -17698,33 +20941,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -17736,12 +20979,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -17751,20 +20994,20 @@ "Alignment": 4, "Bold": false, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -17773,13 +21016,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -17834,47 +21077,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 80.0, - "y": -85.0 + "x": 80, + "y": -85 }, "OffsetMin": { - "x": -80.0, - "y": -125.0 + "x": -80, + "y": -125 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 160.0, - "y": 40.0 + "x": 160, + "y": 40 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -105.0 + "x": 0, + "y": -105 }, "Position": { - "x": 0.0, - "y": -105.0, - "z": 0.0 + "x": 0, + "y": -105, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -17886,33 +21129,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -17924,12 +21167,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -17939,20 +21182,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.98, "g": 0.85, "b": 0.4, - "a": 1.0 + "a": 1 }, "FontSize": 22, "MaxSize": 22, @@ -17961,13 +21204,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -17996,7 +21239,7 @@ "enable": true, "visible": true, "localize": true, - "displayOrder": 5, + "displayOrder": 9, "pathConstraints": "////", "revision": 1, "origin": { @@ -18022,47 +21265,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 280.0, - "y": -152.0 + "x": 280, + "y": -152 }, "OffsetMin": { - "x": -280.0, - "y": -228.0 + "x": -280, + "y": -228 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 560.0, - "y": 76.0 + "x": 560, + "y": 76 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -190.0 + "x": 0, + "y": -190 }, "Position": { - "x": 0.0, - "y": -190.0, - "z": 0.0 + "x": 0, + "y": -190, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -18074,33 +21317,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.7, "g": 0.55, "b": 0.85, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -18112,12 +21355,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -18126,28 +21369,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -18155,7 +21398,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -18210,47 +21453,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 270.0, - "y": 32.0 + "x": 270, + "y": 32 }, "OffsetMin": { - "x": -270.0, - "y": -8.0 + "x": -270, + "y": -8 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 540.0, - "y": 40.0 + "x": 540, + "y": 40 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 12.0 + "x": 0, + "y": 12 }, "Position": { - "x": 0.0, - "y": 12.0, - "z": 0.0 + "x": 0, + "y": 12, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -18262,33 +21505,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -18300,12 +21543,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -18315,20 +21558,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 22, "MaxSize": 22, @@ -18337,13 +21580,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -18398,47 +21641,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 270.0, - "y": -7.0 + "x": 270, + "y": -7 }, "OffsetMin": { - "x": -270.0, - "y": -37.0 + "x": -270, + "y": -37 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 540.0, - "y": 30.0 + "x": 540, + "y": 30 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -22.0 + "x": 0, + "y": -22 }, "Position": { - "x": 0.0, - "y": -22.0, - "z": 0.0 + "x": 0, + "y": -22, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -18450,33 +21693,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -18488,12 +21731,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -18503,20 +21746,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.98, "g": 0.85, "b": 0.4, - "a": 1.0 + "a": 1 }, "FontSize": 20, "MaxSize": 20, @@ -18525,13 +21768,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -18560,7 +21803,7 @@ "enable": true, "visible": true, "localize": true, - "displayOrder": 6, + "displayOrder": 10, "pathConstraints": "////", "revision": 1, "origin": { @@ -18586,47 +21829,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 100.0, - "y": -270.0 + "x": 100, + "y": -270 }, "OffsetMin": { - "x": -100.0, - "y": -330.0 + "x": -100, + "y": -330 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 200.0, - "y": 60.0 + "x": 200, + "y": 60 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -300.0 + "x": 0, + "y": -300 }, "Position": { - "x": 0.0, - "y": -300.0, - "z": 0.0 + "x": 0, + "y": -300, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -18638,15 +21881,15 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { @@ -18656,15 +21899,15 @@ "a": 0.92 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -18676,12 +21919,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -18690,28 +21933,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -18719,7 +21962,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -18738,20 +21981,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.94, "g": 0.74, "b": 0.26, - "a": 1.0 + "a": 1 }, "FontSize": 26, "MaxSize": 26, @@ -18760,13 +22003,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -18795,7 +22038,7 @@ "enable": false, "visible": true, "localize": true, - "displayOrder": 10, + "displayOrder": 9, "pathConstraints": "///", "revision": 1, "origin": { @@ -18821,47 +22064,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 960.0, - "y": 540.0 + "x": 960, + "y": 540 }, "OffsetMin": { - "x": -960.0, - "y": -540.0 + "x": -960, + "y": -540 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 1920.0, - "y": 1080.0 + "x": 1920, + "y": 1080 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -18873,15 +22116,15 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { @@ -18891,15 +22134,15 @@ "a": 0.92 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -18911,12 +22154,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -18962,47 +22205,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 350.0, - "y": 170.0 + "x": 350, + "y": 170 }, "OffsetMin": { - "x": -350.0, - "y": 110.0 + "x": -350, + "y": 110 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 700.0, - "y": 60.0 + "x": 700, + "y": 60 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 140.0 + "x": 0, + "y": 140 }, "Position": { - "x": 0.0, - "y": 140.0, - "z": 0.0 + "x": 0, + "y": 140, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -19014,33 +22257,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -19052,12 +22295,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -19067,20 +22310,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.94, "g": 0.74, "b": 0.26, - "a": 1.0 + "a": 1 }, "FontSize": 44, "MaxSize": 44, @@ -19089,13 +22332,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -19150,47 +22393,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 300.0, - "y": 55.0 + "x": 300, + "y": 55 }, "OffsetMin": { - "x": -300.0, - "y": 5.0 + "x": -300, + "y": 5 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 600.0, - "y": 50.0 + "x": 600, + "y": 50 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 30.0 + "x": 0, + "y": 30 }, "Position": { - "x": 0.0, - "y": 30.0, - "z": 0.0 + "x": 0, + "y": 30, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -19202,33 +22445,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -19240,12 +22483,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -19255,20 +22498,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "FontSize": 30, "MaxSize": 30, @@ -19277,13 +22520,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -19338,47 +22581,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 100.0, - "y": -90.0 + "x": 100, + "y": -90 }, "OffsetMin": { - "x": -100.0, - "y": -150.0 + "x": -100, + "y": -150 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 200.0, - "y": 60.0 + "x": 200, + "y": 60 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -120.0 + "x": 0, + "y": -120 }, "Position": { - "x": 0.0, - "y": -120.0, - "z": 0.0 + "x": 0, + "y": -120, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -19390,15 +22633,15 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { @@ -19408,15 +22651,15 @@ "a": 0.92 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -19428,12 +22671,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -19442,28 +22685,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -19471,7 +22714,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -19490,20 +22733,20 @@ "Alignment": 4, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.94, "g": 0.74, "b": 0.26, - "a": 1.0 + "a": 1 }, "FontSize": 26, "MaxSize": 26, @@ -19512,13 +22755,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -19547,7 +22790,7 @@ "enable": true, "visible": true, "localize": true, - "displayOrder": 11, + "displayOrder": 20, "pathConstraints": "///", "revision": 1, "origin": { @@ -19573,47 +22816,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 960.0, - "y": 540.0 + "x": 960, + "y": 540 }, "OffsetMin": { - "x": -960.0, - "y": -540.0 + "x": -960, + "y": -540 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 1920.0, - "y": 1080.0 + "x": 1920, + "y": 1080 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "Position": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -19625,15 +22868,15 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { @@ -19643,15 +22886,15 @@ "a": 0.96 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -19663,12 +22906,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -19714,47 +22957,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 360.0, - "y": 230.0 + "x": 360, + "y": 230 }, "OffsetMin": { - "x": -360.0, - "y": 130.0 + "x": -360, + "y": 130 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 720.0, - "y": 100.0 + "x": 720, + "y": 100 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 180.0 + "x": 0, + "y": 180 }, "Position": { - "x": 0.0, - "y": 180.0, - "z": 0.0 + "x": 0, + "y": 180, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -19766,33 +23009,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -19804,12 +23047,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -19819,20 +23062,20 @@ "Alignment": 0, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.94, "g": 0.74, "b": 0.26, - "a": 1.0 + "a": 1 }, "FontSize": 64, "MaxSize": 64, @@ -19841,13 +23084,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -19902,47 +23145,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 380.0, - "y": 128.0 + "x": 380, + "y": 128 }, "OffsetMin": { - "x": -380.0, - "y": 80.0 + "x": -380, + "y": 80 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 760.0, - "y": 48.0 + "x": 760, + "y": 48 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": 104.0 + "x": 0, + "y": 104 }, "Position": { - "x": 0.0, - "y": 104.0, - "z": 0.0 + "x": 0, + "y": 104, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -19954,33 +23197,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 0.0 + "r": 0, + "g": 0, + "b": 0, + "a": 0 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -19992,12 +23235,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -20007,20 +23250,20 @@ "Alignment": 0, "Bold": false, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.82, "g": 0.86, "b": 0.9, - "a": 1.0 + "a": 1 }, "FontSize": 24, "MaxSize": 24, @@ -20029,13 +23272,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -20090,47 +23333,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 130.0, - "y": 14.0 + "x": 130, + "y": 14 }, "OffsetMin": { - "x": -130.0, - "y": -54.0 + "x": -130, + "y": -54 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 260.0, - "y": 68.0 + "x": 260, + "y": 68 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -20.0 + "x": 0, + "y": -20 }, "Position": { - "x": 0.0, - "y": -20.0, - "z": 0.0 + "x": 0, + "y": -20, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -20142,33 +23385,33 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { "r": 0.13, "g": 0.15, "b": 0.18, - "a": 1.0 + "a": 1 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -20180,12 +23423,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": true, "Type": 1, "Enable": true @@ -20194,28 +23437,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -20223,7 +23466,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -20242,20 +23485,20 @@ "Alignment": 0, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.94, "g": 0.74, "b": 0.26, - "a": 1.0 + "a": 1 }, "FontSize": 30, "MaxSize": 30, @@ -20264,13 +23507,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": { @@ -20325,47 +23568,47 @@ }, "MobileOnly": false, "OffsetMax": { - "x": 130.0, - "y": -71.0 + "x": 130, + "y": -71 }, "OffsetMin": { - "x": -130.0, - "y": -129.0 + "x": -130, + "y": -129 }, "Pivot": { "x": 0.5, "y": 0.5 }, "RectSize": { - "x": 260.0, - "y": 58.0 + "x": 260, + "y": 58 }, "UIMode": 1, "UIScale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "UIVersion": 2, "anchoredPosition": { - "x": 0.0, - "y": -100.0 + "x": 0, + "y": -100 }, "Position": { - "x": 0.0, - "y": -100.0, - "z": 0.0 + "x": 0, + "y": -100, + "z": 0 }, "QuaternionRotation": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "w": 1.0 + "x": 0, + "y": 0, + "z": 0, + "w": 1 }, "Scale": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 }, "Enable": true }, @@ -20377,15 +23620,15 @@ "DataId": "" }, "LocalPosition": { - "x": 0.0, - "y": 0.0 + "x": 0, + "y": 0 }, "LocalScale": { - "x": 1.0, - "y": 1.0 + "x": 1, + "y": 1 }, "OverrideSorting": false, - "PlayRate": 1.0, + "PlayRate": 1, "PreserveSprite": 0, "StartFrameIndex": 0, "Color": { @@ -20395,15 +23638,15 @@ "a": 0.78 }, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, - "FillAmount": 1.0, + "DropShadowDistance": 32, + "FillAmount": 1, "FillCenter": true, "FillClockWise": true, "FillMethod": 0, @@ -20415,12 +23658,12 @@ "FrameRow": 1, "Outline": false, "OutlineColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, - "a": 1.0 + "r": 0, + "g": 0, + "b": 0, + "a": 1 }, - "OutlineWidth": 3.0, + "OutlineWidth": 3, "RaycastTarget": false, "Type": 1, "Enable": true @@ -20429,28 +23672,28 @@ "@type": "MOD.Core.ButtonComponent", "Colors": { "NormalColor": { - "r": 1.0, - "g": 1.0, - "b": 1.0, - "a": 1.0 + "r": 1, + "g": 1, + "b": 1, + "a": 1 }, "HighlightedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "PressedColor": { "r": 0.784313738, "g": 0.784313738, "b": 0.784313738, - "a": 1.0 + "a": 1 }, "SelectedColor": { "r": 0.9607843, "g": 0.9607843, "b": 0.9607843, - "a": 1.0 + "a": 1 }, "DisabledColor": { "r": 0.784313738, @@ -20458,7 +23701,7 @@ "b": 0.784313738, "a": 0.5019608 }, - "ColorMultiplier": 1.0, + "ColorMultiplier": 1, "FadeDuration": 0.1 }, "ImageRUIDs": { @@ -20477,20 +23720,20 @@ "Alignment": 0, "Bold": true, "DropShadow": false, - "DropShadowAngle": 30.0, + "DropShadowAngle": 30, "DropShadowColor": { - "r": 0.0, - "g": 0.0, - "b": 0.0, + "r": 0, + "g": 0, + "b": 0, "a": 0.72 }, - "DropShadowDistance": 32.0, + "DropShadowDistance": 32, "Font": 0, "FontColor": { "r": 0.55, "g": 0.58, "b": 0.62, - "a": 1.0 + "a": 1 }, "FontSize": 24, "MaxSize": 24, @@ -20499,13 +23742,13 @@ "r": 0.08, "g": 0.08, "b": 0.08, - "a": 1.0 + "a": 1 }, "OutlineDistance": { - "x": 1.0, - "y": -1.0 + "x": 1, + "y": -1 }, - "OutlineWidth": 1.0, + "OutlineWidth": 1, "Overflow": 0, "OverrideSorting": false, "Padding": {