From eafb90ef72709e6b81bbd88e536ee5792e5b1cbd Mon Sep 17 00:00:00 2001 From: ren19890419 <302842818@qq.com> Date: Mon, 30 May 2016 16:52:58 +0800 Subject: [PATCH 01/12] =?UTF-8?q?=E5=8D=87=E7=BA=A7unity=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/StriveGame/Scripts/Common/LuaLoader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/StriveGame/Scripts/Common/LuaLoader.cs b/Assets/StriveGame/Scripts/Common/LuaLoader.cs index 616629c..6116cfc 100644 --- a/Assets/StriveGame/Scripts/Common/LuaLoader.cs +++ b/Assets/StriveGame/Scripts/Common/LuaLoader.cs @@ -31,7 +31,7 @@ public LuaLoader() { public void AddBundle(string bundleName) { string url = Util.DataPath + bundleName.ToLower(); if (File.Exists(url)) { - AssetBundle bundle = AssetBundle.CreateFromFile(url); + AssetBundle bundle = AssetBundle.LoadFromFile(url); if (bundle != null) { bundleName = bundleName.Replace("Lua/", ""); From 604866fe844d95d2fc428562d034945d07f18b87 Mon Sep 17 00:00:00 2001 From: ren19890419 <302842818@qq.com> Date: Fri, 17 Jun 2016 09:06:20 +0800 Subject: [PATCH 02/12] --- Assets/StriveGame/Editor/CustomSettings.cs | 15 +- Assets/StriveGame/Editor/Packager.cs | 7 +- Assets/StriveGame/Lua/Common/define.lua | 6 +- .../Lua/Controller/GameWorldCtrl.lua | 56 +- .../StriveGame/Lua/Controller/LoginCtrl.lua | 4 +- .../Lua/Controller/MessageBoxCtrl.lua | 72 + .../Lua/Controller/SelectAvatarCtrl.lua | 13 +- Assets/StriveGame/Lua/KbePlugins/Entity.lua | 5 +- Assets/StriveGame/Lua/KbePlugins/KBEngine.lua | 5 + Assets/StriveGame/Lua/Logic/Character.lua | 26 +- Assets/StriveGame/Lua/Logic/World.lua | 55 +- Assets/StriveGame/Lua/View/GameWorldPanel.lua | 5 +- .../StriveGame/Lua/View/MessageBoxPanel.lua | 34 + Assets/StriveGame/Lua/kbe/Avatar.lua | 10 + .../Lua/kbe/Interface/GameObject.lua | 12 + Assets/StriveGame/Res/Model/player.prefab | 2532 +++++++++-------- .../StriveGame/Res/View/GameWorldPanel.prefab | 837 ++++-- .../Res/View/MessageBoxPanel.prefab | 664 +++++ Assets/StriveGame/Scenes/main.unity | 131 +- .../StriveGame/Scripts/Common/LuaBehaviour.cs | 4 + .../ToLua/Source/Generate/DelegateFactory.cs | 545 +++- .../ToLua/Source/Generate/LuaBinder.cs | 479 +++- ProjectSettings/GraphicsSettings.asset | 14 +- ProjectSettings/ProjectSettings.asset | 68 +- ProjectSettings/ProjectVersion.txt | 2 +- ProjectSettings/QualitySettings.asset | 48 +- 26 files changed, 4093 insertions(+), 1556 deletions(-) create mode 100644 Assets/StriveGame/Lua/Controller/MessageBoxCtrl.lua create mode 100644 Assets/StriveGame/Lua/View/MessageBoxPanel.lua create mode 100644 Assets/StriveGame/Res/View/MessageBoxPanel.prefab diff --git a/Assets/StriveGame/Editor/CustomSettings.cs b/Assets/StriveGame/Editor/CustomSettings.cs index f40f513..3e1bfd5 100644 --- a/Assets/StriveGame/Editor/CustomSettings.cs +++ b/Assets/StriveGame/Editor/CustomSettings.cs @@ -48,8 +48,9 @@ public static class CustomSettings //_GT(typeof(KeyValuePair)), //------------------------------------------------------------------- - _GT(typeof(Debugger)), - + _GT(typeof(Debugger)), + + _GT(typeof(Color)), _GT(typeof(Component)), _GT(typeof(Behaviour)), _GT(typeof(MonoBehaviour)), @@ -82,7 +83,7 @@ public static class CustomSettings _GT(typeof(KeyCode)), _GT(typeof(SkinnedMeshRenderer)), _GT(typeof(Space)), - + _GT(typeof(MeshRenderer)), _GT(typeof(ParticleEmitter)), _GT(typeof(ParticleRenderer)), @@ -114,7 +115,8 @@ public static class CustomSettings _GT(typeof(InputField)), _GT(typeof(Toggle)), _GT(typeof(Scrollbar)), - + _GT(typeof(Slider)), + _GT(typeof(Util)), _GT(typeof(AppConst)), _GT(typeof(LuaHelper)), @@ -135,7 +137,10 @@ public static class CustomSettings _GT(typeof(KBEngine.PersistentInofs)), _GT(typeof(EasyJoystick)), _GT(typeof(MovingJoystick)), - + + //UGUI HUD TEXT + _GT(typeof(bl_HUDText)).SetBaseType(typeof(System.Object)), + }; public static List dynamicList = new List() diff --git a/Assets/StriveGame/Editor/Packager.cs b/Assets/StriveGame/Editor/Packager.cs index ad24c6b..98c51ba 100644 --- a/Assets/StriveGame/Editor/Packager.cs +++ b/Assets/StriveGame/Editor/Packager.cs @@ -66,9 +66,11 @@ public static void BuildAssetResource(BuildTarget target) { AssetDatabase.Refresh(); maps.Clear(); - if (AppConst.LuaBundleMode) { + if (AppConst.LuaBundleMode) + { HandleLuaBundle(); - } else { + } + else { HandleLuaFile(); } @@ -166,6 +168,7 @@ static void HandleResBundle() AddBuildMap("CreateAvatar" + AppConst.ExtName, "CreateAvatarPanel.prefab", "Assets/StriveGame/Res/View"); AddBuildMap("Login" + AppConst.ExtName, "LoginPanel.prefab", "Assets/StriveGame/Res/View"); + AddBuildMap("MessageBox" + AppConst.ExtName, "MessageBoxPanel.prefab", "Assets/StriveGame/Res/View"); AddBuildMap("SelectAvatar" + AppConst.ExtName, "SelectAvatarPanel.prefab", "Assets/StriveGame/Res/View"); AddBuildMap("GameWorld" + AppConst.ExtName, "GameWorldPanel.prefab", "Assets/StriveGame/Res/View"); AddBuildMap("Model" + AppConst.ExtName, "*.prefab", "Assets/StriveGame/Res/Model"); diff --git a/Assets/StriveGame/Lua/Common/define.lua b/Assets/StriveGame/Lua/Common/define.lua index 35e76d8..7fea179 100644 --- a/Assets/StriveGame/Lua/Common/define.lua +++ b/Assets/StriveGame/Lua/Common/define.lua @@ -3,14 +3,16 @@ CtrlNames = { Login = "LoginCtrl", SelectAvatar = "SelectAvatarCtrl", CreateAvatar = "CreateAvatarCtrl", - GameWorld = "GameWorldCtrl", + GameWorld = "GameWorldCtrl", + MsgBox = "MessageBoxCtrl", } PanelNames = { "LoginPanel", "SelectAvatarPanel", "CreateAvatarPanel", - "GameWorldPanel", + "GameWorldPanel", + "MessageBoxPanel", } --协议类型-- diff --git a/Assets/StriveGame/Lua/Controller/GameWorldCtrl.lua b/Assets/StriveGame/Lua/Controller/GameWorldCtrl.lua index 6aa02f6..48f2a03 100644 --- a/Assets/StriveGame/Lua/Controller/GameWorldCtrl.lua +++ b/Assets/StriveGame/Lua/Controller/GameWorldCtrl.lua @@ -1,4 +1,5 @@ require "Common/define" +require "Controller/MessageBoxCtrl" GameWorldCtrl = {}; local this = GameWorldCtrl; @@ -9,13 +10,15 @@ local gameObject; --构建函数-- function GameWorldCtrl.New() - logWarn("GameWorldCtrl.New--->>"); - return this; + logWarn("GameWorldCtrl.New--->>"); + GameWorldCtrl.hasAwake = 0; + return this; end function GameWorldCtrl.Awake() - logWarn("GameWorldCtrl.Awake--->>"); - panelMgr:CreatePanel('GameWorld', this.OnCreate); + logWarn("GameWorldCtrl.Awake--->>"); + panelMgr:CreatePanel('GameWorld', this.OnCreate); + GameWorldCtrl.hasAwake = 1; end --启动事件-- @@ -29,21 +32,28 @@ function GameWorldCtrl.OnCreate(obj) GameWorld:AddClick(GameWorldPanel.btnSend, this.OnSendMessage); logWarn("Start lua--->>"..gameObject.name); + Event.AddListener("OnDie", this.OnDie); + Event.AddListener("Set_HP", this.Set_HP); + Event.AddListener("Set_HP_Max", this.Set_HP_Max); + Event.AddListener("Set_PlayerName", this.Set_PlayerName); + Event.AddListener("ReceiveChatMessage", this.ReceiveChatMessage); - Event.AddListener("OnDie", this.OnDie); - Event.AddListener("ReceiveChatMessage", this.ReceiveChatMessage); - - local p = KBEngineLua.player(); - if p ~= nil then + if p ~= nil then this.OnDie(p.state); end end +function GameWorldCtrl.onclick() + print("rensiwei onclick callback") +end + --复活-- function GameWorldCtrl.OnRelive(go) - local p = KBEngineLua.player(); + MessageBoxCtrl.SetInfo("0000","123456789",GameWorldCtrl.onclick); + MessageBoxCtrl.Show(); + local p = KBEngineLua.player(); if p ~= nil then p:relive(1); end @@ -79,6 +89,32 @@ function GameWorldCtrl.OnDie(v) end end +--------主角头像--- +function GameWorldCtrl.Set_HP(hp) + local slider_hp = GameWorldPanel.Panel_PlayerHead.transform:FindChild("Slider_HP"):GetComponent("Slider"); + local hp_player = GameWorldPanel.Panel_PlayerHead.transform:FindChild("Text_HP"):GetComponent("Text"); + if hp >= 0 then + slider_hp.value = hp; + hp_player.text = hp.. "/" .. slider_hp.maxValue; + end +end +-------设置HP最大值-- +function GameWorldCtrl.Set_HP_Max(value) + local slider_hp = GameWorldPanel.Panel_PlayerHead.transform:FindChild("Slider_HP"):GetComponent("Slider"); + if value > 0 then + slider_hp.maxValue = value; + end +end +----- 设置主角名字-- +function GameWorldCtrl.Set_PlayerName(name) + if (nil ~= GameWorldPanel.Panel_PlayerHead) then + local name_text = GameWorldPanel.Panel_PlayerHead.transform:FindChild("Text_PlayerName"):GetComponent("Text"); + if(string.len(name) >= 0 ) then + name_text.text = name; + end + end +end + --接受信息 function GameWorldCtrl.ReceiveChatMessage(msg) local text = GameWorldPanel.textContent:GetComponent("Text"); diff --git a/Assets/StriveGame/Lua/Controller/LoginCtrl.lua b/Assets/StriveGame/Lua/Controller/LoginCtrl.lua index 94b6121..0b04d11 100644 --- a/Assets/StriveGame/Lua/Controller/LoginCtrl.lua +++ b/Assets/StriveGame/Lua/Controller/LoginCtrl.lua @@ -32,8 +32,10 @@ function LoginCtrl.OnCreate(obj) Event.AddListener("onLoginSuccessfully", this.onLoginSuccessfully); Event.AddListener("onLoginFailed", this.onLoginFailed); Event.AddListener("onCreateAccountResult", this.onCreateAccountResult); - Event.AddListener("onReqAvatarList", this.onReqAvatarList); + Event.AddListener("onReqAvatarList", this.onReqAvatarList); + LoginPanel.inputUsername:GetComponent('InputField').text = "zl111"; + LoginPanel.inputPassword:GetComponent('InputField').text = "123456"; end --登录-- diff --git a/Assets/StriveGame/Lua/Controller/MessageBoxCtrl.lua b/Assets/StriveGame/Lua/Controller/MessageBoxCtrl.lua new file mode 100644 index 0000000..61abf55 --- /dev/null +++ b/Assets/StriveGame/Lua/Controller/MessageBoxCtrl.lua @@ -0,0 +1,72 @@ +require "Common/define" + +MessageBoxCtrl = {}; +local this = MessageBoxCtrl; + +local MessageBox; +local transform; +local gameObject; + +--构建函数-- +function MessageBoxCtrl.New() + logWarn("MessageBoxCtrl.New--->>"); + return this; +end + +function MessageBoxCtrl.Awake() + local canvas = find("Canvas"); + if (canvas.transform:Find("MessageBoxPanel") ~= nil) then + this.Show(); + print("MessageBoxPanel have been created!"); + return; + end + logWarn("MessageBoxCtrl.Awake--->>"); + panelMgr:CreatePanel('MessageBox', this.OnCreate); +end + +--启动事件-- +function MessageBoxCtrl.OnCreate(obj) + gameObject = obj; + + MessageBox = gameObject:GetComponent('LuaBehaviour'); + MessageBox:AddClick(MessageBoxPanel.btnOK, this.OnOK); + MessageBox:AddClick(MessageBoxPanel.btnCancle, this.OnCancle); + + logWarn("Start lua--->>"..gameObject.name); + + MessageBoxPanel.txtTitle:GetComponent('Text').text = "title"; + MessageBoxPanel.txtContent:GetComponent('Text').text = "content"; +end + + +function MessageBoxCtrl.OnOK(go) + if (MessageBoxPanel.onClick ~= nil) then + MessageBoxPanel.onClick(); + end + this.Hide(); +end + +function MessageBoxCtrl.OnCancle(go) + this.Hide(); +end + +function MessageBoxCtrl.Hide() + local panel_MsgBox = find("MessageBoxPanel"); + if panel_MsgBox ~= nil then + panel_MsgBox:SetActive(false); + end +end + +function MessageBoxCtrl.Show() + local canvas = find("Canvas"); + local panel_MsgBox = canvas.transform:Find("MessageBoxPanel").gameObject; + if panel_MsgBox ~= nil then + panel_MsgBox:SetActive(true); + end; +end + +function MessageBoxCtrl.SetInfo(strTitle, strContent,onClick) + MessageBoxPanel.txtTitle:GetComponent('Text').text = strTitle; + MessageBoxPanel.txtContent:GetComponent('Text').text = strContent; + MessageBoxPanel.onClick = onClick; +end diff --git a/Assets/StriveGame/Lua/Controller/SelectAvatarCtrl.lua b/Assets/StriveGame/Lua/Controller/SelectAvatarCtrl.lua index e258bf2..50acb9b 100644 --- a/Assets/StriveGame/Lua/Controller/SelectAvatarCtrl.lua +++ b/Assets/StriveGame/Lua/Controller/SelectAvatarCtrl.lua @@ -87,14 +87,21 @@ function SelectAvatarCtrl.OnReqEnterGame(go) name = SelectAvatarPanel.btnAvatar[i].transform:FindChild('Label'):GetComponent('Text').text; break; end + end + if nil == name then + name = SelectAvatarPanel.btnAvatar[1].transform:FindChild('Label'):GetComponent('Text').text; end - for key, value in pairs(this.avatars) do + for key, value in pairs(this.avatars) do if value["name"] == name then dbid = key; end end - p:reqSelectAvatarGame(dbid); - end + p:reqSelectAvatarGame(dbid); + if(0 == GameWorldCtrl.hasAwake) then + GameWorldCtrl.Awake(); + end + end + this.Close(); end --------------------数据发过来的事件----------------------------- diff --git a/Assets/StriveGame/Lua/KbePlugins/Entity.lua b/Assets/StriveGame/Lua/KbePlugins/Entity.lua index 30d90e4..8367c0f 100644 --- a/Assets/StriveGame/Lua/KbePlugins/Entity.lua +++ b/Assets/StriveGame/Lua/KbePlugins/Entity.lua @@ -45,8 +45,9 @@ KBEngineLua.Entity.callPropertysSetMethods = function(self) local oldval = self[name]; if(setmethod ~= nil) then - -- base类属性或者进入世界后cell类属性会触发set_*方法 - if(flags == 0x00000020 or flags == 0x00000040) then + -- base类属性或者进入世界后cell类属性会触发set_*方法 + print("rensiwei_"..self.className.."_callPropertysSetMethods_"..name); + if(flags == 0x00000020 or flags == 0x00000040) then if(self.inited and not self.inWorld) then setmethod(self, oldval); end diff --git a/Assets/StriveGame/Lua/KbePlugins/KBEngine.lua b/Assets/StriveGame/Lua/KbePlugins/KBEngine.lua index b51b3a6..a1b00e7 100644 --- a/Assets/StriveGame/Lua/KbePlugins/KBEngine.lua +++ b/Assets/StriveGame/Lua/KbePlugins/KBEngine.lua @@ -38,6 +38,7 @@ KBEngineLua.KBE_FLT_MAX = 3.402823466e+38; KBEngineLua.entity_uuid = nil; KBEngineLua.entity_id = 0; KBEngineLua.entity_type = ""; + -- 当前玩家最后一次同步到服务端的位置与朝向与服务端最后一次同步过来的位置 KBEngineLua.entityLastLocalPos = Vector3.New(0.0, 0.0, 0.0); KBEngineLua.entityLastLocalDir = Vector3.New(0.0, 0.0, 0.0); @@ -305,8 +306,12 @@ KBEngineLua.onImportClientEntityDef = function(stream) local setmethod = nil;--函数 if(Class ~= nil) then setmethod = Class["set_" .. name]; + print("rensiwei "..scriptmethod_name.."set_" .. name); end + if(setmethod == nil) then + print(scriptmethod_name.."_rensiwei_Client_onImportClientEntityDef_notimplent"..properUtype..aliasID..name..defaultValStr..properFlags); + end local savedata = {properUtype, aliasID, name, defaultValStr, utype, setmethod, properFlags}; self_propertys[name] = savedata; diff --git a/Assets/StriveGame/Lua/Logic/Character.lua b/Assets/StriveGame/Lua/Logic/Character.lua index 64ab737..062482a 100644 --- a/Assets/StriveGame/Lua/Logic/Character.lua +++ b/Assets/StriveGame/Lua/Logic/Character.lua @@ -32,8 +32,9 @@ end function Character:Init( entity ) self.entity = entity; - self:StartUpdate(); - self.headName = entity.renderObj.transform:Find("Canvas/Text"):GetComponent("Text"); + self:StartUpdate(); +-- print("rensiwei"..entity.className) + self.headName = entity.renderObj.transform:Find("Canvas/Text"):GetComponent("Text"); self.headNameCanvasTrans = entity.renderObj.transform:Find("Canvas").transform; self.animator = entity.renderObj.transform:GetComponent("Animator"); self.cameraTransform = UnityEngine.Camera.main.transform; @@ -45,6 +46,27 @@ function Character:SetName( name ) if self.headName ~= nil then self.headName.text = self.entityName; end + if self.entity:isPlayer() then + GameWorldCtrl.Set_PlayerName(name); + end +end + +function Character:recvDamage( receiver, attacker, skillID, damageType, damage ) +-- local HUDText = bl_HUDText.New(); +-- if HUDText == nil then +-- print("rensiwei recvDamage: "..tostring(damage)); +-- else +-- print("rensiwei recvDamage not nil : "..tostring(damage)); +-- end + local objHUDText = find("HUDText"); + local HUDText = objHUDText:GetComponent("bl_HUDText"); + if HUDText == nil then + print("rensiwei recvDamage: "..tostring(damage)); + else + print("rensiwei recvDamage not nil : "..tostring(damage)); + end + HUDText:NewText(tostring(damage),self.entity.renderObj.transform,Color.red,10,20,-1,2.5,0);--, 8, 20, -1, 2.2); +-- bl_HUDText.NewText(tostring(damage),self.entity.renderObj.transform,Color.green0, 8, 20, -1, 2.2, 0); end function Character:OnState( v ) diff --git a/Assets/StriveGame/Lua/Logic/World.lua b/Assets/StriveGame/Lua/Logic/World.lua index f06f59a..60be48e 100644 --- a/Assets/StriveGame/Lua/Logic/World.lua +++ b/Assets/StriveGame/Lua/Logic/World.lua @@ -1,6 +1,8 @@ require "Logic/CameraFollow" require "Logic/InputControl" require "Logic/Character" +require "Controller/GameWorldCtrl" +require "Controller/MessageBoxCtrl" World = {}; @@ -13,10 +15,11 @@ function World.init() Event.AddListener("set_position", World.set_position); Event.AddListener("set_direction", World.set_direction); Event.AddListener("set_name", World.set_name); - Event.AddListener("set_state", World.set_state); - Event.AddListener("updatePosition", World.updatePosition); + Event.AddListener("set_state", World.set_state); + Event.AddListener("set_HP", World.set_HP); + Event.AddListener("set_HP_Max", World.set_HP_Max); + Event.AddListener("updatePosition", World.updatePosition); Event.AddListener("recvDamage", World.recvDamage) - end function World.onAvatarEnterWorld( avatar ) @@ -46,9 +49,11 @@ function World.onAvatarEnterWorld( avatar ) end end); - GameWorldCtrl.Awake(); - SelectAvatarCtrl.Close(); - + if(0 == GameWorldCtrl.hasAwake) then + GameWorldCtrl.Awake(); + end + SelectAvatarCtrl.Close(); + MessageBoxCtrl.Awake(); end function World.onEnterWorld( entity ) @@ -57,19 +62,19 @@ function World.onEnterWorld( entity ) end if entity.className == "Gate" then - resMgr:LoadPrefab('Model', { 'player' }, function(objs) + resMgr:LoadPrefab('Model', { 'Gate' }, function(objs) entity.renderObj = newObject(objs[0]); entity.renderObj.transform.position = entity.position; World.InitEntity(entity); end); elseif entity.className == "Monster" then - resMgr:LoadPrefab('Model', { 'player' }, function(objs) + resMgr:LoadPrefab('Model', { 'player' }, function(objs) entity.renderObj = newObject(objs[0]); entity.renderObj.transform.position = entity.position; World.InitEntity(entity); end); elseif entity.className == "DroppedItem" then - resMgr:LoadPrefab('Model', { 'player' }, function(objs) + resMgr:LoadPrefab('Model', { 'droppedItem' }, function(objs) entity.renderObj = newObject(objs[0]); entity.renderObj.transform.position = entity.position; World.InitEntity(entity); @@ -81,7 +86,7 @@ function World.onEnterWorld( entity ) World.InitEntity(entity); end); elseif entity.className == "NPC" then - resMgr:LoadPrefab('Model', { 'player' }, function(objs) + resMgr:LoadPrefab('Model', { 'entity' }, function(objs) entity.renderObj = newObject(objs[0]); entity.renderObj.transform.position = entity.position; World.InitEntity(entity); @@ -126,8 +131,21 @@ end function World.set_name( entity , v) if entity.character then - entity.character:SetName(v); - end + entity.character:SetName(v); + end +end + +function World.set_HP( entity , v) + if entity:isPlayer() then + GameWorldCtrl.Set_HP(v); + end +end + +function World.set_HP_Max( entity , v) +-- print("rensiwei Set_HP_Max"..v) + if entity:isPlayer() then--当前选择的角色 + GameWorldCtrl.Set_HP_Max(v); + end end function World.set_state( entity , v) @@ -144,5 +162,16 @@ function World.updatePosition( entity ) end function World.recvDamage( receiver, attacker, skillID, damageType, damage ) - log("damage:"..damage); +-- print("rensiwei a nil enity : receiver"..receiver.."KBEngineLua.Avatar.id:"..KBEngineLua.Avatar.id1); +-- local entity = KBEngineLua.findEntity(receiver); +-- if(entity == nil) then +-- print("rensiwei a nil enity : receiver"..receiver.."KBEngineLua.Avatar.id:"..KBEngineLua.Avatar.id); +-- end +-- if(receiver == KBEngineLua.Avatar.id) then--受伤的是主角 +-- receiver.character:recvDamage( receiver, attacker, skillID, damageType, damage ); +-- else +-- print("rensiwei a nil enity00000"); +-- end + receiver.character:recvDamage( receiver, attacker, skillID, damageType, damage ); + log("damage:"..damage); end \ No newline at end of file diff --git a/Assets/StriveGame/Lua/View/GameWorldPanel.lua b/Assets/StriveGame/Lua/View/GameWorldPanel.lua index d6c12cd..4a582f2 100644 --- a/Assets/StriveGame/Lua/View/GameWorldPanel.lua +++ b/Assets/StriveGame/Lua/View/GameWorldPanel.lua @@ -22,7 +22,10 @@ function GameWorldPanel.InitPanel() this.btnClose = transform:FindChild("Button_close").gameObject; this.textContent = transform:FindChild("Scroll View/Viewport/trans_content").gameObject; this.sb_vertical = transform:FindChild("Scroll View/Scrollbar Vertical"):GetComponent("Scrollbar"); - this.input_content = transform:FindChild("InputField_content"):GetComponent("InputField"); + this.input_content = transform:FindChild("InputField_content"):GetComponent("InputField"); + this.Panel_PlayerHead = transform:FindChild("Panel_PalyerHead").gameObject; +-- local name_text = GameWorldPanel.Panel_PlayerHead:FindChild("Text_PlayerName"); + end --单击事件-- diff --git a/Assets/StriveGame/Lua/View/MessageBoxPanel.lua b/Assets/StriveGame/Lua/View/MessageBoxPanel.lua new file mode 100644 index 0000000..3295111 --- /dev/null +++ b/Assets/StriveGame/Lua/View/MessageBoxPanel.lua @@ -0,0 +1,34 @@ +local transform; +local gameObject; + +MessageBoxPanel = {}; +local this = MessageBoxPanel; + +--启动事件-- +function MessageBoxPanel.Awake(obj) + gameObject = obj; + transform = obj.transform; + + this.InitPanel(); + logWarn("Awake lua--->>"..gameObject.name); +end + +--初始化面板-- +function MessageBoxPanel.InitPanel() + this.btnOK = transform:FindChild("Button_OK").gameObject; + this.btnCancle = transform:FindChild("Button_Cancle").gameObject; + this.txtTitle = transform:FindChild("Text_Title").gameObject; + this.txtContent = transform:FindChild("Text_Content").gameObject; + +-- gameObject.active = false;初始化完成以后不显示 + gameObject:SetActive(false); +end + +--单击事件-- +function MessageBoxPanel.OnDestroy() + logWarn("OnDestroy---->>>"); +end + +function MessageBoxPanel.Tick(go) + print("rensiwei Tick "..Time.deltaTime); +end \ No newline at end of file diff --git a/Assets/StriveGame/Lua/kbe/Avatar.lua b/Assets/StriveGame/Lua/kbe/Avatar.lua index fb2f20e..1a48ec8 100644 --- a/Assets/StriveGame/Lua/kbe/Avatar.lua +++ b/Assets/StriveGame/Lua/kbe/Avatar.lua @@ -47,4 +47,14 @@ end -------client method----------------------------------- function KBEngineLua.Avatar:ReceiveChatMessage(msg) Event.Brocast("ReceiveChatMessage", msg); +end + +function KBEngineLua.Avatar:set_HP_Max(old) + local v = self.HP_Max; + Event.Brocast("set_HP_Max", self, v); +end + +function KBEngineLua.Avatar:set_MP_Max(old) + local v = self.MP_Max; +-- Event.Brocast("set_MP_Max", self, v); end \ No newline at end of file diff --git a/Assets/StriveGame/Lua/kbe/Interface/GameObject.lua b/Assets/StriveGame/Lua/kbe/Interface/GameObject.lua index fb1c2ad..f910f35 100644 --- a/Assets/StriveGame/Lua/kbe/Interface/GameObject.lua +++ b/Assets/StriveGame/Lua/kbe/Interface/GameObject.lua @@ -35,6 +35,18 @@ function KBEngineLua.Entity:set_name(old) Event.Brocast("set_name", self, v); end +function KBEngineLua.Entity:set_HP(old)--注意方法名区分大小写 + local v = self.HP; +-- print("rensiwei HP"..self.HP); + Event.Brocast("set_HP", self, v); +end + +function KBEngineLua.Entity:set_HP_Max(old) + local v = self.HP_Max; + print("rensiwei HP_Max"..self.HP_Max); + Event.Brocast("set_HP_Max", self, v); +end + function KBEngineLua.Entity:set_state(old) local v = self.state; Event.Brocast("set_state", self, v); diff --git a/Assets/StriveGame/Res/Model/player.prefab b/Assets/StriveGame/Res/Model/player.prefab index eb419ad..583f7da 100644 --- a/Assets/StriveGame/Res/Model/player.prefab +++ b/Assets/StriveGame/Res/Model/player.prefab @@ -4277,6 +4277,7 @@ GameObject: - 95: {fileID: 9580064} - 54: {fileID: 5412682} - 136: {fileID: 13647710} + - 114: {fileID: 11417524} m_Layer: 0 m_Name: player m_TagString: Player @@ -6392,8 +6393,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 132144} - m_LocalRotation: {x: -2.53808685e-06, y: 2.23517596e-08, z: -6.6356165e-09, w: 1} - m_LocalPosition: {x: -0, y: -4.65661287e-09, z: -3.7252903e-08} + m_LocalRotation: {x: -0.0000025380868, y: 0.00000002235176, z: -0.0000000066356165, + w: 1} + m_LocalPosition: {x: -0, y: -0.000000004656613, z: -0.000000037252903} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 456566} @@ -6405,9 +6407,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 192276} - m_LocalRotation: {x: .00694521191, y: .286917031, z: -.038375929, w: .957161248} - m_LocalPosition: {x: -.0243425965, y: 1.41561031e-07, z: -1.49011612e-08} - m_LocalScale: {x: .999999881, y: .999999881, z: .99999994} + m_LocalRotation: {x: 0.006945212, y: 0.28691703, z: -0.03837593, w: 0.95716125} + m_LocalPosition: {x: -0.024342597, y: 0.00000014156103, z: -0.000000014901161} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.99999994} m_Children: - {fileID: 475116} m_Father: {fileID: 481372} @@ -6418,8 +6420,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 163962} - m_LocalRotation: {x: .707107306, y: 2.82470694e-07, z: .707106292, w: -2.82471092e-07} - m_LocalPosition: {x: 2.49128789e-08, y: -3.63215804e-08, z: 0} + m_LocalRotation: {x: 0.7071073, y: 0.0000002824707, z: 0.7071063, w: -0.0000002824711} + m_LocalPosition: {x: 0.000000024912879, y: -0.00000003632158, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 484200} @@ -6430,9 +6432,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 114060} - m_LocalRotation: {x: .705710769, y: .702811301, z: .0444106683, w: .0778220892} - m_LocalPosition: {x: -.0369480252, y: .0380000249, z: .0822452083} - m_LocalScale: {x: .999999702, y: 1, z: 1.00000012} + m_LocalRotation: {x: 0.7057108, y: 0.70281136, z: 0.044410672, w: 0.0778221} + m_LocalPosition: {x: -0.036948025, y: 0.038000025, z: 0.08224521} + m_LocalScale: {x: 0.9999997, y: 1, z: 1.0000001} m_Children: - {fileID: 450346} m_Father: {fileID: 430614} @@ -6443,9 +6445,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 101422} - m_LocalRotation: {x: .0796040446, y: .0473410711, z: -.0680264682, w: .993375301} - m_LocalPosition: {x: -.117544502, y: -1.28056898e-09, z: -9.31323019e-10} - m_LocalScale: {x: 1, y: .999999464, z: .999999464} + m_LocalRotation: {x: 0.079604045, y: 0.04734107, z: -0.06802647, w: 0.9933753} + m_LocalPosition: {x: -0.1175445, y: -0.000000001280569, z: -9.31323e-10} + m_LocalScale: {x: 1, y: 0.99999946, z: 0.99999946} m_Children: - {fileID: 489116} - {fileID: 444336} @@ -6459,8 +6461,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 171868} - m_LocalRotation: {x: 7.4505806e-09, y: 7.4505806e-09, z: -7.4505806e-09, w: 1} - m_LocalPosition: {x: -7.4505806e-08, y: 7.4505806e-08, z: 1.86264515e-08} + m_LocalRotation: {x: 0.000000007450581, y: 0.000000007450581, z: -0.000000007450581, + w: 1} + m_LocalPosition: {x: -0.000000074505806, y: 0.000000074505806, z: 0.000000018626451} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 466040} @@ -6471,9 +6474,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 149898} - m_LocalRotation: {x: -.0718584508, y: .0802187473, z: -.0111568449, w: .994121134} - m_LocalPosition: {x: -.0592358038, y: 2.98023224e-08, z: -5.12227416e-09} - m_LocalScale: {x: 1, y: 1, z: 1.00000012} + m_LocalRotation: {x: -0.07185845, y: 0.08021875, z: -0.011156845, w: 0.99412113} + m_LocalPosition: {x: -0.059235804, y: 0.000000029802322, z: -0.000000005122274} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} m_Children: - {fileID: 482898} m_Father: {fileID: 484482} @@ -6484,9 +6487,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 165434} - m_LocalRotation: {x: .0718584657, y: .0802186355, z: .0111569036, w: .994121134} - m_LocalPosition: {x: -.0592357814, y: 8.94069672e-08, z: -6.93835318e-08} - m_LocalScale: {x: .873918355, y: 1, z: 1.00000012} + m_LocalRotation: {x: 0.071858466, y: 0.080218635, z: 0.011156904, w: 0.99412113} + m_LocalPosition: {x: -0.05923578, y: 0.00000008940697, z: -0.00000006938353} + m_LocalScale: {x: 0.87391835, y: 1, z: 1.0000001} m_Children: [] m_Father: {fileID: 448938} m_RootOrder: 2 @@ -6496,9 +6499,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 123374} - m_LocalRotation: {x: -.606006801, y: -.130311146, z: .305838376, w: .722660124} - m_LocalPosition: {x: .00651647151, y: -.0285910144, z: .0177915487} - m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} + m_LocalRotation: {x: -0.6060068, y: -0.13031115, z: 0.30583838, w: 0.7226601} + m_LocalPosition: {x: 0.0065164715, y: -0.028591014, z: 0.017791549} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} m_Children: - {fileID: 440204} - {fileID: 472310} @@ -6511,9 +6514,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 127516} - m_LocalRotation: {x: .891520679, y: -.317461818, z: .242624238, w: .213406742} - m_LocalPosition: {x: -.45368126, y: 3.37272539e-08, z: -2.35142106e-09} - m_LocalScale: {x: .999999821, y: 1, z: .999999762} + m_LocalRotation: {x: 0.8915207, y: -0.31746182, z: 0.24262424, w: 0.21340674} + m_LocalPosition: {x: -0.45368126, y: 0.000000033727254, z: -0.000000002351421} + m_LocalScale: {x: 0.9999998, y: 1, z: 0.99999976} m_Children: - {fileID: 409728} m_Father: {fileID: 417182} @@ -6524,9 +6527,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 137344} - m_LocalRotation: {x: -.0603443496, y: .0144296829, z: -.108823322, w: .992122889} - m_LocalPosition: {x: -.0722057, y: .0174764544, z: .00339131523} - m_LocalScale: {x: 1, y: .99999994, z: 1} + m_LocalRotation: {x: -0.06034435, y: 0.014429683, z: -0.10882332, w: 0.9921229} + m_LocalPosition: {x: -0.0722057, y: 0.017476454, z: 0.0033913152} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} m_Children: - {fileID: 462762} - {fileID: 405078} @@ -6545,9 +6548,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 120238} - m_LocalRotation: {x: -.0619525723, y: -.000455132482, z: -.0045743119, w: .998068511} - m_LocalPosition: {x: -.0518109463, y: -1.06170774e-07, z: 2.56113708e-08} - m_LocalScale: {x: 1, y: .99999994, z: .999999881} + m_LocalRotation: {x: -0.061952572, y: -0.00045513248, z: -0.004574312, w: 0.9980685} + m_LocalPosition: {x: -0.051810946, y: -0.00000010617077, z: 0.00000002561137} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999999} m_Children: [] m_Father: {fileID: 456208} m_RootOrder: 0 @@ -6557,9 +6560,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 168726} - m_LocalRotation: {x: .0619528443, y: -.000212339641, z: .00457152724, w: .998068571} - m_LocalPosition: {x: -.0518109873, y: 6.98491887e-09, z: 6.42612576e-08} - m_LocalScale: {x: .873918414, y: .999999881, z: .99999994} + m_LocalRotation: {x: 0.061952844, y: -0.00021233964, z: 0.0045715272, w: 0.9980686} + m_LocalPosition: {x: -0.051810987, y: 0.000000006984919, z: 0.00000006426126} + m_LocalScale: {x: 0.8739184, y: 0.9999999, z: 0.99999994} m_Children: [] m_Father: {fileID: 429696} m_RootOrder: 2 @@ -6569,9 +6572,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 120832} - m_LocalRotation: {x: -4.16301236e-06, y: 3.72526827e-08, z: 5.2387044e-08, w: 1} - m_LocalPosition: {x: -.0587722436, y: 1.09430403e-08, z: -6.98491887e-09} - m_LocalScale: {x: 1.00000012, y: .99999994, z: 1.00000012} + m_LocalRotation: {x: -0.0000041630124, y: 0.000000037252683, z: 0.000000052387044, + w: 1} + m_LocalPosition: {x: -0.058772244, y: 0.00000001094304, z: -0.000000006984919} + m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 1.0000001} m_Children: - {fileID: 497656} m_Father: {fileID: 497338} @@ -6582,8 +6586,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 123774} - m_LocalRotation: {x: -3.7252903e-09, y: 1.86264515e-09, z: -2.79396772e-09, w: 1} - m_LocalPosition: {x: -5.21540642e-08, y: -2.42143869e-08, z: 1.49011612e-08} + m_LocalRotation: {x: -0.0000000037252903, y: 0.0000000018626451, z: -0.0000000027939677, + w: 1} + m_LocalPosition: {x: -0.000000052154064, y: -0.000000024214387, z: 0.000000014901161} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 408752} @@ -6594,9 +6599,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 111172} - m_LocalRotation: {x: .707107365, y: -3.76627526e-07, z: .707106173, w: 3.76628179e-07} - m_LocalPosition: {x: 6.98491986e-10, y: 4.56348062e-08, z: -1.86264504e-09} - m_LocalScale: {x: 1, y: .999999881, z: .99999994} + m_LocalRotation: {x: 0.70710737, y: -0.00000037662753, z: 0.7071062, w: 0.00000037662818} + m_LocalPosition: {x: 6.98492e-10, y: 0.000000045634806, z: -0.000000001862645} + m_LocalScale: {x: 1, y: 0.9999999, z: 0.99999994} m_Children: [] m_Father: {fileID: 406300} m_RootOrder: 0 @@ -6606,9 +6611,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 138886} - m_LocalRotation: {x: 9.75392282e-08, y: -.0484602265, z: 6.9547923e-08, w: .998825133} - m_LocalPosition: {x: -.195924193, y: 4.69606682e-08, z: -1.21875099e-09} - m_LocalScale: {x: 1, y: 1.00000012, z: 1} + m_LocalRotation: {x: 0.00000009753923, y: -0.048460227, z: 0.00000006954792, w: 0.99882513} + m_LocalPosition: {x: -0.1959242, y: 0.00000004696067, z: -0.000000001218751} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} m_Children: - {fileID: 459124} m_Father: {fileID: 486042} @@ -6619,9 +6624,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 132622} - m_LocalRotation: {x: .33440578, y: .940643191, z: .0572796464, w: .00907133706} - m_LocalPosition: {x: 5.34868105e-09, y: -3.93643296e-09, z: -4.371008e-09} - m_LocalScale: {x: .999999762, y: 1.00000024, z: .999999642} + m_LocalRotation: {x: 0.33440578, y: 0.9406432, z: 0.057279646, w: 0.009071337} + m_LocalPosition: {x: 0.000000005348681, y: -0.000000003936433, z: -0.000000004371008} + m_LocalScale: {x: 0.99999976, y: 1.0000002, z: 0.99999964} m_Children: [] m_Father: {fileID: 434950} m_RootOrder: 0 @@ -6631,9 +6636,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 133876} - m_LocalRotation: {x: 1.39698364e-09, y: -2.79724127e-17, z: -2.00234354e-08, w: 1} - m_LocalPosition: {x: 2.23517418e-08, y: 3.14321369e-08, z: 3.7252903e-08} - m_LocalScale: {x: 1, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: 0.0000000013969836, y: -2.7972413e-17, z: -0.000000020023435, + w: 1} + m_LocalPosition: {x: 0.000000022351742, y: 0.000000031432137, z: 0.000000037252903} + m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} m_Children: [] m_Father: {fileID: 441826} m_RootOrder: 0 @@ -6643,9 +6649,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146110} - m_LocalRotation: {x: -.0644173697, y: .0766514763, z: -.0369534716, w: .994288385} - m_LocalPosition: {x: .115648873, y: -.00978219323, z: -.0173284486} - m_LocalScale: {x: .999999702, y: 1.00005555, z: 1.00034249} + m_LocalRotation: {x: -0.06441737, y: 0.07665148, z: -0.03695347, w: 0.9942884} + m_LocalPosition: {x: 0.11564887, y: -0.009782193, z: -0.017328449} + m_LocalScale: {x: 0.9999997, y: 1.0000556, z: 1.0003425} m_Children: - {fileID: 452596} m_Father: {fileID: 422598} @@ -6656,9 +6662,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 114748} - m_LocalRotation: {x: .0300832633, y: .308216006, z: .0553742684, w: .949226856} - m_LocalPosition: {x: -.0250134319, y: 0, z: 7.91624188e-09} - m_LocalScale: {x: 1, y: .999999821, z: 1} + m_LocalRotation: {x: 0.030083263, y: 0.308216, z: 0.05537427, w: 0.94922686} + m_LocalPosition: {x: -0.025013432, y: 0, z: 0.000000007916242} + m_LocalScale: {x: 1, y: 0.9999998, z: 1} m_Children: - {fileID: 476554} m_Father: {fileID: 446316} @@ -6669,9 +6675,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 106690} - m_LocalRotation: {x: -7.91624277e-09, y: 9.03140674e-17, z: -1.14087033e-08, w: 1} - m_LocalPosition: {x: -2.60770321e-08, y: -2.04890966e-08, z: 1.86264504e-09} - m_LocalScale: {x: .99999994, y: .999999881, z: .999999881} + m_LocalRotation: {x: -0.000000007916243, y: 9.031407e-17, z: -0.000000011408703, + w: 1} + m_LocalPosition: {x: -0.000000026077032, y: -0.000000020489097, z: 0.000000001862645} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} m_Children: [] m_Father: {fileID: 402816} m_RootOrder: 1 @@ -6681,9 +6688,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 187624} - m_LocalRotation: {x: .061815843, y: -.0631349906, z: -.140239641, w: .986167133} - m_LocalPosition: {x: -.0287208352, y: 2.70083547e-08, z: 1.49011612e-08} - m_LocalScale: {x: 1, y: 1.00000012, z: .999999881} + m_LocalRotation: {x: 0.061815843, y: -0.06313499, z: -0.14023964, w: 0.98616713} + m_LocalPosition: {x: -0.028720835, y: 0.000000027008355, z: 0.000000014901161} + m_LocalScale: {x: 1, y: 1.0000001, z: 0.9999999} m_Children: [] m_Father: {fileID: 495852} m_RootOrder: 1 @@ -6693,9 +6700,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 126488} - m_LocalRotation: {x: .0367949754, y: -.0445790775, z: .121722564, w: .990879655} - m_LocalPosition: {x: -.0757200643, y: -.032747604, z: -.00405076006} - m_LocalScale: {x: 1.00000012, y: .999999821, z: .999999821} + m_LocalRotation: {x: 0.036794975, y: -0.044579078, z: 0.121722564, w: 0.99087965} + m_LocalPosition: {x: -0.075720064, y: -0.032747604, z: -0.00405076} + m_LocalScale: {x: 1.0000001, y: 0.9999998, z: 0.9999998} m_Children: [] m_Father: {fileID: 497744} m_RootOrder: 5 @@ -6705,9 +6712,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 119236} - m_LocalRotation: {x: .0736008435, y: .0363714956, z: -.0744803771, w: .993837357} - m_LocalPosition: {x: .0579646863, y: -.00838615187, z: -.00489327777} - m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: 0.07360084, y: 0.036371496, z: -0.07448038, w: 0.99383736} + m_LocalPosition: {x: 0.057964686, y: -0.008386152, z: -0.004893278} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001} m_Children: - {fileID: 483520} m_Father: {fileID: 465770} @@ -6718,9 +6725,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 168550} - m_LocalRotation: {x: -3.32668469e-06, y: -1.11758585e-08, z: -3.7253276e-09, w: 1} - m_LocalPosition: {x: 2.23517418e-08, y: -7.4505806e-09, z: 1.49011612e-08} - m_LocalScale: {x: 1, y: .99999994, z: 1} + m_LocalRotation: {x: -0.0000033266847, y: -0.0000000111758585, z: -0.0000000037253276, + w: 1} + m_LocalPosition: {x: 0.000000022351742, y: -0.000000007450581, z: 0.000000014901161} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} m_Children: [] m_Father: {fileID: 432900} m_RootOrder: 0 @@ -6730,8 +6738,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 118802} - m_LocalRotation: {x: -3.60410486e-15, y: 7.10349019e-15, z: -1.33517687e-15, w: 1} - m_LocalPosition: {x: .0234402772, y: -.0980000049, z: -.00142736849} + m_LocalRotation: {x: -3.604105e-15, y: 7.10349e-15, z: -1.3351769e-15, w: 1} + m_LocalPosition: {x: 0.023440277, y: -0.098000005, z: -0.0014273685} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 474682} @@ -6742,9 +6750,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 103190} - m_LocalRotation: {x: .699871838, y: .272614807, z: -.605833709, w: -.262347311} - m_LocalPosition: {x: .0554860123, y: -.521670222, z: .70525074} - m_LocalScale: {x: 1.93576252e-05, y: 1.00000012, z: 1} + m_LocalRotation: {x: 0.69987184, y: 0.2726148, z: -0.6058337, w: -0.2623473} + m_LocalPosition: {x: 0.055486012, y: -0.5216702, z: 0.70525074} + m_LocalScale: {x: 0.000019357625, y: 1.0000001, z: 1} m_Children: [] m_Father: {fileID: 416532} m_RootOrder: 26 @@ -6754,9 +6762,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 157824} - m_LocalRotation: {x: -3.53902543e-08, y: 4.19095114e-09, z: 5.1222746e-09, w: 1} - m_LocalPosition: {x: 1.49011612e-08, y: -1.81607902e-08, z: -5.54136932e-08} - m_LocalScale: {x: 1, y: 1, z: .99999994} + m_LocalRotation: {x: -0.000000035390254, y: 0.000000004190951, z: 0.0000000051222746, + w: 1} + m_LocalPosition: {x: 0.000000014901161, y: -0.00000001816079, z: -0.000000055413693} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} m_Children: [] m_Father: {fileID: 475314} m_RootOrder: 0 @@ -6766,9 +6775,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 172964} - m_LocalRotation: {x: -.0560732596, y: -.0994188413, z: -.652415395, w: .749216795} - m_LocalPosition: {x: -.0129142599, y: .380529404, z: 1.10993576} - m_LocalScale: {x: .99999994, y: .999999881, z: .999999881} + m_LocalRotation: {x: -0.05607326, y: -0.09941884, z: -0.6524154, w: 0.7492168} + m_LocalPosition: {x: -0.01291426, y: 0.3805294, z: 1.1099358} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} m_Children: - {fileID: 467020} - {fileID: 435076} @@ -6783,9 +6792,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 173042} - m_LocalRotation: {x: 1.32351047e-07, y: .794792593, z: -9.47466461e-08, w: .606881261} - m_LocalPosition: {x: -.37726596, y: 2.8432245e-08, z: .0226890482} - m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: 0.00000013235105, y: 0.7947926, z: -0.000000094746646, w: 0.60688126} + m_LocalPosition: {x: -0.37726596, y: 0.000000028432245, z: 0.022689048} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001} m_Children: [] m_Father: {fileID: 477750} m_RootOrder: 2 @@ -6795,9 +6804,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 145820} - m_LocalRotation: {x: .758456886, y: .163971573, z: .492245913, w: -.394398838} - m_LocalPosition: {x: -.0644442067, y: -.010850057, z: -.101045221} - m_LocalScale: {x: 1, y: .999999702, z: .999999881} + m_LocalRotation: {x: 0.7584569, y: 0.16397157, z: 0.4922459, w: -0.39439884} + m_LocalPosition: {x: -0.06444421, y: -0.010850057, z: -0.10104522} + m_LocalScale: {x: 1, y: 0.9999997, z: 0.9999999} m_Children: - {fileID: 404186} m_Father: {fileID: 426704} @@ -6808,9 +6817,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 163772} - m_LocalRotation: {x: -.0387302861, y: .257537574, z: .0124088619, w: .965412021} - m_LocalPosition: {x: -.0232717693, y: 2.70083547e-08, z: 0} - m_LocalScale: {x: 1.00000024, y: 1.00000024, z: 1.00000024} + m_LocalRotation: {x: -0.038730286, y: 0.25753757, z: 0.012408862, w: 0.965412} + m_LocalPosition: {x: -0.02327177, y: 0.000000027008355, z: 0} + m_LocalScale: {x: 1.0000002, y: 1.0000002, z: 1.0000002} m_Children: - {fileID: 454302} m_Father: {fileID: 441826} @@ -6821,9 +6830,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 194524} - m_LocalRotation: {x: -.061954245, y: -.000212646715, z: -.0045715319, w: .998068511} - m_LocalPosition: {x: -.0518109463, y: -1.06170774e-07, z: 2.56113708e-08} - m_LocalScale: {x: .999999881, y: 1, z: .99999994} + m_LocalRotation: {x: -0.061954245, y: -0.00021264672, z: -0.004571532, w: 0.9980685} + m_LocalPosition: {x: -0.051810946, y: -0.00000010617077, z: 0.00000002561137} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.99999994} m_Children: - {fileID: 497196} - {fileID: 417862} @@ -6836,9 +6845,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 197438} - m_LocalRotation: {x: .0639712885, y: -.0388424955, z: .0396839082, w: .996405602} - m_LocalPosition: {x: -.234697104, y: 3.7252903e-08, z: -9.31322575e-09} - m_LocalScale: {x: .999982715, y: .999973536, z: 1.00004816} + m_LocalRotation: {x: 0.06397129, y: -0.038842496, z: 0.03968391, w: 0.9964056} + m_LocalPosition: {x: -0.2346971, y: 0.000000037252903, z: -0.000000009313226} + m_LocalScale: {x: 0.9999827, y: 0.99997354, z: 1.0000482} m_Children: [] m_Father: {fileID: 441062} m_RootOrder: 1 @@ -6848,9 +6857,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 106822} - m_LocalRotation: {x: -.00204429682, y: -.756298482, z: -.0272375401, w: .653656304} - m_LocalPosition: {x: -.151453108, y: 1.14343912e-08, z: -1.86264504e-09} - m_LocalScale: {x: 1.00001442, y: 1.00001478, z: 1.00001454} + m_LocalRotation: {x: -0.0020442968, y: -0.7562985, z: -0.02723754, w: 0.6536563} + m_LocalPosition: {x: -0.15145311, y: 0.000000011434391, z: -0.000000001862645} + m_LocalScale: {x: 1.0000144, y: 1.0000148, z: 1.0000145} m_Children: - {fileID: 482734} m_Father: {fileID: 443836} @@ -6861,9 +6870,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 102286} - m_LocalRotation: {x: .330143094, y: .941566169, z: .0420908928, w: .0518378802} - m_LocalPosition: {x: 5.34868105e-09, y: -3.93643296e-09, z: -4.371008e-09} - m_LocalScale: {x: .999999702, y: 1.0000006, z: 1.00000024} + m_LocalRotation: {x: 0.3301431, y: 0.94156617, z: 0.042090893, w: 0.05183788} + m_LocalPosition: {x: 0.000000005348681, y: -0.000000003936433, z: -0.000000004371008} + m_LocalScale: {x: 0.9999997, y: 1.0000006, z: 1.0000002} m_Children: [] m_Father: {fileID: 476318} m_RootOrder: 0 @@ -6874,7 +6883,7 @@ Transform: m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 104520} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: -.0171999931, y: 1.29856303e-09, z: .494740903} + m_LocalPosition: {x: -0.017199993, y: 0.000000001298563, z: 0.4947409} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 486982} @@ -6888,9 +6897,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 145360} - m_LocalRotation: {x: .0736008361, y: -.0363715217, z: -.0744804665, w: .993837357} - m_LocalPosition: {x: -.0587722361, y: -1.990702e-08, z: -1.164153e-09} - m_LocalScale: {x: 1, y: .99999994, z: .99999994} + m_LocalRotation: {x: 0.073600836, y: -0.03637152, z: -0.07448047, w: 0.99383736} + m_LocalPosition: {x: -0.058772236, y: -0.00000001990702, z: -0.000000001164153} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} m_Children: [] m_Father: {fileID: 434304} m_RootOrder: 0 @@ -6900,8 +6909,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 181948} - m_LocalRotation: {x: 6.93136826e-07, y: 2.56196296e-15, z: 3.69618647e-09, w: 1} - m_LocalPosition: {x: -.234697118, y: -3.45462468e-08, z: 6.51925802e-09} + m_LocalRotation: {x: 0.0000006931368, y: 2.561963e-15, z: 0.0000000036961865, w: 1} + m_LocalPosition: {x: -0.23469712, y: -0.000000034546247, z: 0.000000006519258} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 416886} @@ -6913,9 +6922,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 111520} - m_LocalRotation: {x: .265917629, y: .963671446, z: -.019394394, w: -.0157820769} - m_LocalPosition: {x: .0912894085, y: -.0735906661, z: .00820757821} - m_LocalScale: {x: 1, y: .999999821, z: .999999702} + m_LocalRotation: {x: 0.26591763, y: 0.96367145, z: -0.019394394, w: -0.015782077} + m_LocalPosition: {x: 0.09128941, y: -0.073590666, z: 0.008207578} + m_LocalScale: {x: 1, y: 0.9999998, z: 0.9999997} m_Children: [] m_Father: {fileID: 447564} m_RootOrder: 1 @@ -6925,9 +6934,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 119082} - m_LocalRotation: {x: 1.42259535e-06, y: 9.31332123e-10, z: 6.69387967e-09, w: 1} - m_LocalPosition: {x: -3.35276127e-08, y: -1.3038516e-08, z: -2.79396795e-09} - m_LocalScale: {x: 1, y: .99999994, z: 1} + m_LocalRotation: {x: 0.0000014225953, y: 9.313321e-10, z: 0.0000000066938797, w: 1} + m_LocalPosition: {x: -0.000000033527613, y: -0.000000013038516, z: -0.000000002793968} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} m_Children: - {fileID: 429044} m_Father: {fileID: 488510} @@ -6938,9 +6947,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 159862} - m_LocalRotation: {x: .677038491, y: .666605651, z: .204002157, w: .235879272} - m_LocalPosition: {x: -.0337505005, y: .0380006172, z: .0836079419} - m_LocalScale: {x: 1.00000012, y: .99999994, z: .99999994} + m_LocalRotation: {x: 0.6770385, y: 0.66660565, z: 0.20400216, w: 0.23587927} + m_LocalPosition: {x: -0.0337505, y: 0.038000617, z: 0.08360794} + m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 0.99999994} m_Children: [] m_Father: {fileID: 473404} m_RootOrder: 0 @@ -6950,9 +6959,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 136802} - m_LocalRotation: {x: .0011606859, y: .30859375, z: .00700829783, w: .951167464} - m_LocalPosition: {x: -.043025136, y: -8.38190317e-09, z: 8.56816769e-08} - m_LocalScale: {x: 1, y: .99999994, z: 1} + m_LocalRotation: {x: 0.0011606859, y: 0.30859375, z: 0.007008298, w: 0.95116746} + m_LocalPosition: {x: -0.043025136, y: -0.000000008381903, z: 0.00000008568168} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} m_Children: - {fileID: 403916} m_Father: {fileID: 430802} @@ -6963,9 +6972,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 164748} - m_LocalRotation: {x: -3.14787059e-07, y: -1.39698364e-09, z: -9.31323019e-10, w: 1} - m_LocalPosition: {x: -.357861072, y: -.00679635163, z: .00412282627} - m_LocalScale: {x: 1, y: .99999994, z: 1} + m_LocalRotation: {x: -0.00000031478706, y: -0.0000000013969836, z: -9.31323e-10, + w: 1} + m_LocalPosition: {x: -0.35786107, y: -0.0067963516, z: 0.0041228263} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} m_Children: [] m_Father: {fileID: 468046} m_RootOrder: 2 @@ -6975,9 +6985,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 191906} - m_LocalRotation: {x: .0637521893, y: .0766267627, z: .0370047577, w: .9943313} - m_LocalPosition: {x: .115649089, y: .00978221744, z: -.0173284151} - m_LocalScale: {x: .999999821, y: 1.00022936, z: 1.00141132} + m_LocalRotation: {x: 0.06375219, y: 0.07662676, z: 0.037004758, w: 0.9943313} + m_LocalPosition: {x: 0.11564909, y: 0.009782217, z: -0.017328415} + m_LocalScale: {x: 0.9999998, y: 1.0002294, z: 1.0014113} m_Children: - {fileID: 456036} m_Father: {fileID: 480430} @@ -6988,9 +6998,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 131868} - m_LocalRotation: {x: .0736006349, y: -.0363714769, z: -.0744804889, w: .993837416} - m_LocalPosition: {x: 3.4924601e-09, y: 7.4505806e-09, z: 2.32830599e-09} - m_LocalScale: {x: .99999994, y: 1, z: .999999881} + m_LocalRotation: {x: 0.073600635, y: -0.036371477, z: -0.07448049, w: 0.9938374} + m_LocalPosition: {x: 0.00000000349246, y: 0.000000007450581, z: 0.000000002328306} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.9999999} m_Children: - {fileID: 458390} m_Father: {fileID: 480000} @@ -7001,9 +7011,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 196606} - m_LocalRotation: {x: .95171541, y: -.210101098, z: .222342938, w: -.0256693605} - m_LocalPosition: {x: -.340451658, y: 5.21540642e-08, z: -7.4505806e-08} - m_LocalScale: {x: 1.00000012, y: .99999994, z: .999999821} + m_LocalRotation: {x: 0.9517154, y: -0.2101011, z: 0.22234294, w: -0.02566936} + m_LocalPosition: {x: -0.34045166, y: 0.000000052154064, z: -0.000000074505806} + m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 0.9999998} m_Children: [] m_Father: {fileID: 402568} m_RootOrder: 0 @@ -7013,9 +7023,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 112218} - m_LocalRotation: {x: 2.0318916e-07, y: .720731199, z: -1.54680919e-07, w: .693214715} - m_LocalPosition: {x: 1.43156698e-09, y: 5.84484017e-10, z: 1.16634538e-07} - m_LocalScale: {x: .999999881, y: .999999881, z: .999999881} + m_LocalRotation: {x: 0.00000020318916, y: 0.7207312, z: -0.00000015468092, w: 0.6932147} + m_LocalPosition: {x: 0.000000001431567, y: 5.84484e-10, z: 0.00000011663454} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999999} m_Children: [] m_Father: {fileID: 493052} m_RootOrder: 0 @@ -7025,9 +7035,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 118736} - m_LocalRotation: {x: -6.91972616e-07, y: 2.3282587e-10, z: 6.98492109e-09, w: 1} - m_LocalPosition: {x: -.234697133, y: -3.15485522e-08, z: -1.86264504e-09} - m_LocalScale: {x: .999999762, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: -0.0000006919726, y: 2.3282587e-10, z: 0.000000006984921, w: 1} + m_LocalPosition: {x: -0.23469713, y: -0.000000031548552, z: -0.000000001862645} + m_LocalScale: {x: 0.99999976, y: 1.0000001, z: 1.0000001} m_Children: - {fileID: 458850} m_Father: {fileID: 444782} @@ -7038,9 +7048,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 179464} - m_LocalRotation: {x: .0621143132, y: -.000339001446, z: .0417763032, w: .99719429} - m_LocalPosition: {x: -.234697178, y: -4.00468707e-08, z: 2.04890966e-08} - m_LocalScale: {x: .999998033, y: .999997973, z: .999998093} + m_LocalRotation: {x: 0.062114313, y: -0.00033900145, z: 0.041776303, w: 0.9971943} + m_LocalPosition: {x: -0.23469718, y: -0.00000004004687, z: 0.000000020489097} + m_LocalScale: {x: 0.99999803, y: 0.999998, z: 0.9999981} m_Children: [] m_Father: {fileID: 487578} m_RootOrder: 0 @@ -7050,9 +7060,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 153306} - m_LocalRotation: {x: -.100399576, y: .602046609, z: -.127900094, w: .781729758} - m_LocalPosition: {x: -.0222276188, y: .242438197, z: .110094972} - m_LocalScale: {x: 3.47807763e-05, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: -0.100399576, y: 0.6020466, z: -0.1279001, w: 0.78172976} + m_LocalPosition: {x: -0.022227619, y: 0.2424382, z: 0.11009497} + m_LocalScale: {x: 0.000034780776, y: 1.0000001, z: 1.0000001} m_Children: [] m_Father: {fileID: 416532} m_RootOrder: 25 @@ -7062,9 +7072,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 172712} - m_LocalRotation: {x: 1.19771045e-07, y: .715359509, z: -6.73254732e-08, w: .698756576} - m_LocalPosition: {x: -.0227331966, y: .0979999825, z: .319929272} - m_LocalScale: {x: .999999821, y: .99999994, z: .999999821} + m_LocalRotation: {x: 0.00000011977104, y: 0.7153595, z: -0.00000006732547, w: 0.6987566} + m_LocalPosition: {x: -0.022733197, y: 0.09799998, z: 0.31992927} + m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 0.9999998} m_Children: - {fileID: 449400} - {fileID: 418534} @@ -7079,9 +7089,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 144978} - m_LocalRotation: {x: -9.31322663e-09, y: 3.72529074e-09, z: 2.79396817e-09, w: 1} - m_LocalPosition: {x: 7.4505806e-09, y: 5.21540642e-08, z: -4.65661287e-09} - m_LocalScale: {x: .99999994, y: 1, z: 1} + m_LocalRotation: {x: -0.000000009313227, y: 0.0000000037252907, z: 0.0000000027939682, + w: 1} + m_LocalPosition: {x: 0.000000007450581, y: 0.000000052154064, z: -0.000000004656613} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} m_Children: [] m_Father: {fileID: 488258} m_RootOrder: 1 @@ -7091,9 +7102,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 110510} - m_LocalRotation: {x: -.330142558, y: .941566229, z: -.0420907326, w: .0518389232} - m_LocalPosition: {x: 2.0146274e-08, y: 1.09647287e-08, z: -4.01089517e-09} - m_LocalScale: {x: .99999994, y: 1, z: .99999994} + m_LocalRotation: {x: -0.33014256, y: 0.9415662, z: -0.042090733, w: 0.051838923} + m_LocalPosition: {x: 0.000000020146274, y: 0.000000010964729, z: -0.000000004010895} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999994} m_Children: [] m_Father: {fileID: 477260} m_RootOrder: 0 @@ -7103,9 +7114,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 165164} - m_LocalRotation: {x: 1.3946557e-07, y: -2.32829228e-10, z: 1.01863407e-08, w: 1} - m_LocalPosition: {x: -.138070405, y: 1.68802217e-08, z: -1.57160696e-09} - m_LocalScale: {x: 1, y: .99999994, z: .99999994} + m_LocalRotation: {x: 0.00000013946557, y: -2.3282923e-10, z: 0.000000010186341, + w: 1} + m_LocalPosition: {x: -0.1380704, y: 0.000000016880222, z: -0.000000001571607} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} m_Children: - {fileID: 482966} m_Father: {fileID: 475994} @@ -7117,7 +7129,7 @@ Transform: m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 190352} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: .100000001, z: 0} + m_LocalPosition: {x: 0, y: 0.1, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 489884} @@ -7128,8 +7140,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 175442} - m_LocalRotation: {x: 2.17251568e-07, y: .0368261859, z: -7.90343702e-09, w: .999321699} - m_LocalPosition: {x: -.377266079, y: 2.84322521e-08, z: .0226890668} + m_LocalRotation: {x: 0.00000021725157, y: 0.036826186, z: -0.000000007903437, w: 0.9993217} + m_LocalPosition: {x: -0.37726608, y: 0.000000028432252, z: 0.022689067} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 477750} @@ -7140,9 +7152,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 131602} - m_LocalRotation: {x: 5.93886149e-08, y: -1.49011221e-08, z: -1.37670823e-14, w: 1} - m_LocalPosition: {x: 7.90591981e-10, y: 2.84837345e-08, z: -2.77614731e-08} - m_LocalScale: {x: 1, y: 1.00000012, z: 1} + m_LocalRotation: {x: 0.000000059388615, y: -0.000000014901122, z: -1.3767082e-14, + w: 1} + m_LocalPosition: {x: 7.90592e-10, y: 0.000000028483734, z: -0.000000027761473} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} m_Children: [] m_Father: {fileID: 486042} m_RootOrder: 0 @@ -7152,9 +7165,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 199736} - m_LocalRotation: {x: -.051517155, y: .230155692, z: -.0789278746, w: .968578756} - m_LocalPosition: {x: -.0287208352, y: 2.70083547e-08, z: 1.49011612e-08} - m_LocalScale: {x: .99999994, y: .999999881, z: .999999821} + m_LocalRotation: {x: -0.051517155, y: 0.23015569, z: -0.078927875, w: 0.96857876} + m_LocalPosition: {x: -0.028720835, y: 0.000000027008355, z: 0.000000014901161} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999998} m_Children: - {fileID: 447500} - {fileID: 429732} @@ -7166,9 +7179,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 124676} - m_LocalRotation: {x: .265918046, y: .963671327, z: -.0193943605, w: -.0157820769} - m_LocalPosition: {x: .150526941, y: -.109014489, z: .00681979209} - m_LocalScale: {x: .999999762, y: .999999702, z: 1} + m_LocalRotation: {x: 0.26591805, y: 0.9636713, z: -0.01939436, w: -0.015782077} + m_LocalPosition: {x: 0.15052694, y: -0.10901449, z: 0.006819792} + m_LocalScale: {x: 0.99999976, y: 0.9999997, z: 1} m_Children: - {fileID: 475750} m_Father: {fileID: 476318} @@ -7179,9 +7192,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 178412} - m_LocalRotation: {x: -2.0917505e-06, y: 5.58790925e-09, z: 1.2922114e-08, w: 1} - m_LocalPosition: {x: -.0172459725, y: 1.11758709e-07, z: -5.96046448e-08} - m_LocalScale: {x: .99999994, y: 1, z: 1} + m_LocalRotation: {x: -0.0000020917505, y: 0.0000000055879092, z: 0.000000012922114, + w: 1} + m_LocalPosition: {x: -0.017245973, y: 0.00000011175871, z: -0.000000059604645} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} m_Children: [] m_Father: {fileID: 415998} m_RootOrder: 0 @@ -7191,9 +7205,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 191218} - m_LocalRotation: {x: .707107127, y: -9.41569169e-08, z: .707106471, w: 9.41570093e-08} - m_LocalPosition: {x: -.00310695684, y: -.011232622, z: -.0256077982} - m_LocalScale: {x: .999999702, y: 1, z: .99999994} + m_LocalRotation: {x: 0.7071071, y: -0.00000009415692, z: 0.7071065, w: 0.00000009415701} + m_LocalPosition: {x: -0.0031069568, y: -0.011232622, z: -0.025607798} + m_LocalScale: {x: 0.9999997, y: 1, z: 0.99999994} m_Children: [] m_Father: {fileID: 474632} m_RootOrder: 0 @@ -7203,9 +7217,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 160292} - m_LocalRotation: {x: 6.12070323e-08, y: .993292093, z: -1.18409623e-07, w: -.115632206} - m_LocalPosition: {x: -.0324124321, y: .0145141827, z: 1.21506953} - m_LocalScale: {x: 1.00002885, y: 1.00002897, z: 1.00002885} + m_LocalRotation: {x: 0.00000006120703, y: 0.9932921, z: -0.00000011840962, w: -0.115632206} + m_LocalPosition: {x: -0.032412432, y: 0.014514183, z: 1.2150695} + m_LocalScale: {x: 1.0000288, y: 1.000029, z: 1.0000288} m_Children: - {fileID: 481704} m_Father: {fileID: 416532} @@ -7216,9 +7230,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 101558} - m_LocalRotation: {x: .274643689, y: -.66376996, z: -.199195758, w: .666559458} - m_LocalPosition: {x: -.0227332003, y: .0979999825, z: .319929272} - m_LocalScale: {x: .999999881, y: 1, z: .999999821} + m_LocalRotation: {x: 0.2746437, y: -0.66376996, z: -0.19919576, w: 0.66655946} + m_LocalPosition: {x: -0.0227332, y: 0.09799998, z: 0.31992927} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.9999998} m_Children: - {fileID: 481166} m_Father: {fileID: 416532} @@ -7229,9 +7243,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 163550} - m_LocalRotation: {x: .0560732447, y: -.0994188562, z: .652415395, w: .749216795} - m_LocalPosition: {x: -.0129143149, y: -.351501048, z: 1.10993576} - m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} + m_LocalRotation: {x: 0.056073245, y: -0.099418856, z: 0.6524154, w: 0.7492168} + m_LocalPosition: {x: -0.012914315, y: -0.35150105, z: 1.1099358} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} m_Children: - {fileID: 440072} m_Father: {fileID: 416532} @@ -7242,9 +7256,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 143090} - m_LocalRotation: {x: -.000174494344, y: -.685428321, z: .000163999895, w: .728140056} - m_LocalPosition: {x: -.284003556, y: -5.09567144e-08, z: 2.25467375e-07} - m_LocalScale: {x: .999999821, y: 1, z: .99999994} + m_LocalRotation: {x: -0.00017449434, y: -0.6854283, z: 0.0001639999, w: 0.72814006} + m_LocalPosition: {x: -0.28400356, y: -0.000000050956714, z: 0.00000022546737} + m_LocalScale: {x: 0.9999998, y: 1, z: 0.99999994} m_Children: - {fileID: 423494} m_Father: {fileID: 469546} @@ -7255,9 +7269,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 173152} - m_LocalRotation: {x: .127501026, y: -.020223571, z: -.0109541975, w: .991571724} - m_LocalPosition: {x: -.0532609746, y: 1.67638063e-08, z: 2.00234354e-08} - m_LocalScale: {x: .999999702, y: .999999821, z: .999999762} + m_LocalRotation: {x: 0.12750103, y: -0.020223571, z: -0.0109541975, w: 0.9915717} + m_LocalPosition: {x: -0.053260975, y: 0.000000016763806, z: 0.000000020023435} + m_LocalScale: {x: 0.9999997, y: 0.9999998, z: 0.99999976} m_Children: - {fileID: 414718} - {fileID: 448076} @@ -7270,9 +7284,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 144638} - m_LocalRotation: {x: -5.24496393e-08, y: -.694713831, z: -4.55388331e-13, w: .719286263} - m_LocalPosition: {x: -.967563927, y: 7.29985032e-08, z: .0440789238} - m_LocalScale: {x: 1, y: .999999881, z: 1} + m_LocalRotation: {x: -0.00000005244964, y: -0.69471383, z: -4.5538833e-13, w: 0.71928626} + m_LocalPosition: {x: -0.9675639, y: 0.0000000729985, z: 0.044078924} + m_LocalScale: {x: 1, y: 0.9999999, z: 1} m_Children: - {fileID: 472606} m_Father: {fileID: 477750} @@ -7283,7 +7297,7 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 113334} - m_LocalRotation: {x: 0, y: -0, z: -.707106709, w: .707106829} + m_LocalRotation: {x: 0, y: -0, z: -0.7071067, w: 0.7071068} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: @@ -7327,8 +7341,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 101286} - m_LocalRotation: {x: 1.38777878e-17, y: -3.7252903e-09, z: 3.7252903e-09, w: 1} - m_LocalPosition: {x: -4.47034836e-08, y: -3.7252903e-08, z: 7.4505806e-09} + m_LocalRotation: {x: 1.3877788e-17, y: -0.0000000037252903, z: 0.0000000037252903, + w: 1} + m_LocalPosition: {x: -0.000000044703484, y: -0.000000037252903, z: 0.000000007450581} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 451502} @@ -7339,9 +7354,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 134864} - m_LocalRotation: {x: -7.45058149e-09, y: -1.11758718e-08, z: 2.04890966e-08, w: 1} - m_LocalPosition: {x: -4.09781933e-08, y: 7.4505806e-09, z: 1.49011612e-08} - m_LocalScale: {x: 1, y: .99999994, z: .99999994} + m_LocalRotation: {x: -0.0000000074505815, y: -0.000000011175872, z: 0.000000020489097, + w: 1} + m_LocalPosition: {x: -0.000000040978193, y: 0.000000007450581, z: 0.000000014901161} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} m_Children: [] m_Father: {fileID: 459784} m_RootOrder: 0 @@ -7351,9 +7367,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 153270} - m_LocalRotation: {x: -.330049038, y: .941488981, z: -.0437835865, w: .0524323024} - m_LocalPosition: {x: 2.0146274e-08, y: 1.09647296e-08, z: -2.14825002e-09} - m_LocalScale: {x: .999999702, y: 1.00000012, z: 1.00000024} + m_LocalRotation: {x: -0.33004904, y: 0.941489, z: -0.043783586, w: 0.052432302} + m_LocalPosition: {x: 0.000000020146274, y: 0.00000001096473, z: -0.00000000214825} + m_LocalScale: {x: 0.9999997, y: 1.0000001, z: 1.0000002} m_Children: - {fileID: 452382} m_Father: {fileID: 413212} @@ -7364,9 +7380,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 118964} - m_LocalRotation: {x: .0651293993, y: -.0766778588, z: .03689925, w: .994242013} - m_LocalPosition: {x: -2.43599061e-08, y: 5.77128958e-08, z: -9.31323019e-10} - m_LocalScale: {x: .99999994, y: .99999994, z: 1.00000012} + m_LocalRotation: {x: 0.0651294, y: -0.07667786, z: 0.03689925, w: 0.994242} + m_LocalPosition: {x: -0.000000024359906, y: 0.000000057712896, z: -9.31323e-10} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1.0000001} m_Children: - {fileID: 458896} m_Father: {fileID: 407876} @@ -7377,9 +7393,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 109524} - m_LocalRotation: {x: .00688618794, y: .104664162, z: .0545653924, w: .992985725} - m_LocalPosition: {x: -.053961888, y: 1.13621354e-07, z: 8.38190317e-09} - m_LocalScale: {x: .99999994, y: 1, z: .999999821} + m_LocalRotation: {x: 0.006886188, y: 0.10466416, z: 0.054565392, w: 0.9929857} + m_LocalPosition: {x: -0.053961888, y: 0.000000113621354, z: 0.000000008381903} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.9999998} m_Children: - {fileID: 437754} m_Father: {fileID: 488258} @@ -7390,9 +7406,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 188222} - m_LocalRotation: {x: -7.11285564e-09, y: -.0243806448, z: 1.03364126e-08, w: .999702752} - m_LocalPosition: {x: -.137129188, y: 9.05492925e-09, z: 1.22078603e-09} - m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} + m_LocalRotation: {x: -0.0000000071128556, y: -0.024380645, z: 0.000000010336413, + w: 0.99970275} + m_LocalPosition: {x: -0.13712919, y: 0.000000009054929, z: 0.000000001220786} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} m_Children: - {fileID: 485066} - {fileID: 402568} @@ -7404,9 +7421,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 142114} - m_LocalRotation: {x: 4.16245493e-05, y: .986377239, z: -.00024971526, w: -.164498761} - m_LocalPosition: {x: -.185320824, y: 3.21620682e-05, z: .0635805279} - m_LocalScale: {x: 1, y: .999999583, z: 1} + m_LocalRotation: {x: 0.00004162455, y: 0.98637724, z: -0.00024971526, w: -0.16449876} + m_LocalPosition: {x: -0.18532082, y: 0.00003216207, z: 0.06358053} + m_LocalScale: {x: 1, y: 0.9999996, z: 1} m_Children: [] m_Father: {fileID: 454338} m_RootOrder: 0 @@ -7416,9 +7433,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 183106} - m_LocalRotation: {x: .000997925876, y: .00676689623, z: .99994278, w: .00822875835} - m_LocalPosition: {x: -.0416162759, y: -6.70552254e-08, z: -5.3551048e-08} - m_LocalScale: {x: 1.00000012, y: 1.00000036, z: 1.00000036} + m_LocalRotation: {x: 0.0009979259, y: 0.006766896, z: 0.9999428, w: 0.008228758} + m_LocalPosition: {x: -0.041616276, y: -0.000000067055225, z: -0.000000053551048} + m_LocalScale: {x: 1.0000001, y: 1.0000004, z: 1.0000004} m_Children: [] m_Father: {fileID: 406650} m_RootOrder: 1 @@ -7428,9 +7445,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 102684} - m_LocalRotation: {x: -3.46452026e-07, y: 3.35276091e-08, z: 1.16157084e-14, w: 1} - m_LocalPosition: {x: 2.23517418e-08, y: -4.47034836e-08, z: -2.98023224e-08} - m_LocalScale: {x: 1, y: .999999881, z: .999999881} + m_LocalRotation: {x: -0.00000034645203, y: 0.00000003352761, z: 1.1615708e-14, w: 1} + m_LocalPosition: {x: 0.000000022351742, y: -0.000000044703484, z: -0.000000029802322} + m_LocalScale: {x: 1, y: 0.9999999, z: 0.9999999} m_Children: [] m_Father: {fileID: 427186} m_RootOrder: 0 @@ -7440,9 +7457,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 170802} - m_LocalRotation: {x: 1.44587852e-06, y: 9.31331678e-10, z: 6.28642605e-09, w: 1} - m_LocalPosition: {x: 1.49011612e-08, y: -6.70552254e-08, z: -3.58559191e-08} - m_LocalScale: {x: 1, y: .99999994, z: .99999994} + m_LocalRotation: {x: 0.0000014458785, y: 9.313317e-10, z: 0.000000006286426, w: 1} + m_LocalPosition: {x: 0.000000014901161, y: -0.000000067055225, z: -0.00000003585592} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} m_Children: - {fileID: 450740} m_Father: {fileID: 478078} @@ -7453,9 +7470,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 129212} - m_LocalRotation: {x: .0651301742, y: -.0766779706, z: .0368985422, w: .994241953} - m_LocalPosition: {x: -.117348455, y: 1.11758709e-08, z: -5.587935e-09} - m_LocalScale: {x: .999999821, y: .999999821, z: .999999821} + m_LocalRotation: {x: 0.065130174, y: -0.07667797, z: 0.036898542, w: 0.99424195} + m_LocalPosition: {x: -0.117348455, y: 0.000000011175871, z: -0.000000005587935} + m_LocalScale: {x: 0.9999998, y: 0.9999998, z: 0.9999998} m_Children: [] m_Father: {fileID: 438156} m_RootOrder: 0 @@ -7465,7 +7482,7 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146310} - m_LocalRotation: {x: -5.33866746e-08, y: .707106829, z: .707106709, w: -5.33866711e-08} + m_LocalRotation: {x: -0.000000053386675, y: 0.7071068, z: 0.7071067, w: -0.00000005338667} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -7477,9 +7494,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 136048} - m_LocalRotation: {x: 1.70711451e-06, y: -3.72526188e-09, z: 1.69966441e-08, w: 1} - m_LocalPosition: {x: -1.86264515e-08, y: -1.67638063e-08, z: 8.7544322e-08} - m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} + m_LocalRotation: {x: 0.0000017071145, y: -0.0000000037252619, z: 0.000000016996644, + w: 1} + m_LocalPosition: {x: -0.000000018626451, y: -0.000000016763806, z: 0.00000008754432} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} m_Children: - {fileID: 490724} m_Father: {fileID: 477270} @@ -7490,9 +7508,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 148190} - m_LocalRotation: {x: -.265917361, y: .963671505, z: .0193941835, w: -.0157828405} - m_LocalPosition: {x: .091289416, y: .073590681, z: .00820782036} - m_LocalScale: {x: 1.00000036, y: .999999225, z: .999999285} + m_LocalRotation: {x: -0.26591736, y: 0.9636715, z: 0.019394184, w: -0.01578284} + m_LocalPosition: {x: 0.091289416, y: 0.07359068, z: 0.00820782} + m_LocalScale: {x: 1.0000004, y: 0.9999992, z: 0.9999993} m_Children: [] m_Father: {fileID: 413212} m_RootOrder: 1 @@ -7502,8 +7520,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146578} - m_LocalRotation: {x: -3.60410486e-15, y: 7.10349019e-15, z: -1.33517687e-15, w: 1} - m_LocalPosition: {x: .0234402921, y: .0980000049, z: -.00142740528} + m_LocalRotation: {x: -3.604105e-15, y: 7.10349e-15, z: -1.3351769e-15, w: 1} + m_LocalPosition: {x: 0.023440292, y: 0.098000005, z: -0.0014274053} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 474682} @@ -7514,9 +7532,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 121864} - m_LocalRotation: {x: .758457839, y: .163972408, z: .49224475, w: -.394398123} - m_LocalPosition: {x: -2.95694917e-08, y: 1.39698386e-08, z: -2.22818926e-07} - m_LocalScale: {x: 1.00000024, y: .99999994, z: .999999881} + m_LocalRotation: {x: 0.75845784, y: 0.16397241, z: 0.49224475, w: -0.39439812} + m_LocalPosition: {x: -0.000000029569492, y: 0.000000013969839, z: -0.00000022281893} + m_LocalScale: {x: 1.0000002, y: 0.99999994, z: 0.9999999} m_Children: - {fileID: 420124} m_Father: {fileID: 405990} @@ -7527,9 +7545,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 100054} - m_LocalRotation: {x: -1.197713e-07, y: -.715359509, z: 6.73252458e-08, w: .698756635} - m_LocalPosition: {x: 7.42147721e-09, y: -2.00000001e-15, z: -8.38190317e-09} - m_LocalScale: {x: .999999821, y: 1, z: .999999821} + m_LocalRotation: {x: -0.0000001197713, y: -0.7153595, z: 0.000000067325246, w: 0.69875664} + m_LocalPosition: {x: 0.000000007421477, y: -2e-15, z: -0.000000008381903} + m_LocalScale: {x: 0.9999998, y: 1, z: 0.9999998} m_Children: [] m_Father: {fileID: 472574} m_RootOrder: 1 @@ -7539,9 +7557,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 114940} - m_LocalRotation: {x: .749272466, y: -.00836352818, z: .661154032, w: -.0373651907} - m_LocalPosition: {x: -.00057710032, y: -.0127163976, z: -.0569404773} - m_LocalScale: {x: 1.00000012, y: .99999994, z: 1} + m_LocalRotation: {x: 0.74927247, y: -0.008363528, z: 0.66115403, w: -0.03736519} + m_LocalPosition: {x: -0.0005771003, y: -0.012716398, z: -0.056940477} + m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 1} m_Children: [] m_Father: {fileID: 428848} m_RootOrder: 0 @@ -7551,9 +7569,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 198526} - m_LocalRotation: {x: 6.51925891e-09, y: -8.38190317e-09, z: -1.55996531e-08, w: 1} - m_LocalPosition: {x: 2.23517418e-08, y: -1.76951289e-08, z: 2.98023224e-08} - m_LocalScale: {x: 1, y: .99999994, z: .99999994} + m_LocalRotation: {x: 0.000000006519259, y: -0.000000008381903, z: -0.000000015599653, + w: 1} + m_LocalPosition: {x: 0.000000022351742, y: -0.000000017695129, z: 0.000000029802322} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} m_Children: [] m_Father: {fileID: 458802} m_RootOrder: 0 @@ -7563,9 +7582,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 170590} - m_LocalRotation: {x: 1.86264537e-09, y: -9.31322575e-10, z: 1.61235221e-08, w: 1} - m_LocalPosition: {x: -4.33064997e-08, y: 5.96046448e-08, z: -5.3551048e-08} - m_LocalScale: {x: 1, y: .99999994, z: .99999994} + m_LocalRotation: {x: 0.0000000018626454, y: -9.313226e-10, z: 0.000000016123522, + w: 1} + m_LocalPosition: {x: -0.0000000433065, y: 0.000000059604645, z: -0.000000053551048} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} m_Children: [] m_Father: {fileID: 459988} m_RootOrder: 0 @@ -7575,9 +7595,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 186006} - m_LocalRotation: {x: 1.2852253e-07, y: 2.60770214e-08, z: -6.28642667e-08, w: 1} - m_LocalPosition: {x: -.0587722398, y: -5.12227416e-09, z: -6.98491887e-09} - m_LocalScale: {x: 1.00000012, y: .99999994, z: .99999994} + m_LocalRotation: {x: 0.00000012852253, y: 0.000000026077021, z: -0.00000006286427, + w: 1} + m_LocalPosition: {x: -0.05877224, y: -0.000000005122274, z: -0.000000006984919} + m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 0.99999994} m_Children: - {fileID: 438954} m_Father: {fileID: 432270} @@ -7588,9 +7609,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 137852} - m_LocalRotation: {x: .0621142685, y: -.000338136277, z: .041776333, w: .99719429} - m_LocalPosition: {x: -.234697104, y: 3.91155481e-08, z: 1.49011612e-08} - m_LocalScale: {x: .99999994, y: .999999881, z: 1} + m_LocalRotation: {x: 0.06211427, y: -0.00033813628, z: 0.041776333, w: 0.9971943} + m_LocalPosition: {x: -0.2346971, y: 0.000000039115548, z: 0.000000014901161} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1} m_Children: [] m_Father: {fileID: 419024} m_RootOrder: 0 @@ -7600,9 +7621,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 128156} - m_LocalRotation: {x: .0621188134, y: -.000341503241, z: .0421117023, w: .997179925} - m_LocalPosition: {x: -.234697104, y: 3.7252903e-08, z: -9.31322575e-09} - m_LocalScale: {x: 1.00005448, y: .999945641, z: 1.00000119} + m_LocalRotation: {x: 0.062118813, y: -0.00034150324, z: 0.042111702, w: 0.9971799} + m_LocalPosition: {x: -0.2346971, y: 0.000000037252903, z: -0.000000009313226} + m_LocalScale: {x: 1.0000545, y: 0.99994564, z: 1.0000012} m_Children: - {fileID: 473128} - {fileID: 422598} @@ -7615,9 +7636,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 114058} - m_LocalRotation: {x: -4.70366205e-15, y: -5.8671624e-08, z: 3.55174488e-15, w: 1} + m_LocalRotation: {x: -4.703662e-15, y: -0.000000058671624, z: 3.5517449e-15, w: 1} m_LocalPosition: {x: -0, y: 1e-15, z: 0} - m_LocalScale: {x: 1.00001442, y: 1.00001442, z: 1.00001442} + m_LocalScale: {x: 1.0000144, y: 1.0000144, z: 1.0000144} m_Children: - {fileID: 497248} m_Father: {fileID: 407636} @@ -7628,9 +7649,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 189386} - m_LocalRotation: {x: -1.197713e-07, y: -.715359509, z: 6.73252458e-08, w: .698756635} - m_LocalPosition: {x: 7.42147721e-09, y: -2.00000001e-15, z: -8.38190317e-09} - m_LocalScale: {x: .999999821, y: 1, z: .999999821} + m_LocalRotation: {x: -0.0000001197713, y: -0.7153595, z: 0.000000067325246, w: 0.69875664} + m_LocalPosition: {x: 0.000000007421477, y: -2e-15, z: -0.000000008381903} + m_LocalScale: {x: 0.9999998, y: 1, z: 0.9999998} m_Children: - {fileID: 443836} m_Father: {fileID: 472574} @@ -7641,8 +7662,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 195894} - m_LocalRotation: {x: 7.54979155e-08, y: 1, z: -1.94707212e-07, w: 1.33158039e-07} - m_LocalPosition: {x: 9.31322575e-09, y: -1e-15, z: 9.31322575e-09} + m_LocalRotation: {x: 0.000000075497915, y: 1, z: -0.00000019470721, w: 0.00000013315804} + m_LocalPosition: {x: 0.000000009313226, y: -1e-15, z: 0.000000009313226} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 443836} @@ -7653,9 +7674,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 139356} - m_LocalRotation: {x: .0766701102, y: .00548967579, z: -.0713163167, w: .994487584} - m_LocalPosition: {x: -.117544502, y: -1.28056898e-09, z: -9.31323019e-10} - m_LocalScale: {x: .999999821, y: .999999762, z: .999999583} + m_LocalRotation: {x: 0.07667011, y: 0.005489676, z: -0.07131632, w: 0.9944876} + m_LocalPosition: {x: -0.1175445, y: -0.000000001280569, z: -9.31323e-10} + m_LocalScale: {x: 0.9999998, y: 0.99999976, z: 0.9999996} m_Children: [] m_Father: {fileID: 432270} m_RootOrder: 1 @@ -7665,9 +7686,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 193586} - m_LocalRotation: {x: 4.28966196e-05, y: .986377239, z: -.000256255356, w: -.16449903} - m_LocalPosition: {x: -.185320809, y: 3.30707226e-05, z: .0635805205} - m_LocalScale: {x: 1, y: 1, z: .999999821} + m_LocalRotation: {x: 0.00004289662, y: 0.98637724, z: -0.00025625536, w: -0.16449903} + m_LocalPosition: {x: -0.18532081, y: 0.000033070723, z: 0.06358052} + m_LocalScale: {x: 1, y: 1, z: 0.9999998} m_Children: [] m_Father: {fileID: 470564} m_RootOrder: 0 @@ -7677,9 +7698,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 164572} - m_LocalRotation: {x: .264865994, y: .963481724, z: -.0305690207, w: .0247913357} - m_LocalPosition: {x: .0912893787, y: -.073590681, z: .00820758101} - m_LocalScale: {x: .999999821, y: 1, z: 1} + m_LocalRotation: {x: 0.264866, y: 0.9634817, z: -0.03056902, w: 0.024791336} + m_LocalPosition: {x: 0.09128938, y: -0.07359068, z: 0.008207581} + m_LocalScale: {x: 0.9999998, y: 1, z: 1} m_Children: - {fileID: 441232} m_Father: {fileID: 476318} @@ -7690,9 +7711,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 169398} - m_LocalRotation: {x: 5.28343662e-06, y: .0141705982, z: -.0246123355, w: .999596655} - m_LocalPosition: {x: .00376432063, y: .0127823604, z: -.056962762} - m_LocalScale: {x: 1.05467141, y: .999980927, z: .999993742} + m_LocalRotation: {x: 0.0000052834366, y: 0.014170598, z: -0.024612335, w: 0.99959666} + m_LocalPosition: {x: 0.0037643206, y: 0.01278236, z: -0.056962762} + m_LocalScale: {x: 1.0546714, y: 0.9999809, z: 0.99999374} m_Children: - {fileID: 404928} m_Father: {fileID: 420340} @@ -7703,9 +7724,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 129510} - m_LocalRotation: {x: -.0651301965, y: -.0766779259, z: -.0368985087, w: .994241953} - m_LocalPosition: {x: -.117348656, y: 6.33299351e-08, z: -1.49011612e-08} - m_LocalScale: {x: 1.00000012, y: .99999994, z: 1.00000012} + m_LocalRotation: {x: -0.0651302, y: -0.076677926, z: -0.03689851, w: 0.99424195} + m_LocalPosition: {x: -0.117348656, y: 0.000000063329935, z: -0.000000014901161} + m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 1.0000001} m_Children: [] m_Father: {fileID: 444204} m_RootOrder: 0 @@ -7715,8 +7736,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 156432} - m_LocalRotation: {x: 9.2745033e-08, y: .795869231, z: 3.66563455e-07, w: .605468631} - m_LocalPosition: {x: -.052275598, y: 1.06566233e-07, z: -.188821465} + m_LocalRotation: {x: 0.00000009274503, y: 0.79586923, z: 0.00000036656346, w: 0.60546863} + m_LocalPosition: {x: -0.052275598, y: 0.00000010656623, z: -0.18882146} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 477174} @@ -7728,9 +7749,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 127132} - m_LocalRotation: {x: 1.11758718e-08, y: -2.23517418e-08, z: 1.49011612e-08, w: 1} - m_LocalPosition: {x: 5.96046448e-08, y: 3.7252903e-08, z: 5.96046448e-08} - m_LocalScale: {x: 1, y: 1, z: .99999994} + m_LocalRotation: {x: 0.000000011175872, y: -0.000000022351742, z: 0.000000014901161, + w: 1} + m_LocalPosition: {x: 0.000000059604645, y: 0.000000037252903, z: 0.000000059604645} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} m_Children: [] m_Father: {fileID: 463792} m_RootOrder: 0 @@ -7740,9 +7762,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 182844} - m_LocalRotation: {x: .00690086605, y: .10442321, z: .0545609593, w: .993011236} - m_LocalPosition: {x: -.053961888, y: 1.13621354e-07, z: 8.38190317e-09} - m_LocalScale: {x: 1, y: 1, z: .999999821} + m_LocalRotation: {x: 0.006900866, y: 0.10442321, z: 0.05456096, w: 0.99301124} + m_LocalPosition: {x: -0.053961888, y: 0.000000113621354, z: 0.000000008381903} + m_LocalScale: {x: 1, y: 1, z: 0.9999998} m_Children: [] m_Father: {fileID: 488258} m_RootOrder: 0 @@ -7752,9 +7774,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 128932} - m_LocalRotation: {x: .127503112, y: -.0202237777, z: -.0109541379, w: .991571486} - m_LocalPosition: {x: -.0532609746, y: 1.67638063e-08, z: 2.00234354e-08} - m_LocalScale: {x: .873918414, y: .999999762, z: 1} + m_LocalRotation: {x: 0.12750311, y: -0.020223778, z: -0.010954138, w: 0.9915715} + m_LocalPosition: {x: -0.053260975, y: 0.000000016763806, z: 0.000000020023435} + m_LocalScale: {x: 0.8739184, y: 0.99999976, z: 1} m_Children: [] m_Father: {fileID: 402816} m_RootOrder: 3 @@ -7764,9 +7786,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 139964} - m_LocalRotation: {x: -.334405601, y: .940643191, z: -.0572797433, w: .00907136127} - m_LocalPosition: {x: 2.0146274e-08, y: 1.09647287e-08, z: -4.01089517e-09} - m_LocalScale: {x: .999999821, y: 1.00000012, z: .999999702} + m_LocalRotation: {x: -0.3344056, y: 0.9406432, z: -0.057279743, w: 0.009071361} + m_LocalPosition: {x: 0.000000020146274, y: 0.000000010964729, z: -0.000000004010895} + m_LocalScale: {x: 0.9999998, y: 1.0000001, z: 0.9999997} m_Children: [] m_Father: {fileID: 492242} m_RootOrder: 0 @@ -7776,8 +7798,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 129052} - m_LocalRotation: {x: 9.68575478e-08, y: -1.86264559e-09, z: -3.72529008e-09, w: 1} - m_LocalPosition: {x: -1.49011612e-08, y: 2.23517418e-08, z: -4.28408384e-08} + m_LocalRotation: {x: 0.00000009685755, y: -0.0000000018626456, z: -0.00000000372529, + w: 1} + m_LocalPosition: {x: -0.000000014901161, y: 0.000000022351742, z: -0.00000004284084} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 482492} @@ -7789,9 +7812,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 153502} - m_LocalRotation: {x: -3.14228282e-06, y: -7.45060724e-09, z: 8.38187919e-09, w: 1} - m_LocalPosition: {x: -7.4505806e-09, y: 1.86264504e-09, z: -3.72529008e-09} - m_LocalScale: {x: 1, y: .99999994, z: 1} + m_LocalRotation: {x: -0.0000031422828, y: -0.000000007450607, z: 0.000000008381879, + w: 1} + m_LocalPosition: {x: -0.000000007450581, y: 0.000000001862645, z: -0.00000000372529} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} m_Children: [] m_Father: {fileID: 456878} m_RootOrder: 0 @@ -7801,9 +7825,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 109550} - m_LocalRotation: {x: .00694296742, y: .28691715, z: -.0383752584, w: .957161307} - m_LocalPosition: {x: -.0243425965, y: 1.41561031e-07, z: -1.49011612e-08} - m_LocalScale: {x: .999999821, y: .999999821, z: .999999881} + m_LocalRotation: {x: 0.0069429674, y: 0.28691715, z: -0.03837526, w: 0.9571613} + m_LocalPosition: {x: -0.024342597, y: 0.00000014156103, z: -0.000000014901161} + m_LocalScale: {x: 0.9999998, y: 0.9999998, z: 0.9999999} m_Children: - {fileID: 430012} m_Father: {fileID: 443796} @@ -7814,9 +7838,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 131100} - m_LocalRotation: {x: .677038312, y: -.666605771, z: .204002172, w: -.235879242} - m_LocalPosition: {x: -.0337505117, y: -.0380005725, z: .0836079344} - m_LocalScale: {x: 1.00000024, y: 1, z: 1} + m_LocalRotation: {x: 0.6770383, y: -0.6666058, z: 0.20400217, w: -0.23587924} + m_LocalPosition: {x: -0.03375051, y: -0.038000572, z: 0.083607934} + m_LocalScale: {x: 1.0000002, y: 1, z: 1} m_Children: [] m_Father: {fileID: 480688} m_RootOrder: 0 @@ -7826,9 +7850,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 152046} - m_LocalRotation: {x: -.0747175962, y: .0301421005, z: .996618152, w: -.0161562134} - m_LocalPosition: {x: -.0336288102, y: 5.58793545e-08, z: 0} - m_LocalScale: {x: 1.00000012, y: 1, z: 1} + m_LocalRotation: {x: -0.074717596, y: 0.0301421, z: 0.99661815, w: -0.016156213} + m_LocalPosition: {x: -0.03362881, y: 0.000000055879354, z: 0} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} m_Children: [] m_Father: {fileID: 488020} m_RootOrder: 1 @@ -7838,8 +7862,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 126228} - m_LocalRotation: {x: .707106948, y: 1.50651101e-06, z: .70710659, w: -1.50651181e-06} - m_LocalPosition: {x: 6.51925802e-09, y: 2.56113708e-08, z: -1.39698397e-09} + m_LocalRotation: {x: 0.70710695, y: 0.000001506511, z: 0.7071066, w: -0.0000015065118} + m_LocalPosition: {x: 0.000000006519258, y: 0.00000002561137, z: -0.000000001396984} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 494944} @@ -7850,9 +7874,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 178222} - m_LocalRotation: {x: -9.89497977e-08, y: .0484604314, z: 2.06295141e-08, w: .998825133} - m_LocalPosition: {x: 1.21921477e-08, y: 4.03961087e-09, z: 2.07961995e-10} - m_LocalScale: {x: .999999821, y: 1, z: .999999821} + m_LocalRotation: {x: -0.0000000989498, y: 0.04846043, z: 0.000000020629514, w: 0.99882513} + m_LocalPosition: {x: 0.000000012192148, y: 0.000000004039611, z: 2.07962e-10} + m_LocalScale: {x: 0.9999998, y: 1, z: 0.9999998} m_Children: [] m_Father: {fileID: 482966} m_RootOrder: 0 @@ -7862,9 +7886,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 173536} - m_LocalRotation: {x: .771931827, y: -.151670352, z: .461097598, w: .4104954} - m_LocalPosition: {x: 6.4028427e-08, y: -1.49011612e-08, z: -2.46567652e-07} - m_LocalScale: {x: 1.05265856, y: 1.05265784, z: 1.05265832} + m_LocalRotation: {x: 0.7719318, y: -0.15167035, z: 0.4610976, w: 0.4104954} + m_LocalPosition: {x: 0.00000006402843, y: -0.000000014901161, z: -0.00000024656765} + m_LocalScale: {x: 1.0526586, y: 1.0526578, z: 1.0526583} m_Children: - {fileID: 437030} m_Father: {fileID: 478276} @@ -7875,9 +7899,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146264} - m_LocalRotation: {x: -.0560732596, y: -.0994188413, z: -.652415395, w: .749216795} - m_LocalPosition: {x: -.0129142599, y: .380529404, z: 1.10993576} - m_LocalScale: {x: .99999994, y: .999999881, z: .999999881} + m_LocalRotation: {x: -0.05607326, y: -0.09941884, z: -0.6524154, w: 0.7492168} + m_LocalPosition: {x: -0.01291426, y: 0.3805294, z: 1.1099358} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} m_Children: - {fileID: 475460} - {fileID: 485624} @@ -7891,8 +7915,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 184354} - m_LocalRotation: {x: -1.53239898e-14, y: -7.45056772e-09, z: -1.14172432e-22, w: 1} - m_LocalPosition: {x: -7.59845697e-09, y: -1.5800083e-08, z: -1.62776104e-09} + m_LocalRotation: {x: -1.532399e-14, y: -0.0000000074505677, z: -1.1417243e-22, w: 1} + m_LocalPosition: {x: -0.000000007598457, y: -0.000000015800083, z: -0.000000001627761} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 498190} @@ -7903,9 +7927,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 133558} - m_LocalRotation: {x: .0523959659, y: .276506245, z: .0334836952, w: .958998322} - m_LocalPosition: {x: -.0209778994, y: 8.19563866e-08, z: 2.60770321e-08} - m_LocalScale: {x: 1, y: .999999821, z: .99999994} + m_LocalRotation: {x: 0.052395966, y: 0.27650625, z: 0.033483695, w: 0.9589983} + m_LocalPosition: {x: -0.0209779, y: 0.00000008195639, z: 0.000000026077032} + m_LocalScale: {x: 1, y: 0.9999998, z: 0.99999994} m_Children: - {fileID: 417958} m_Father: {fileID: 471384} @@ -7916,9 +7940,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 125838} - m_LocalRotation: {x: .0603443496, y: .014429681, z: .108823307, w: .992122889} - m_LocalPosition: {x: -.0722057298, y: -.0174764507, z: .00339127705} - m_LocalScale: {x: 1, y: .99999994, z: 1} + m_LocalRotation: {x: 0.06034435, y: 0.014429681, z: 0.10882331, w: 0.9921229} + m_LocalPosition: {x: -0.07220573, y: -0.01747645, z: 0.003391277} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} m_Children: - {fileID: 491084} - {fileID: 435070} @@ -7937,9 +7961,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 189418} - m_LocalRotation: {x: -.0718618557, y: .0799790025, z: -.0111292349, w: .994140565} - m_LocalPosition: {x: -.0592358038, y: 2.98023224e-08, z: -5.12227416e-09} - m_LocalScale: {x: 1.00000012, y: .999999881, z: 1.00000024} + m_LocalRotation: {x: -0.071861856, y: 0.079979, z: -0.011129235, w: 0.99414057} + m_LocalPosition: {x: -0.059235804, y: 0.000000029802322, z: -0.000000005122274} + m_LocalScale: {x: 1.0000001, y: 0.9999999, z: 1.0000002} m_Children: [] m_Father: {fileID: 484482} m_RootOrder: 0 @@ -7949,9 +7973,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 138922} - m_LocalRotation: {x: .0152336247, y: .295041114, z: .0234413203, w: .955075502} - m_LocalPosition: {x: -.0416162759, y: -6.70552254e-08, z: -5.3551048e-08} - m_LocalScale: {x: .99999994, y: .999999762, z: 1} + m_LocalRotation: {x: 0.015233625, y: 0.2950411, z: 0.02344132, w: 0.9550755} + m_LocalPosition: {x: -0.041616276, y: -0.000000067055225, z: -0.000000053551048} + m_LocalScale: {x: 0.99999994, y: 0.99999976, z: 1} m_Children: - {fileID: 481372} m_Father: {fileID: 428904} @@ -7962,9 +7986,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 174816} - m_LocalRotation: {x: .70281142, y: .705710649, z: .0778220966, w: .0444106758} - m_LocalPosition: {x: -.0376021862, y: .0420000032, z: .0859859213} - m_LocalScale: {x: .999999702, y: 1, z: 1.00000036} + m_LocalRotation: {x: 0.7028114, y: 0.70571065, z: 0.0778221, w: 0.044410676} + m_LocalPosition: {x: -0.037602186, y: 0.042000003, z: 0.08598592} + m_LocalScale: {x: 0.9999997, y: 1, z: 1.0000004} m_Children: - {fileID: 463036} m_Father: {fileID: 474724} @@ -7975,9 +7999,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 151174} - m_LocalRotation: {x: .765582561, y: -.167002976, z: .403300554, w: .472590566} - m_LocalPosition: {x: -.130635813, y: -.0356745422, z: -.206635743} - m_LocalScale: {x: 1.00000012, y: 1.00000012, z: .999999881} + m_LocalRotation: {x: 0.7655827, y: -0.16700299, z: 0.4033006, w: 0.47259063} + m_LocalPosition: {x: -0.13063581, y: -0.035674542, z: -0.20663574} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 0.9999999} m_Children: - {fileID: 419364} m_Father: {fileID: 435298} @@ -7988,8 +8012,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 173808} - m_LocalRotation: {x: -1.43935904e-06, y: 9.3130853e-10, z: 9.77888881e-09, w: 1} - m_LocalPosition: {x: -5.587935e-09, y: -2.98023224e-08, z: 1.3737008e-08} + m_LocalRotation: {x: -0.000001439359, y: 9.3130853e-10, z: 0.000000009778889, w: 1} + m_LocalPosition: {x: -0.000000005587935, y: -0.000000029802322, z: 0.000000013737008} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 427588} @@ -8001,9 +8025,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 171366} - m_LocalRotation: {x: .0204626098, y: .999689579, z: .0063900589, w: -.0126948981} - m_LocalPosition: {x: -.0166709572, y: .171590626, z: .228472322} - m_LocalScale: {x: 30.6538982, y: 1.00000012, z: 1} + m_LocalRotation: {x: 0.02046261, y: 0.9996896, z: 0.006390059, w: -0.012694898} + m_LocalPosition: {x: -0.016670957, y: 0.17159063, z: 0.22847232} + m_LocalScale: {x: 30.653898, y: 1.0000001, z: 1} m_Children: [] m_Father: {fileID: 416532} m_RootOrder: 29 @@ -8013,9 +8037,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 161982} - m_LocalRotation: {x: .0515170619, y: .230155692, z: .0789279118, w: .968578756} - m_LocalPosition: {x: -.0287208613, y: -1.07102096e-07, z: -1.76951289e-08} - m_LocalScale: {x: 1, y: .99999994, z: .999999821} + m_LocalRotation: {x: 0.051517062, y: 0.23015569, z: 0.07892791, w: 0.96857876} + m_LocalPosition: {x: -0.028720861, y: -0.000000107102096, z: -0.000000017695129} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999998} m_Children: - {fileID: 471384} m_Father: {fileID: 408570} @@ -8026,9 +8050,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 169200} - m_LocalRotation: {x: -.0477817245, y: -.0334550515, z: -.0451468416, w: .997276008} - m_LocalPosition: {x: -.0760072246, y: -.000645298511, z: -.00141743291} - m_LocalScale: {x: 1.00000024, y: 1.00000012, z: 1.00000024} + m_LocalRotation: {x: -0.047781724, y: -0.03345505, z: -0.04514684, w: 0.997276} + m_LocalPosition: {x: -0.076007225, y: -0.0006452985, z: -0.0014174329} + m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 1.0000002} m_Children: - {fileID: 445470} - {fileID: 459826} @@ -8043,9 +8067,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 138910} - m_LocalRotation: {x: -.05239553, y: .276506275, z: -.0334838182, w: .958998322} - m_LocalPosition: {x: -.0209778845, y: 4.47034836e-08, z: 2.98023224e-08} - m_LocalScale: {x: 1, y: .999999881, z: .999999762} + m_LocalRotation: {x: -0.05239553, y: 0.27650627, z: -0.03348382, w: 0.9589983} + m_LocalPosition: {x: -0.020977885, y: 0.000000044703484, z: 0.000000029802322} + m_LocalScale: {x: 1, y: 0.9999999, z: 0.99999976} m_Children: - {fileID: 460862} m_Father: {fileID: 414326} @@ -8056,8 +8080,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 169146} - m_LocalRotation: {x: 9.31322575e-09, y: -1.49011612e-08, z: -7.4505806e-09, w: 1} - m_LocalPosition: {x: -3.7252903e-08, y: -5.21540642e-08, z: 2.23517418e-08} + m_LocalRotation: {x: 0.000000009313226, y: -0.000000014901161, z: -0.000000007450581, + w: 1} + m_LocalPosition: {x: -0.000000037252903, y: -0.000000052154064, z: 0.000000022351742} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 425614} @@ -8068,9 +8093,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 145964} - m_LocalRotation: {x: .136551231, y: .380259812, z: .158838332, w: .900847733} - m_LocalPosition: {x: -.0379325673, y: -3.35276127e-08, z: 1.86264515e-08} - m_LocalScale: {x: .999999821, y: .999999762, z: .99999994} + m_LocalRotation: {x: 0.13655123, y: 0.3802598, z: 0.15883833, w: 0.90084773} + m_LocalPosition: {x: -0.037932567, y: -0.000000033527613, z: 0.000000018626451} + m_LocalScale: {x: 0.9999998, y: 0.99999976, z: 0.99999994} m_Children: [] m_Father: {fileID: 459746} m_RootOrder: 1 @@ -8080,9 +8105,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146442} - m_LocalRotation: {x: 6.12538642e-08, y: .996255696, z: -1.6087985e-07, w: -.0864559859} - m_LocalPosition: {x: -.0222277232, y: -.242438287, z: .110095225} - m_LocalScale: {x: 1, y: .999999702, z: 1} + m_LocalRotation: {x: 0.000000061253864, y: 0.9962557, z: -0.00000016087985, w: -0.086455986} + m_LocalPosition: {x: -0.022227723, y: -0.24243829, z: 0.110095225} + m_LocalScale: {x: 1, y: 0.9999997, z: 1} m_Children: - {fileID: 477384} - {fileID: 400936} @@ -8094,9 +8119,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 130952} - m_LocalRotation: {x: .118256599, y: .302012086, z: .0264100358, w: .945572138} - m_LocalPosition: {x: -.0379325673, y: -3.35276127e-08, z: 1.86264515e-08} - m_LocalScale: {x: .999999821, y: .999999762, z: .99999994} + m_LocalRotation: {x: 0.1182566, y: 0.3020121, z: 0.026410036, w: 0.94557214} + m_LocalPosition: {x: -0.037932567, y: -0.000000033527613, z: 0.000000018626451} + m_LocalScale: {x: 0.9999998, y: 0.99999976, z: 0.99999994} m_Children: - {fileID: 496684} - {fileID: 408752} @@ -8108,9 +8133,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 182816} - m_LocalRotation: {x: -.0619528256, y: -.000212324434, z: -.00457148859, w: .998068571} - m_LocalPosition: {x: -.0518109463, y: -1.06170774e-07, z: 2.56113708e-08} - m_LocalScale: {x: .873918355, y: .99999994, z: .999999881} + m_LocalRotation: {x: -0.061952826, y: -0.00021232443, z: -0.0045714886, w: 0.9980686} + m_LocalPosition: {x: -0.051810946, y: -0.00000010617077, z: 0.00000002561137} + m_LocalScale: {x: 0.87391835, y: 0.99999994, z: 0.9999999} m_Children: [] m_Father: {fileID: 456208} m_RootOrder: 2 @@ -8120,9 +8145,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 142496} - m_LocalRotation: {x: 7.33417025e-08, y: 1, z: -3.17348224e-07, w: 1.33158025e-07} - m_LocalPosition: {x: .301246643, y: .0117223039, z: -.0293692946} - m_LocalScale: {x: .99999994, y: .999999881, z: .999999821} + m_LocalRotation: {x: 0.0000000733417, y: 1, z: -0.00000031734822, w: 0.00000013315803} + m_LocalPosition: {x: 0.30124664, y: 0.011722304, z: -0.029369295} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999998} m_Children: [] m_Father: {fileID: 482734} m_RootOrder: 1 @@ -8132,9 +8157,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 192218} - m_LocalRotation: {x: .535392344, y: .479536116, z: .52835995, w: .451924652} - m_LocalPosition: {x: -.0129142972, y: -.351501048, z: 1.10993576} - m_LocalScale: {x: .999999881, y: .999999821, z: .999999702} + m_LocalRotation: {x: 0.53539234, y: 0.47953612, z: 0.52835995, w: 0.45192465} + m_LocalPosition: {x: -0.012914297, y: -0.35150105, z: 1.1099358} + m_LocalScale: {x: 0.9999999, y: 0.9999998, z: 0.9999997} m_Children: - {fileID: 444782} m_Father: {fileID: 416532} @@ -8145,9 +8170,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 102614} - m_LocalRotation: {x: -.0523959063, y: .276506275, z: -.0334837101, w: .958998322} - m_LocalPosition: {x: -.0209778845, y: 4.47034836e-08, z: 2.98023224e-08} - m_LocalScale: {x: 1, y: .999999821, z: .999999821} + m_LocalRotation: {x: -0.052395906, y: 0.27650627, z: -0.03348371, w: 0.9589983} + m_LocalPosition: {x: -0.020977885, y: 0.000000044703484, z: 0.000000029802322} + m_LocalScale: {x: 1, y: 0.9999998, z: 0.9999998} m_Children: - {fileID: 459782} m_Father: {fileID: 485198} @@ -8158,9 +8183,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 193002} - m_LocalRotation: {x: -7.11285564e-09, y: -.0243806448, z: 1.03364126e-08, w: .999702752} - m_LocalPosition: {x: -.137129188, y: 9.05492925e-09, z: 1.22078603e-09} - m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} + m_LocalRotation: {x: -0.0000000071128556, y: -0.024380645, z: 0.000000010336413, + w: 0.99970275} + m_LocalPosition: {x: -0.13712919, y: 0.000000009054929, z: 0.000000001220786} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} m_Children: - {fileID: 485498} - {fileID: 471278} @@ -8172,9 +8198,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 131948} - m_LocalRotation: {x: -7.45058149e-09, y: 2.23517418e-08, z: -1.11758709e-08, w: 1} - m_LocalPosition: {x: 7.4505806e-09, y: 7.4505806e-09, z: -7.4505806e-09} - m_LocalScale: {x: 1, y: .99999994, z: 1} + m_LocalRotation: {x: -0.0000000074505815, y: 0.000000022351742, z: -0.000000011175871, + w: 1} + m_LocalPosition: {x: 0.000000007450581, y: 0.000000007450581, z: -0.000000007450581} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} m_Children: [] m_Father: {fileID: 449308} m_RootOrder: 0 @@ -8184,8 +8211,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 193406} - m_LocalRotation: {x: .707106948, y: -2.35392372e-06, z: .70710665, w: 2.35392463e-06} - m_LocalPosition: {x: -1.16415003e-10, y: -1.96741894e-08, z: 4.6566101e-10} + m_LocalRotation: {x: 0.70710695, y: -0.0000023539237, z: 0.70710665, w: 0.0000023539246} + m_LocalPosition: {x: -1.16415e-10, y: -0.00000001967419, z: 4.65661e-10} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 460328} @@ -8196,9 +8223,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 110358} - m_LocalRotation: {x: 9.31322663e-09, y: 2.90566235e-16, z: 3.11993098e-08, w: 1} - m_LocalPosition: {x: -3.7252903e-08, y: -2.04890966e-08, z: 4.79631126e-08} - m_LocalScale: {x: .99999994, y: .999999881, z: .999999881} + m_LocalRotation: {x: 0.000000009313227, y: 2.9056624e-16, z: 0.00000003119931, w: 1} + m_LocalPosition: {x: -0.000000037252903, y: -0.000000020489097, z: 0.000000047963113} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} m_Children: [] m_Father: {fileID: 494576} m_RootOrder: 1 @@ -8208,9 +8235,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 115914} - m_LocalRotation: {x: -.461913288, y: .324809104, z: .245785922, w: .787860751} - m_LocalPosition: {x: -.187748805, y: -6.70552254e-08, z: -1.58324838e-08} - m_LocalScale: {x: .873110533, y: .872985601, z: .875694454} + m_LocalRotation: {x: -0.4619133, y: 0.3248091, z: 0.24578592, w: 0.78786075} + m_LocalPosition: {x: -0.1877488, y: -0.000000067055225, z: -0.000000015832484} + m_LocalScale: {x: 0.87311053, y: 0.8729856, z: 0.87569445} m_Children: - {fileID: 439106} - {fileID: 427234} @@ -8226,9 +8253,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 195192} - m_LocalRotation: {x: .330049336, y: .941488922, z: .0437837355, w: .0524313822} - m_LocalPosition: {x: .0234402772, y: -.0980000049, z: -.00142737036} - m_LocalScale: {x: .999999821, y: 1.00000048, z: 1.00000024} + m_LocalRotation: {x: 0.33004934, y: 0.9414889, z: 0.043783735, w: 0.052431382} + m_LocalPosition: {x: 0.023440277, y: -0.098000005, z: -0.0014273704} + m_LocalScale: {x: 0.9999998, y: 1.0000005, z: 1.0000002} m_Children: - {fileID: 419458} - {fileID: 421732} @@ -8241,8 +8268,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 115430} - m_LocalRotation: {x: -3.57907265e-06, y: 2.04890807e-08, z: 4.65668659e-09, w: 1} - m_LocalPosition: {x: -0, y: 3.72529008e-09, z: -4.47034836e-08} + m_LocalRotation: {x: -0.0000035790727, y: 0.00000002048908, z: 0.0000000046566866, + w: 1} + m_LocalPosition: {x: -0, y: 0.00000000372529, z: -0.000000044703484} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 437036} @@ -8253,9 +8281,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 122754} - m_LocalRotation: {x: -.0666180849, y: -.0416071601, z: -.0427022502, w: .9959957} - m_LocalPosition: {x: -.234697104, y: 9.49949026e-08, z: -5.587935e-09} - m_LocalScale: {x: .99997437, y: .999790549, z: 1.00054502} + m_LocalRotation: {x: -0.066618085, y: -0.04160716, z: -0.04270225, w: 0.9959957} + m_LocalPosition: {x: -0.2346971, y: 0.0000000949949, z: -0.000000005587935} + m_LocalScale: {x: 0.99997437, y: 0.99979055, z: 1.000545} m_Children: [] m_Father: {fileID: 450460} m_RootOrder: 1 @@ -8265,9 +8293,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 197128} - m_LocalRotation: {x: -.0300800242, y: .308215827, z: -.0553753339, w: .949226975} - m_LocalPosition: {x: -.0250134021, y: -2.23517418e-08, z: 1.49011612e-08} - m_LocalScale: {x: .999999762, y: 1, z: 1} + m_LocalRotation: {x: -0.030080024, y: 0.30821583, z: -0.055375334, w: 0.949227} + m_LocalPosition: {x: -0.025013402, y: -0.000000022351742, z: 0.000000014901161} + m_LocalScale: {x: 0.99999976, y: 1, z: 1} m_Children: - {fileID: 405668} m_Father: {fileID: 459190} @@ -8278,8 +8306,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 111220} - m_LocalRotation: {x: 2.17251568e-07, y: .0368261859, z: -7.90343702e-09, w: .999321699} - m_LocalPosition: {x: -.377266079, y: 2.84322521e-08, z: .0226890668} + m_LocalRotation: {x: 0.00000021725157, y: 0.036826186, z: -0.000000007903437, w: 0.9993217} + m_LocalPosition: {x: -0.37726608, y: 0.000000028432252, z: 0.022689067} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 417182} @@ -8292,9 +8320,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 127618} - m_LocalRotation: {x: .00688620703, y: .104663976, z: .054565385, w: .992985725} - m_LocalPosition: {x: -.053961888, y: 1.13621354e-07, z: 8.38190317e-09} - m_LocalScale: {x: .873918295, y: .99999994, z: .999999762} + m_LocalRotation: {x: 0.006886207, y: 0.104663976, z: 0.054565385, w: 0.9929857} + m_LocalPosition: {x: -0.053961888, y: 0.000000113621354, z: 0.000000008381903} + m_LocalScale: {x: 0.8739183, y: 0.99999994, z: 0.99999976} m_Children: [] m_Father: {fileID: 488258} m_RootOrder: 2 @@ -8304,8 +8332,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 101570} - m_LocalRotation: {x: 3.13855708e-07, y: 4.19095292e-09, z: 5.12227327e-09, w: 1} - m_LocalPosition: {x: -.357861072, y: .00679639634, z: .00412275922} + m_LocalRotation: {x: 0.0000003138557, y: 0.000000004190953, z: 0.0000000051222733, + w: 1} + m_LocalPosition: {x: -0.35786107, y: 0.0067963963, z: 0.004122759} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 475314} @@ -8316,8 +8345,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 180724} - m_LocalRotation: {x: -3.60410486e-15, y: 7.10349019e-15, z: -1.33517687e-15, w: 1} - m_LocalPosition: {x: .0234402921, y: .0980000049, z: -.00142740528} + m_LocalRotation: {x: -3.604105e-15, y: 7.10349e-15, z: -1.3351769e-15, w: 1} + m_LocalPosition: {x: 0.023440292, y: 0.098000005, z: -0.0014274053} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 474682} @@ -8328,9 +8357,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 193428} - m_LocalRotation: {x: -.0736008435, y: .0363715217, z: .074480474, w: .993837357} - m_LocalPosition: {x: .057964664, y: .00838614628, z: -.00489327963} - m_LocalScale: {x: .99999994, y: 1, z: 1} + m_LocalRotation: {x: -0.07360084, y: 0.03637152, z: 0.074480474, w: 0.99383736} + m_LocalPosition: {x: 0.057964664, y: 0.008386146, z: -0.0048932796} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} m_Children: - {fileID: 407690} m_Father: {fileID: 444336} @@ -8341,9 +8370,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 147294} - m_LocalRotation: {x: 1.19771045e-07, y: .715359509, z: -6.73254732e-08, w: .698756576} - m_LocalPosition: {x: -.0227332115, y: -.0979999825, z: .319929272} - m_LocalScale: {x: .999999821, y: .99999994, z: .999999821} + m_LocalRotation: {x: 0.00000011977104, y: 0.7153595, z: -0.00000006732547, w: 0.6987566} + m_LocalPosition: {x: -0.022733212, y: -0.09799998, z: 0.31992927} + m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 0.9999998} m_Children: - {fileID: 404228} m_Father: {fileID: 416532} @@ -8354,9 +8383,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 173990} - m_LocalRotation: {x: 8.38190228e-09, y: 2.32830666e-09, z: 1.22818182e-08, w: 1} - m_LocalPosition: {x: -9.31322575e-09, y: -5.12227416e-08, z: -3.67872417e-08} - m_LocalScale: {x: .99999994, y: 1, z: 1.00000012} + m_LocalRotation: {x: 0.000000008381902, y: 0.0000000023283067, z: 0.000000012281818, + w: 1} + m_LocalPosition: {x: -0.000000009313226, y: -0.00000005122274, z: -0.00000003678724} + m_LocalScale: {x: 0.99999994, y: 1, z: 1.0000001} m_Children: [] m_Father: {fileID: 427234} m_RootOrder: 1 @@ -8366,9 +8396,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 106774} - m_LocalRotation: {x: .73884815, y: .162535176, z: .463946253, w: -.460911661} - m_LocalPosition: {x: -.108921759, y: .0329284221, z: -.206708014} - m_LocalScale: {x: 1.00537205, y: .997324586, z: .997324526} + m_LocalRotation: {x: 0.73884815, y: 0.16253518, z: 0.46394625, w: -0.46091166} + m_LocalPosition: {x: -0.10892176, y: 0.032928422, z: -0.20670801} + m_LocalScale: {x: 1.005372, y: 0.9973246, z: 0.9973245} m_Children: [] m_Father: {fileID: 405990} m_RootOrder: 1 @@ -8378,9 +8408,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 102982} - m_LocalRotation: {x: .0560732447, y: -.0994188562, z: .652415395, w: .749216795} - m_LocalPosition: {x: -.0129143149, y: -.351501048, z: 1.10993576} - m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} + m_LocalRotation: {x: 0.056073245, y: -0.099418856, z: 0.6524154, w: 0.7492168} + m_LocalPosition: {x: -0.012914315, y: -0.35150105, z: 1.1099358} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} m_Children: - {fileID: 483464} - {fileID: 428848} @@ -8394,9 +8424,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 124088} - m_LocalRotation: {x: -.606006742, y: -.130311087, z: .305838406, w: .722660184} - m_LocalPosition: {x: .00651647151, y: -.0285910107, z: .0177915487} - m_LocalScale: {x: .873918295, y: 1, z: 1.00000012} + m_LocalRotation: {x: -0.60600674, y: -0.13031109, z: 0.3058384, w: 0.7226602} + m_LocalPosition: {x: 0.0065164715, y: -0.02859101, z: 0.017791549} + m_LocalScale: {x: 0.8739183, y: 1, z: 1.0000001} m_Children: [] m_Father: {fileID: 427234} m_RootOrder: 8 @@ -8406,9 +8436,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 192878} - m_LocalRotation: {x: .0188011844, y: .305723101, z: .0131368395, w: .951844156} - m_LocalPosition: {x: -.0344919749, y: 5.21540642e-08, z: -3.91155481e-08} - m_LocalScale: {x: 1, y: .999999881, z: .99999994} + m_LocalRotation: {x: 0.018801184, y: 0.3057231, z: 0.0131368395, w: 0.95184416} + m_LocalPosition: {x: -0.034491975, y: 0.000000052154064, z: -0.000000039115548} + m_LocalScale: {x: 1, y: 0.9999999, z: 0.99999994} m_Children: - {fileID: 486168} m_Father: {fileID: 468536} @@ -8419,8 +8449,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 185440} - m_LocalRotation: {x: -.606006742, y: -.130311131, z: .305838406, w: .722660184} - m_LocalPosition: {x: .00651647151, y: -.0285910107, z: .0177915487} + m_LocalRotation: {x: -0.60600674, y: -0.13031113, z: 0.3058384, w: 0.7226602} + m_LocalPosition: {x: 0.0065164715, y: -0.02859101, z: 0.017791549} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 478000} @@ -8432,9 +8462,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 102710} - m_LocalRotation: {x: -7.91624277e-09, y: -2.32830616e-10, z: -7.45058149e-09, w: 1} - m_LocalPosition: {x: 1.49011612e-08, y: 2.23517418e-08, z: 2.42143869e-08} - m_LocalScale: {x: .999999881, y: .99999994, z: .99999994} + m_LocalRotation: {x: -0.000000007916243, y: -2.3283062e-10, z: -0.0000000074505815, + w: 1} + m_LocalPosition: {x: 0.000000014901161, y: 0.000000022351742, z: 0.000000024214387} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 0.99999994} m_Children: [] m_Father: {fileID: 476392} m_RootOrder: 0 @@ -8444,9 +8475,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 158514} - m_LocalRotation: {x: -.0621141791, y: -.000335640216, z: -.041776564, w: .99719429} - m_LocalPosition: {x: -.234697238, y: 0, z: -1.86264504e-09} - m_LocalScale: {x: .999980927, y: .99998033, z: .999980688} + m_LocalRotation: {x: -0.06211418, y: -0.00033564022, z: -0.041776564, w: 0.9971943} + m_LocalPosition: {x: -0.23469724, y: 0, z: -0.000000001862645} + m_LocalScale: {x: 0.9999809, y: 0.99998033, z: 0.9999807} m_Children: [] m_Father: {fileID: 426506} m_RootOrder: 0 @@ -8456,9 +8487,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 127932} - m_LocalRotation: {x: .00116409687, y: .30859375, z: .00700719049, w: .951167405} - m_LocalPosition: {x: -.043025136, y: -8.38190317e-09, z: 8.56816769e-08} - m_LocalScale: {x: 1, y: .99999994, z: 1} + m_LocalRotation: {x: 0.0011640969, y: 0.30859375, z: 0.0070071905, w: 0.9511674} + m_LocalPosition: {x: -0.043025136, y: -0.000000008381903, z: 0.00000008568168} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} m_Children: - {fileID: 432318} m_Father: {fileID: 478810} @@ -8469,9 +8500,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 130298} - m_LocalRotation: {x: 1.86264537e-09, y: 4.65661287e-10, z: -2.3865141e-09, w: 1} - m_LocalPosition: {x: 1.90921128e-08, y: -4.47034836e-08, z: -1.62981451e-08} - m_LocalScale: {x: 1, y: .99999994, z: .99999994} + m_LocalRotation: {x: 0.0000000018626454, y: 4.656613e-10, z: -0.000000002386514, + w: 1} + m_LocalPosition: {x: 0.000000019092113, y: -0.000000044703484, z: -0.000000016298145} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} m_Children: [] m_Father: {fileID: 458972} m_RootOrder: 0 @@ -8481,9 +8513,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 182704} - m_LocalRotation: {x: -.118253835, y: .302012026, z: -.0264109075, w: .945572436} - m_LocalPosition: {x: -.0379325822, y: 8.56816769e-08, z: 6.33299351e-08} - m_LocalScale: {x: .99999994, y: .99999994, z: .99999994} + m_LocalRotation: {x: -0.118253835, y: 0.30201203, z: -0.026410908, w: 0.94557244} + m_LocalPosition: {x: -0.037932582, y: 0.00000008568168, z: 0.000000063329935} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.99999994} m_Children: - {fileID: 463912} m_Father: {fileID: 478000} @@ -8494,9 +8526,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 161152} - m_LocalRotation: {x: -1.70990836e-06, y: -9.31323019e-10, z: 3.49244328e-10, w: 1} - m_LocalPosition: {x: 4.09781933e-08, y: 3.35276127e-08, z: 2.04890966e-08} - m_LocalScale: {x: 1.00000012, y: 1, z: .99999994} + m_LocalRotation: {x: -0.0000017099084, y: -9.31323e-10, z: 3.4924433e-10, w: 1} + m_LocalPosition: {x: 0.000000040978193, y: 0.000000033527613, z: 0.000000020489097} + m_LocalScale: {x: 1.0000001, y: 1, z: 0.99999994} m_Children: - {fileID: 453168} m_Father: {fileID: 417088} @@ -8507,9 +8539,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 145030} - m_LocalRotation: {x: -7.97000248e-05, y: -.115524411, z: -.0421102569, w: .992411613} - m_LocalPosition: {x: -.116128936, y: .0100067742, z: -.0274589341} - m_LocalScale: {x: 1.02046394, y: .999944866, z: .999586821} + m_LocalRotation: {x: -0.000079700025, y: -0.11552441, z: -0.042110257, w: 0.9924116} + m_LocalPosition: {x: -0.11612894, y: 0.010006774, z: -0.027458934} + m_LocalScale: {x: 1.020464, y: 0.99994487, z: 0.9995868} m_Children: - {fileID: 418098} m_Father: {fileID: 441062} @@ -8520,8 +8552,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 120078} - m_LocalRotation: {x: -5.24493551e-08, y: -.694713831, z: -2.69637489e-14, w: .719286323} - m_LocalPosition: {x: -.514023364, y: 3.87571362e-08, z: .0327821039} + m_LocalRotation: {x: -0.000000052449355, y: -0.69471383, z: -2.6963749e-14, w: 0.7192863} + m_LocalPosition: {x: -0.51402336, y: 0.000000038757136, z: 0.032782104} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 497040} @@ -8533,9 +8565,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 175032} - m_LocalRotation: {x: .0718598887, y: .0802186057, z: .0111567471, w: .994121075} - m_LocalPosition: {x: -.0592357814, y: 8.94069672e-08, z: -6.93835318e-08} - m_LocalScale: {x: .99999994, y: .999999881, z: 1} + m_LocalRotation: {x: 0.07185989, y: 0.080218606, z: 0.011156747, w: 0.9941211} + m_LocalPosition: {x: -0.05923578, y: 0.00000008940697, z: -0.00000006938353} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1} m_Children: - {fileID: 486774} - {fileID: 449392} @@ -8548,9 +8580,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 179196} - m_LocalRotation: {x: .0747174993, y: -.0753657371, z: -.012795967, w: .994270384} - m_LocalPosition: {x: -.0336287655, y: 1.3038516e-08, z: 2.79396795e-09} - m_LocalScale: {x: .999999881, y: .999999881, z: .99999994} + m_LocalRotation: {x: 0.0747175, y: -0.07536574, z: -0.012795967, w: 0.9942704} + m_LocalPosition: {x: -0.033628765, y: 0.000000013038516, z: 0.000000002793968} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.99999994} m_Children: [] m_Father: {fileID: 448370} m_RootOrder: 1 @@ -8560,9 +8592,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 135940} - m_LocalRotation: {x: -.0367949717, y: -.0445790775, z: -.121722586, w: .990879655} - m_LocalPosition: {x: -.0757200941, y: .0327475518, z: -.00405073492} - m_LocalScale: {x: .99999994, y: .999999881, z: .999999881} + m_LocalRotation: {x: -0.03679497, y: -0.044579078, z: -0.12172259, w: 0.99087965} + m_LocalPosition: {x: -0.075720094, y: 0.03274755, z: -0.004050735} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} m_Children: [] m_Father: {fileID: 432066} m_RootOrder: 5 @@ -8572,9 +8604,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 142740} - m_LocalRotation: {x: .0736008137, y: -.0363713428, z: -.0744804665, w: .993837357} - m_LocalPosition: {x: -.0587722622, y: 3.17813829e-08, z: 1.86264504e-09} - m_LocalScale: {x: 1, y: .999999821, z: .999999881} + m_LocalRotation: {x: 0.073600814, y: -0.036371343, z: -0.07448047, w: 0.99383736} + m_LocalPosition: {x: -0.058772262, y: 0.000000031781383, z: 0.000000001862645} + m_LocalScale: {x: 1, y: 0.9999998, z: 0.9999999} m_Children: [] m_Father: {fileID: 419458} m_RootOrder: 0 @@ -8584,9 +8616,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 167926} - m_LocalRotation: {x: 1.0626718e-07, y: .0484604426, z: -2.06295194e-08, w: .998825133} - m_LocalPosition: {x: 1.7671745e-08, y: -8.09600564e-09, z: 3.0553271e-09} - m_LocalScale: {x: .999999821, y: 1, z: .999999821} + m_LocalRotation: {x: 0.00000010626718, y: 0.048460443, z: -0.00000002062952, w: 0.99882513} + m_LocalPosition: {x: 0.000000017671745, y: -0.000000008096006, z: 0.000000003055327} + m_LocalScale: {x: 0.9999998, y: 1, z: 0.9999998} m_Children: [] m_Father: {fileID: 469836} m_RootOrder: 0 @@ -8596,9 +8628,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 156362} - m_LocalRotation: {x: 1.4901163e-08, y: 9.31322797e-10, z: 1.61235221e-08, w: 1} - m_LocalPosition: {x: 2.32830599e-09, y: -4.47034836e-08, z: -3.7252903e-08} - m_LocalScale: {x: 1, y: .99999994, z: .99999994} + m_LocalRotation: {x: 0.000000014901163, y: 9.313228e-10, z: 0.000000016123522, w: 1} + m_LocalPosition: {x: 0.000000002328306, y: -0.000000044703484, z: -0.000000037252903} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} m_Children: [] m_Father: {fileID: 432066} m_RootOrder: 0 @@ -8608,9 +8640,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 132620} - m_LocalRotation: {x: .74116981, y: .0845349729, z: .0208963118, w: .665645957} - m_LocalPosition: {x: -1.32713467e-08, y: -2.32830644e-08, z: 2.32830644e-08} - m_LocalScale: {x: .99999994, y: .999999881, z: .999999881} + m_LocalRotation: {x: 0.7411698, y: 0.08453497, z: 0.020896312, w: 0.66564596} + m_LocalPosition: {x: -0.000000013271347, y: -0.000000023283064, z: 0.000000023283064} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} m_Children: [] m_Father: {fileID: 415538} m_RootOrder: 0 @@ -8620,9 +8652,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 144376} - m_LocalRotation: {x: -.127503112, y: -.0202236045, z: .0109541845, w: .991571486} - m_LocalPosition: {x: -.0532609597, y: -2.88709998e-08, z: -1.58324838e-08} - m_LocalScale: {x: 1, y: 1.00000012, z: 1.00000024} + m_LocalRotation: {x: -0.12750311, y: -0.020223605, z: 0.010954184, w: 0.9915715} + m_LocalPosition: {x: -0.05326096, y: -0.000000028871, z: -0.000000015832484} + m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000002} m_Children: - {fileID: 443100} m_Father: {fileID: 427234} @@ -8633,9 +8665,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 173260} - m_LocalRotation: {x: -1.11758695e-07, y: 5.58793634e-09, z: -5.587935e-09, w: 1} - m_LocalPosition: {x: -.0189663246, y: 6.33299351e-08, z: 2.23517418e-08} - m_LocalScale: {x: 1, y: 1.00000012, z: 1} + m_LocalRotation: {x: -0.000000111758695, y: 0.0000000055879363, z: -0.000000005587935, + w: 1} + m_LocalPosition: {x: -0.018966325, y: 0.000000063329935, z: 0.000000022351742} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} m_Children: [] m_Father: {fileID: 402414} m_RootOrder: 0 @@ -8645,9 +8678,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 126826} - m_LocalRotation: {x: .0212636348, y: .227249011, z: -.0184207559, w: .973430276} - m_LocalPosition: {x: -.0336288102, y: 5.58793545e-08, z: 0} - m_LocalScale: {x: 1.00000012, y: .99999994, z: 1} + m_LocalRotation: {x: 0.021263635, y: 0.22724901, z: -0.018420756, w: 0.9734303} + m_LocalPosition: {x: -0.03362881, y: 0.000000055879354, z: 0} + m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 1} m_Children: - {fileID: 494336} - {fileID: 489366} @@ -8659,9 +8692,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 180364} - m_LocalRotation: {x: .758456886, y: .163971275, z: .492246091, w: -.394398689} - m_LocalPosition: {x: -.357861161, y: .00679642614, z: .00412253337} - m_LocalScale: {x: 1.00534463, y: .997294486, z: .997294486} + m_LocalRotation: {x: 0.7584569, y: 0.16397128, z: 0.4922461, w: -0.3943987} + m_LocalPosition: {x: -0.35786116, y: 0.006796426, z: 0.0041225334} + m_LocalScale: {x: 1.0053446, y: 0.9972945, z: 0.9972945} m_Children: - {fileID: 438156} - {fileID: 406688} @@ -8674,9 +8707,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 150674} - m_LocalRotation: {x: .729826927, y: .0515273102, z: .681687117, w: .000568261719} - m_LocalPosition: {x: -4.07453582e-09, y: 2.94530764e-08, z: -1.62981495e-09} - m_LocalScale: {x: 1.00000024, y: 1, z: 1} + m_LocalRotation: {x: 0.7298269, y: 0.05152731, z: 0.6816871, w: 0.0005682617} + m_LocalPosition: {x: -0.000000004074536, y: 0.000000029453076, z: -0.000000001629815} + m_LocalScale: {x: 1.0000002, y: 1, z: 1} m_Children: [] m_Father: {fileID: 422148} m_RootOrder: 0 @@ -8686,9 +8719,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 186786} - m_LocalRotation: {x: -.0212635975, y: .227249026, z: .0184207261, w: .973430276} - m_LocalPosition: {x: -.0336287655, y: 1.3038516e-08, z: 2.79396795e-09} - m_LocalScale: {x: 1, y: .99999994, z: .999999881} + m_LocalRotation: {x: -0.021263598, y: 0.22724903, z: 0.018420726, w: 0.9734303} + m_LocalPosition: {x: -0.033628765, y: 0.000000013038516, z: 0.000000002793968} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999999} m_Children: - {fileID: 404542} - {fileID: 406398} @@ -8700,9 +8733,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 193834} - m_LocalRotation: {x: -2.02731307e-08, y: 1.49012198e-08, z: 1.09573292e-14, w: 1} - m_LocalPosition: {x: -7.29781013e-10, y: -1.86818916e-08, z: -3.32105685e-08} - m_LocalScale: {x: 1.00000012, y: 1, z: 1.00000012} + m_LocalRotation: {x: -0.00000002027313, y: 0.00000001490122, z: 1.0957329e-14, w: 1} + m_LocalPosition: {x: -7.29781e-10, y: -0.000000018681892, z: -0.00000003321057} + m_LocalScale: {x: 1.0000001, y: 1, z: 1.0000001} m_Children: [] m_Father: {fileID: 454864} m_RootOrder: 0 @@ -8712,9 +8745,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 131614} - m_LocalRotation: {x: .707107127, y: -9.41569169e-08, z: .707106471, w: 9.41570093e-08} - m_LocalPosition: {x: -.00310691795, y: .0112327263, z: -.0256078094} - m_LocalScale: {x: .999999702, y: .999999881, z: .99999994} + m_LocalRotation: {x: 0.7071071, y: -0.00000009415692, z: 0.7071065, w: 0.00000009415701} + m_LocalPosition: {x: -0.003106918, y: 0.011232726, z: -0.02560781} + m_LocalScale: {x: 0.9999997, y: 0.9999999, z: 0.99999994} m_Children: [] m_Father: {fileID: 444872} m_RootOrder: 0 @@ -8724,9 +8757,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 121470} - m_LocalRotation: {x: -.0718584582, y: .0802186504, z: -.0111568449, w: .994121134} - m_LocalPosition: {x: -.0592358038, y: 2.98023224e-08, z: -5.12227416e-09} - m_LocalScale: {x: .873918414, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: -0.07185846, y: 0.08021865, z: -0.011156845, w: 0.99412113} + m_LocalPosition: {x: -0.059235804, y: 0.000000029802322, z: -0.000000005122274} + m_LocalScale: {x: 0.8739184, y: 1.0000001, z: 1.0000001} m_Children: [] m_Father: {fileID: 484482} m_RootOrder: 2 @@ -8736,9 +8769,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 120486} - m_LocalRotation: {x: 0, y: 0, z: 1.02445483e-08, w: 1} - m_LocalPosition: {x: -1.49011612e-08, y: 1.49011612e-08, z: 6.98491887e-09} - m_LocalScale: {x: 1, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: 0, y: 0, z: 0.000000010244548, w: 1} + m_LocalPosition: {x: -0.000000014901161, y: 0.000000014901161, z: 0.000000006984919} + m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} m_Children: [] m_Father: {fileID: 484482} m_RootOrder: 1 @@ -8748,9 +8781,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 159300} - m_LocalRotation: {x: 2.06567324e-06, y: -3.72531073e-09, z: -1.00117088e-08, w: 1} - m_LocalPosition: {x: 2.32830599e-09, y: 1.49011612e-08, z: -4.28408384e-08} - m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: 0.0000020656732, y: -0.0000000037253107, z: -0.000000010011709, + w: 1} + m_LocalPosition: {x: 0.000000002328306, y: 0.000000014901161, z: -0.00000004284084} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001} m_Children: - {fileID: 444524} m_Father: {fileID: 440094} @@ -8761,9 +8795,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 129266} - m_LocalRotation: {x: .015231018, y: .295041054, z: .0234421268, w: .955075562} - m_LocalPosition: {x: -.0416162759, y: -6.70552254e-08, z: -5.3551048e-08} - m_LocalScale: {x: 1, y: 1, z: 1.00000024} + m_LocalRotation: {x: 0.015231018, y: 0.29504105, z: 0.023442127, w: 0.95507556} + m_LocalPosition: {x: -0.041616276, y: -0.000000067055225, z: -0.000000053551048} + m_LocalScale: {x: 1, y: 1, z: 1.0000002} m_Children: - {fileID: 471388} - {fileID: 425614} @@ -8775,9 +8809,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 179504} - m_LocalRotation: {x: 1.19770945e-07, y: .715359509, z: -6.73253879e-08, w: .698756576} - m_LocalPosition: {x: -5.587935e-09, y: 0, z: 2.98023224e-08} - m_LocalScale: {x: .99999994, y: .99999994, z: .99999994} + m_LocalRotation: {x: 0.00000011977095, y: 0.7153595, z: -0.00000006732539, w: 0.6987566} + m_LocalPosition: {x: -0.000000005587935, y: 0, z: 0.000000029802322} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.99999994} m_Children: - {fileID: 421558} - {fileID: 406848} @@ -8789,9 +8823,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 149596} - m_LocalRotation: {x: .000748441846, y: -.117785439, z: .043675635, w: .992077887} - m_LocalPosition: {x: -.116191804, y: -.0103760194, z: -.0280473977} - m_LocalScale: {x: 1.0224117, y: .999538183, z: .996621668} + m_LocalRotation: {x: 0.00074844185, y: -0.11778544, z: 0.043675635, w: 0.9920779} + m_LocalPosition: {x: -0.116191804, y: -0.010376019, z: -0.028047398} + m_LocalScale: {x: 1.0224117, y: 0.9995382, z: 0.99662167} m_Children: - {fileID: 423428} m_Father: {fileID: 450460} @@ -8802,9 +8836,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 145716} - m_LocalRotation: {x: 2.79396728e-09, y: -1.8626455e-08, z: -3.1432144e-08, w: 1} - m_LocalPosition: {x: 1.06520019e-08, y: 2.32830599e-09, z: -3.25962901e-09} - m_LocalScale: {x: .999999821, y: 1, z: 1} + m_LocalRotation: {x: 0.0000000027939673, y: -0.000000018626455, z: -0.000000031432144, + w: 1} + m_LocalPosition: {x: 0.000000010652002, y: 0.000000002328306, z: -0.000000003259629} + m_LocalScale: {x: 0.9999998, y: 1, z: 1} m_Children: - {fileID: 434304} m_Father: {fileID: 401474} @@ -8815,9 +8850,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 106988} - m_LocalRotation: {x: .0861046538, y: .673943579, z: .0955010206, w: .727506459} - m_LocalPosition: {x: -.0222277101, y: -.242438242, z: .110095054} - m_LocalScale: {x: 2.23070383e-05, y: .99999994, z: .999999881} + m_LocalRotation: {x: 0.086104654, y: 0.6739436, z: 0.09550102, w: 0.72750646} + m_LocalPosition: {x: -0.02222771, y: -0.24243824, z: 0.110095054} + m_LocalScale: {x: 0.000022307038, y: 0.99999994, z: 0.9999999} m_Children: [] m_Father: {fileID: 416532} m_RootOrder: 24 @@ -8827,9 +8862,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 160750} - m_LocalRotation: {x: -.018801149, y: .305723101, z: -.0131368171, w: .951844156} - m_LocalPosition: {x: -.034491986, y: 2.23517418e-08, z: 5.40167093e-08} - m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1} + m_LocalRotation: {x: -0.018801149, y: 0.3057231, z: -0.013136817, w: 0.95184416} + m_LocalPosition: {x: -0.034491986, y: 0.000000022351742, z: 0.00000005401671} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1} m_Children: - {fileID: 459190} m_Father: {fileID: 443100} @@ -8840,9 +8875,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 168554} - m_LocalRotation: {x: -.0204625744, y: .999689579, z: -.00639015716, w: -.0126950294} - m_LocalPosition: {x: -.0166712534, y: -.171590656, z: .228472367} - m_LocalScale: {x: 30.6539326, y: 1, z: 1} + m_LocalRotation: {x: -0.020462574, y: 0.9996896, z: -0.006390157, w: -0.012695029} + m_LocalPosition: {x: -0.016671253, y: -0.17159066, z: 0.22847237} + m_LocalScale: {x: 30.653933, y: 1, z: 1} m_Children: [] m_Father: {fileID: 416532} m_RootOrder: 28 @@ -8852,9 +8887,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 160612} - m_LocalRotation: {x: .707082927, y: -.706080139, z: -.00442511262, w: -.038274955} - m_LocalPosition: {x: -.0429843217, y: -.11689166, z: .0197394434} - m_LocalScale: {x: 1, y: 1, z: 1.00000024} + m_LocalRotation: {x: 0.7070829, y: -0.70608014, z: -0.0044251126, w: -0.038274955} + m_LocalPosition: {x: -0.04298432, y: -0.11689166, z: 0.019739443} + m_LocalScale: {x: 1, y: 1, z: 1.0000002} m_Children: - {fileID: 454338} - {fileID: 448278} @@ -8866,9 +8901,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 178696} - m_LocalRotation: {x: -.0013000773, y: -.0655785277, z: .00821443647, w: .997812748} - m_LocalPosition: {x: 2.19588401e-08, y: 2.66882125e-08, z: 9.31323019e-10} - m_LocalScale: {x: 1.00000012, y: .999999821, z: .999999821} + m_LocalRotation: {x: -0.0013000773, y: -0.06557853, z: 0.0082144365, w: 0.99781275} + m_LocalPosition: {x: 0.00000002195884, y: 0.000000026688213, z: 9.31323e-10} + m_LocalScale: {x: 1.0000001, y: 0.9999998, z: 0.9999998} m_Children: - {fileID: 410054} m_Father: {fileID: 431062} @@ -8879,9 +8914,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 150480} - m_LocalRotation: {x: .738848329, y: .162534684, z: .463946521, w: -.460911483} - m_LocalPosition: {x: -.167667985, y: .023310015, z: -.28324309} - m_LocalScale: {x: 1.00000048, y: 1.00000048, z: 1.00000024} + m_LocalRotation: {x: 0.7388483, y: 0.16253468, z: 0.46394652, w: -0.46091148} + m_LocalPosition: {x: -0.16766798, y: 0.023310015, z: -0.2832431} + m_LocalScale: {x: 1.0000005, y: 1.0000005, z: 1.0000002} m_Children: - {fileID: 442378} m_Father: {fileID: 426704} @@ -8892,9 +8927,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 132900} - m_LocalRotation: {x: .758457065, y: .163971439, z: .492246032, w: -.394398451} - m_LocalPosition: {x: -1.17812306e-07, y: 2.32830644e-08, z: -2.08616257e-07} - m_LocalScale: {x: 1.00537407, y: .997323453, z: .997323334} + m_LocalRotation: {x: 0.75845706, y: 0.16397144, z: 0.49224603, w: -0.39439845} + m_LocalPosition: {x: -0.000000117812306, y: 0.000000023283064, z: -0.00000020861626} + m_LocalScale: {x: 1.0053741, y: 0.99732345, z: 0.99732333} m_Children: [] m_Father: {fileID: 405990} m_RootOrder: 4 @@ -8904,9 +8939,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 138524} - m_LocalRotation: {x: .0619514771, y: -.000211018822, z: .00457160873, w: .99806869} - m_LocalPosition: {x: -.0518109873, y: 6.98491887e-09, z: 6.42612576e-08} - m_LocalScale: {x: .999999881, y: .999999881, z: .999999881} + m_LocalRotation: {x: 0.061951477, y: -0.00021101882, z: 0.0045716087, w: 0.9980687} + m_LocalPosition: {x: -0.051810987, y: 0.000000006984919, z: 0.00000006426126} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999999} m_Children: [] m_Father: {fileID: 429696} m_RootOrder: 0 @@ -8916,8 +8951,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 154156} - m_LocalRotation: {x: 3.13855708e-07, y: 4.19095292e-09, z: 5.12227327e-09, w: 1} - m_LocalPosition: {x: -.357861072, y: .00679639634, z: .00412275922} + m_LocalRotation: {x: 0.0000003138557, y: 0.000000004190953, z: 0.0000000051222733, + w: 1} + m_LocalPosition: {x: -0.35786107, y: 0.0067963963, z: 0.004122759} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 475314} @@ -8928,9 +8964,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 105850} - m_LocalRotation: {x: .729826927, y: -.0515274853, z: .681687117, w: -.000568202115} - m_LocalPosition: {x: 1.36788003e-08, y: 1.00699253e-08, z: -6.98491986e-10} - m_LocalScale: {x: 1.00000024, y: 1, z: .99999994} + m_LocalRotation: {x: 0.7298269, y: -0.051527485, z: 0.6816871, w: -0.0005682021} + m_LocalPosition: {x: 0.0000000136788, y: 0.000000010069925, z: -6.98492e-10} + m_LocalScale: {x: 1.0000002, y: 1, z: 0.99999994} m_Children: [] m_Father: {fileID: 499488} m_RootOrder: 0 @@ -8940,9 +8976,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 182530} - m_LocalRotation: {x: .0188035294, y: .305723161, z: .0131360879, w: .951844156} - m_LocalPosition: {x: -.03449196, y: 5.21540642e-08, z: -3.7252903e-08} - m_LocalScale: {x: .999999881, y: .99999994, z: 1} + m_LocalRotation: {x: 0.01880353, y: 0.30572316, z: 0.013136088, w: 0.95184416} + m_LocalPosition: {x: -0.03449196, y: 0.000000052154064, z: -0.000000037252903} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 1} m_Children: - {fileID: 451914} - {fileID: 405062} @@ -8954,9 +8990,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 124150} - m_LocalRotation: {x: -1.361541e-07, y: -.715359449, z: 8.33287856e-08, w: .698756635} - m_LocalPosition: {x: .0918226615, y: -.0636465251, z: .252029955} - m_LocalScale: {x: .999999821, y: 1, z: .999999821} + m_LocalRotation: {x: -0.0000001361541, y: -0.71535945, z: 0.000000083328786, w: 0.69875664} + m_LocalPosition: {x: 0.09182266, y: -0.063646525, z: 0.25202996} + m_LocalScale: {x: 0.9999998, y: 1, z: 0.9999998} m_Children: [] m_Father: {fileID: 447564} m_RootOrder: 0 @@ -8966,9 +9002,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 106646} - m_LocalRotation: {x: -.00688759424, y: .1046656, z: -.0545650013, w: .992985606} - m_LocalPosition: {x: -.0539618805, y: 0, z: 7.07805157e-08} - m_LocalScale: {x: .999999821, y: .999999762, z: .99999994} + m_LocalRotation: {x: -0.0068875942, y: 0.1046656, z: -0.054565, w: 0.9929856} + m_LocalPosition: {x: -0.05396188, y: 0, z: 0.000000070780516} + m_LocalScale: {x: 0.9999998, y: 0.99999976, z: 0.99999994} m_Children: [] m_Father: {fileID: 494576} m_RootOrder: 0 @@ -8978,9 +9014,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 100238} - m_LocalRotation: {x: -.0560732596, y: -.0994188413, z: -.652415395, w: .749216795} - m_LocalPosition: {x: -.0129142599, y: .380529404, z: 1.10993576} - m_LocalScale: {x: .99999994, y: .999999881, z: .999999881} + m_LocalRotation: {x: -0.05607326, y: -0.09941884, z: -0.6524154, w: 0.7492168} + m_LocalPosition: {x: -0.01291426, y: 0.3805294, z: 1.1099358} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} m_Children: - {fileID: 485390} m_Father: {fileID: 416532} @@ -8991,9 +9027,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 136450} - m_LocalRotation: {x: -3.7252903e-09, y: -5.55111512e-17, z: 1.49011612e-08, w: 1} - m_LocalPosition: {x: -2.23517418e-08, y: 3.7252903e-08, z: 1.86264515e-08} - m_LocalScale: {x: 1, y: 1, z: .99999994} + m_LocalRotation: {x: -0.0000000037252903, y: -5.551115e-17, z: 0.000000014901161, + w: 1} + m_LocalPosition: {x: -0.000000022351742, y: 0.000000037252903, z: 0.000000018626451} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} m_Children: [] m_Father: {fileID: 414326} m_RootOrder: 0 @@ -9003,9 +9040,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 128490} - m_LocalRotation: {x: 1.19771045e-07, y: .715359509, z: -6.73254732e-08, w: .698756576} - m_LocalPosition: {x: -.0227332115, y: -.0979999825, z: .319929272} - m_LocalScale: {x: .999999821, y: .99999994, z: .999999821} + m_LocalRotation: {x: 0.00000011977104, y: 0.7153595, z: -0.00000006732547, w: 0.6987566} + m_LocalPosition: {x: -0.022733212, y: -0.09799998, z: 0.31992927} + m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 0.9999998} m_Children: - {fileID: 446812} - {fileID: 407950} @@ -9020,9 +9057,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 107822} - m_LocalRotation: {x: .749272466, y: .00836367253, z: .661154091, w: .0373649113} - m_LocalPosition: {x: -.000576875173, y: .0127165047, z: -.0569404699} - m_LocalScale: {x: 1, y: .999999881, z: .999999821} + m_LocalRotation: {x: 0.74927247, y: 0.0083636725, z: 0.6611541, w: 0.03736491} + m_LocalPosition: {x: -0.0005768752, y: 0.012716505, z: -0.05694047} + m_LocalScale: {x: 1, y: 0.9999999, z: 0.9999998} m_Children: [] m_Father: {fileID: 485624} m_RootOrder: 0 @@ -9032,8 +9069,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 114034} - m_LocalRotation: {x: 2.72318721e-06, y: 3.72534625e-09, z: 2.04890878e-08, w: 1} - m_LocalPosition: {x: -1.49011612e-08, y: 2.60770321e-08, z: 0} + m_LocalRotation: {x: 0.0000027231872, y: 0.0000000037253463, z: 0.000000020489088, + w: 1} + m_LocalPosition: {x: -0.000000014901161, y: 0.000000026077032, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 458136} @@ -9045,9 +9083,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 135488} - m_LocalRotation: {x: .0207216013, y: -.00880678277, z: .0921670571, w: .995489001} - m_LocalPosition: {x: -.03449196, y: 5.21540642e-08, z: -3.7252903e-08} - m_LocalScale: {x: .999999881, y: .99999994, z: 1} + m_LocalRotation: {x: 0.020721601, y: -0.008806783, z: 0.09216706, w: 0.995489} + m_LocalPosition: {x: -0.03449196, y: 0.000000052154064, z: -0.000000037252903} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 1} m_Children: [] m_Father: {fileID: 415998} m_RootOrder: 1 @@ -9057,9 +9095,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 183666} - m_LocalRotation: {x: -.000169124221, y: -.685428321, z: .000159391886, w: .728140056} - m_LocalPosition: {x: -.284003556, y: 5.11417966e-08, z: 5.00440365e-08} - m_LocalScale: {x: .999999881, y: .999999523, z: 1} + m_LocalRotation: {x: -0.00016912422, y: -0.6854283, z: 0.00015939189, w: 0.72814006} + m_LocalPosition: {x: -0.28400356, y: 0.000000051141797, z: 0.000000050044036} + m_LocalScale: {x: 0.9999999, y: 0.9999995, z: 1} m_Children: - {fileID: 469096} m_Father: {fileID: 444636} @@ -9070,9 +9108,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 123024} - m_LocalRotation: {x: -.00688449154, y: .104663923, z: -.0545655154, w: .992985785} - m_LocalPosition: {x: -.0539618805, y: 0, z: 7.07805157e-08} - m_LocalScale: {x: .999999821, y: .999999821, z: .999999702} + m_LocalRotation: {x: -0.0068844915, y: 0.10466392, z: -0.054565515, w: 0.9929858} + m_LocalPosition: {x: -0.05396188, y: 0, z: 0.000000070780516} + m_LocalScale: {x: 0.9999998, y: 0.9999998, z: 0.9999997} m_Children: - {fileID: 499532} - {fileID: 438734} @@ -9085,7 +9123,7 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 199922} - m_LocalRotation: {x: -.707106829, y: 0, z: 0, w: .707106829} + m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: @@ -9098,8 +9136,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 128294} - m_LocalRotation: {x: 1.02445483e-08, y: -9.31322663e-09, z: -6.51925802e-09, w: 1} - m_LocalPosition: {x: 1.86264515e-08, y: -4.65661287e-08, z: 5.96046448e-08} + m_LocalRotation: {x: 0.000000010244548, y: -0.000000009313227, z: -0.000000006519258, + w: 1} + m_LocalPosition: {x: 0.000000018626451, y: -0.00000004656613, z: 0.000000059604645} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 462202} @@ -9110,9 +9149,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 140422} - m_LocalRotation: {x: -.0367948748, y: -.0445791446, z: -.121722721, w: .990879595} - m_LocalPosition: {x: -.075720109, y: .0327475443, z: -.00405073585} - m_LocalScale: {x: 1.00000012, y: 1, z: .999999821} + m_LocalRotation: {x: -0.036794875, y: -0.044579145, z: -0.12172272, w: 0.9908796} + m_LocalPosition: {x: -0.07572011, y: 0.032747544, z: -0.004050736} + m_LocalScale: {x: 1.0000001, y: 1, z: 0.9999998} m_Children: - {fileID: 486886} - {fileID: 450846} @@ -9127,9 +9166,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 183470} - m_LocalRotation: {x: .0523956232, y: .276506215, z: .0334837921, w: .958998382} - m_LocalPosition: {x: -.0209779441, y: 1.34110451e-07, z: -1.11758709e-08} - m_LocalScale: {x: 1.00000012, y: .99999994, z: 1.00000012} + m_LocalRotation: {x: 0.052395623, y: 0.27650622, z: 0.033483792, w: 0.9589984} + m_LocalPosition: {x: -0.020977944, y: 0.00000013411045, z: -0.000000011175871} + m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 1.0000001} m_Children: - {fileID: 431906} m_Father: {fileID: 466040} @@ -9140,9 +9179,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 127606} - m_LocalRotation: {x: -.0618158206, y: .0525564216, z: .986703932, w: -.140826106} - m_LocalPosition: {x: -.0287208613, y: -1.07102096e-07, z: -1.76951289e-08} - m_LocalScale: {x: .99999994, y: 1, z: 1.00000012} + m_LocalRotation: {x: -0.06181582, y: 0.05255642, z: 0.98670393, w: -0.1408261} + m_LocalPosition: {x: -0.028720861, y: -0.000000107102096, z: -0.000000017695129} + m_LocalScale: {x: 0.99999994, y: 1, z: 1.0000001} m_Children: [] m_Father: {fileID: 438686} m_RootOrder: 1 @@ -9152,9 +9191,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 142780} - m_LocalRotation: {x: -1.361541e-07, y: -.715359449, z: 8.33287856e-08, w: .698756635} - m_LocalPosition: {x: .0918226838, y: .0636466146, z: .252029926} - m_LocalScale: {x: .999999821, y: 1, z: .999999821} + m_LocalRotation: {x: -0.0000001361541, y: -0.71535945, z: 0.000000083328786, w: 0.69875664} + m_LocalPosition: {x: 0.091822684, y: 0.063646615, z: 0.25202993} + m_LocalScale: {x: 0.9999998, y: 1, z: 0.9999998} m_Children: [] m_Father: {fileID: 413212} m_RootOrder: 0 @@ -9164,8 +9203,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 189384} - m_LocalRotation: {x: -1.86264459e-09, y: -2.04890931e-08, z: 1, w: -9.93962392e-17} - m_LocalPosition: {x: -.0800900832, y: 6.04663786e-09, z: -1e-15} + m_LocalRotation: {x: -0.0000000018626446, y: -0.000000020489093, z: 1, w: -9.939624e-17} + m_LocalPosition: {x: -0.08009008, y: 0.000000006046638, z: -1e-15} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 444636} @@ -9177,9 +9216,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 127424} - m_LocalRotation: {x: .771931648, y: -.151670173, z: .461097628, w: .410495609} - m_LocalPosition: {x: -.357860982, y: -.00679637026, z: .00412255479} - m_LocalScale: {x: 1.05262756, y: .974638164, z: .974638462} + m_LocalRotation: {x: 0.77193165, y: -0.15167017, z: 0.46109763, w: 0.4104956} + m_LocalPosition: {x: -0.35786098, y: -0.0067963703, z: 0.004122555} + m_LocalScale: {x: 1.0526276, y: 0.97463816, z: 0.97463846} m_Children: - {fileID: 444204} - {fileID: 432864} @@ -9192,9 +9231,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 100864} - m_LocalRotation: {x: -.0152336014, y: .295041114, z: -.0234412942, w: .955075502} - m_LocalPosition: {x: -.0416163057, y: 4.47034836e-08, z: 4.0512532e-08} - m_LocalScale: {x: 1.00000024, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: -0.015233601, y: 0.2950411, z: -0.023441294, w: 0.9550755} + m_LocalPosition: {x: -0.041616306, y: 0.000000044703484, z: 0.000000040512532} + m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 1.0000001} m_Children: - {fileID: 447772} m_Father: {fileID: 417960} @@ -9205,9 +9244,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 171490} - m_LocalRotation: {x: -7.45058149e-09, y: -1.86264537e-09, z: 5.58793634e-09, w: 1} - m_LocalPosition: {x: -7.4505806e-09, y: 1.04308128e-07, z: -1.53668225e-08} - m_LocalScale: {x: .999999881, y: .99999994, z: 1} + m_LocalRotation: {x: -0.0000000074505815, y: -0.0000000018626454, z: 0.0000000055879363, + w: 1} + m_LocalPosition: {x: -0.000000007450581, y: 0.00000010430813, z: -0.000000015366822} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 1} m_Children: [] m_Father: {fileID: 448938} m_RootOrder: 1 @@ -9217,9 +9257,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 134402} - m_LocalRotation: {x: .231767192, y: 2.3028349e-08, z: 6.24143182e-09, w: .972771287} - m_LocalPosition: {x: -.0690352097, y: -7.79982656e-09, z: -7.4505806e-09} - m_LocalScale: {x: 1, y: .999999881, z: .999999642} + m_LocalRotation: {x: 0.23176719, y: 0.000000023028349, z: 0.000000006241432, w: 0.9727713} + m_LocalPosition: {x: -0.06903521, y: -0.000000007799827, z: -0.000000007450581} + m_LocalScale: {x: 1, y: 0.9999999, z: 0.99999964} m_Children: [] m_Father: {fileID: 469756} m_RootOrder: 0 @@ -9229,9 +9269,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 168480} - m_LocalRotation: {x: -.0152309975, y: .295041054, z: -.0234421007, w: .955075562} - m_LocalPosition: {x: -.0416163057, y: 4.47034836e-08, z: 4.0512532e-08} - m_LocalScale: {x: 1.00000024, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: -0.015230997, y: 0.29504105, z: -0.0234421, w: 0.95507556} + m_LocalPosition: {x: -0.041616306, y: 0.000000044703484, z: 0.000000040512532} + m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 1.0000001} m_Children: - {fileID: 416624} - {fileID: 463792} @@ -9243,8 +9283,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 167528} - m_LocalRotation: {x: 4.6566126e-10, y: -3.7252903e-09, z: -7.4505806e-09, w: 1} - m_LocalPosition: {x: 1.49011612e-08, y: 2.98023224e-08, z: 3.25962901e-08} + m_LocalRotation: {x: 4.6566126e-10, y: -0.0000000037252903, z: -0.000000007450581, + w: 1} + m_LocalPosition: {x: 0.000000014901161, y: 0.000000029802322, z: 0.00000003259629} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 446316} @@ -9255,9 +9296,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 180168} - m_LocalRotation: {x: 2.37726083e-09, y: -.771904409, z: 2.5768199e-07, w: .635738611} - m_LocalPosition: {x: -2.62952904e-09, y: -1.87022997e-09, z: -1.09631124e-07} - m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} + m_LocalRotation: {x: 0.0000000023772608, y: -0.7719044, z: 0.000000257682, w: 0.6357386} + m_LocalPosition: {x: -0.000000002629529, y: -0.00000000187023, z: -0.000000109631124} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} m_Children: - {fileID: 462224} m_Father: {fileID: 463592} @@ -9268,9 +9309,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 136320} - m_LocalRotation: {x: -.0796041787, y: .0473429896, z: .0680264905, w: .993375182} - m_LocalPosition: {x: -.117544517, y: -7.21774995e-09, z: 4.65661287e-09} - m_LocalScale: {x: 1.00000024, y: 1.00000012, z: .999999821} + m_LocalRotation: {x: -0.07960418, y: 0.04734299, z: 0.06802649, w: 0.9933752} + m_LocalPosition: {x: -0.11754452, y: -0.00000000721775, z: 0.000000004656613} + m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 0.9999998} m_Children: [] m_Father: {fileID: 416778} m_RootOrder: 0 @@ -9280,9 +9321,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 169034} - m_LocalRotation: {x: .064996928, y: -.0764137655, z: .0368569009, w: .99427259} - m_LocalPosition: {x: -.117348537, y: 3.72529008e-09, z: 7.4505806e-09} - m_LocalScale: {x: 1.00323713, y: .999372602, z: .997358024} + m_LocalRotation: {x: 0.06499693, y: -0.076413766, z: 0.0368569, w: 0.9942726} + m_LocalPosition: {x: -0.11734854, y: 0.00000000372529, z: 0.000000007450581} + m_LocalScale: {x: 1.0032371, y: 0.9993726, z: 0.997358} m_Children: [] m_Father: {fileID: 404928} m_RootOrder: 0 @@ -9292,8 +9333,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 168968} - m_LocalRotation: {x: -3.60410486e-15, y: 7.10349019e-15, z: -1.33517687e-15, w: 1} - m_LocalPosition: {x: .0234402921, y: .0980000049, z: -.00142740528} + m_LocalRotation: {x: -3.604105e-15, y: 7.10349e-15, z: -1.3351769e-15, w: 1} + m_LocalPosition: {x: 0.023440292, y: 0.098000005, z: -0.0014274053} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 474682} @@ -9304,9 +9345,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 176972} - m_LocalRotation: {x: .0212660953, y: .227248967, z: -.0184213296, w: .973430216} - m_LocalPosition: {x: -.0336288102, y: 5.58793545e-08, z: 0} - m_LocalScale: {x: 1.00000024, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: 0.021266095, y: 0.22724897, z: -0.01842133, w: 0.9734302} + m_LocalPosition: {x: -0.03362881, y: 0.000000055879354, z: 0} + m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 1.0000001} m_Children: - {fileID: 400238} m_Father: {fileID: 437754} @@ -9317,9 +9358,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 126626} - m_LocalRotation: {x: .488703787, y: .283559382, z: -.0624029003, w: .822720289} - m_LocalPosition: {x: -.344173521, y: 4.47034836e-08, z: 1.08033419e-07} - m_LocalScale: {x: .999999881, y: 1, z: .999999762} + m_LocalRotation: {x: 0.4887038, y: 0.28355938, z: -0.0624029, w: 0.8227203} + m_LocalPosition: {x: -0.34417352, y: 0.000000044703484, z: 0.00000010803342} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.99999976} m_Children: [] m_Father: {fileID: 485066} m_RootOrder: 0 @@ -9329,9 +9370,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 158636} - m_LocalRotation: {x: -1.30385143e-08, y: 2.79396795e-09, z: -8.23638402e-09, w: 1} - m_LocalPosition: {x: 7.07805157e-08, y: -1.22003257e-07, z: 2.65426934e-08} - m_LocalScale: {x: 1, y: 1.00000012, z: .999999881} + m_LocalRotation: {x: -0.000000013038514, y: 0.000000002793968, z: -0.000000008236384, + w: 1} + m_LocalPosition: {x: 0.000000070780516, y: -0.00000012200326, z: 0.000000026542693} + m_LocalScale: {x: 1, y: 1.0000001, z: 0.9999999} m_Children: [] m_Father: {fileID: 456208} m_RootOrder: 1 @@ -9341,9 +9383,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 172124} - m_LocalRotation: {x: -2.56113672e-08, y: 7.4505806e-09, z: -5.58793545e-09, w: 1} - m_LocalPosition: {x: -7.4505806e-09, y: 7.26431608e-08, z: -1.11758709e-08} - m_LocalScale: {x: 1, y: 1.00000012, z: 1} + m_LocalRotation: {x: -0.000000025611367, y: 0.000000007450581, z: -0.0000000055879354, + w: 1} + m_LocalPosition: {x: -0.000000007450581, y: 0.00000007264316, z: -0.000000011175871} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} m_Children: [] m_Father: {fileID: 406398} m_RootOrder: 0 @@ -9353,9 +9396,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 155162} - m_LocalRotation: {x: 7.54823333e-08, y: .999999881, z: -.000485257246, w: 1.33121446e-07} - m_LocalPosition: {x: -.284003496, y: 2.13181011e-08, z: 2.56113708e-09} - m_LocalScale: {x: 1, y: 1, z: .999999881} + m_LocalRotation: {x: 0.00000007548233, y: 0.9999999, z: -0.00048525725, w: 0.00000013312145} + m_LocalPosition: {x: -0.2840035, y: 0.000000021318101, z: 0.000000002561137} + m_LocalScale: {x: 1, y: 1, z: 0.9999999} m_Children: - {fileID: 417690} m_Father: {fileID: 444636} @@ -9366,9 +9409,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 147562} - m_LocalRotation: {x: -.00116404344, y: .30859375, z: -.00700718677, w: .951167405} - m_LocalPosition: {x: -.0430251285, y: -1.3038516e-08, z: 2.60770321e-08} - m_LocalScale: {x: 1.00000012, y: .99999994, z: .99999994} + m_LocalRotation: {x: -0.0011640434, y: 0.30859375, z: -0.0070071868, w: 0.9511674} + m_LocalPosition: {x: -0.04302513, y: -0.000000013038516, z: 0.000000026077032} + m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 0.99999994} m_Children: - {fileID: 474630} m_Father: {fileID: 463912} @@ -9379,9 +9422,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 191870} - m_LocalRotation: {x: -.17877467, y: -.604884565, z: -.197807446, w: .750350952} - m_LocalPosition: {x: -.138070434, y: 1.53668225e-08, z: -3.72529008e-09} - m_LocalScale: {x: 1.00000012, y: .999999523, z: .99999994} + m_LocalRotation: {x: -0.17877467, y: -0.60488456, z: -0.19780745, w: 0.75035095} + m_LocalPosition: {x: -0.13807043, y: 0.000000015366822, z: -0.00000000372529} + m_LocalScale: {x: 1.0000001, y: 0.9999995, z: 0.99999994} m_Children: - {fileID: 441900} - {fileID: 462708} @@ -9394,9 +9437,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 160330} - m_LocalRotation: {x: .606006801, y: -.130311221, z: -.305838287, w: .722660124} - m_LocalPosition: {x: .00651649013, y: .0285909418, z: .0177916177} - m_LocalScale: {x: .999999821, y: .999999702, z: .999999821} + m_LocalRotation: {x: 0.6060068, y: -0.13031122, z: -0.3058383, w: 0.7226601} + m_LocalPosition: {x: 0.00651649, y: 0.028590942, z: 0.017791618} + m_LocalScale: {x: 0.9999998, y: 0.9999997, z: 0.9999998} m_Children: [] m_Father: {fileID: 402816} m_RootOrder: 2 @@ -9406,9 +9449,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 147882} - m_LocalRotation: {x: -.0648570284, y: -.0761284977, z: -.0368119664, w: .994305253} - m_LocalPosition: {x: -.117348514, y: -9.31322575e-09, z: 0} - m_LocalScale: {x: 1.00633991, y: .998775303, z: .99465239} + m_LocalRotation: {x: -0.06485703, y: -0.0761285, z: -0.036811966, w: 0.99430525} + m_LocalPosition: {x: -0.117348514, y: -0.000000009313226, z: 0} + m_LocalScale: {x: 1.0063399, y: 0.9987753, z: 0.9946524} m_Children: [] m_Father: {fileID: 409520} m_RootOrder: 0 @@ -9418,9 +9461,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 110110} - m_LocalRotation: {x: .0477816984, y: -.0334548578, z: .0451468416, w: .997276068} - m_LocalPosition: {x: -.0760072097, y: .000645257533, z: -.00141747016} - m_LocalScale: {x: 1, y: 1, z: 1.00000012} + m_LocalRotation: {x: 0.0477817, y: -0.033454858, z: 0.04514684, w: 0.99727607} + m_LocalPosition: {x: -0.07600721, y: 0.00064525753, z: -0.0014174702} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} m_Children: - {fileID: 403188} - {fileID: 453910} @@ -9435,9 +9478,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 129538} - m_LocalRotation: {x: .0387273468, y: .257537574, z: -.012408115, w: .96541214} - m_LocalPosition: {x: -.023271814, y: 4.88944396e-09, z: 2.98023224e-08} - m_LocalScale: {x: .999999881, y: 1, z: .999999881} + m_LocalRotation: {x: 0.038727347, y: 0.25753757, z: -0.012408115, w: 0.96541214} + m_LocalPosition: {x: -0.023271814, y: 0.000000004889444, z: 0.000000029802322} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.9999999} m_Children: - {fileID: 472362} m_Father: {fileID: 400238} @@ -9448,9 +9491,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 103698} - m_LocalRotation: {x: -.41290912, y: .592001736, z: .508228481, w: -.469833821} - m_LocalPosition: {x: -.345264077, y: .0183000304, z: .0808450654} - m_LocalScale: {x: 1.00000012, y: 1, z: 1.00000012} + m_LocalRotation: {x: -0.41290912, y: 0.59200174, z: 0.5082285, w: -0.46983382} + m_LocalPosition: {x: -0.34526408, y: 0.01830003, z: 0.080845065} + m_LocalScale: {x: 1.0000001, y: 1, z: 1.0000001} m_Children: [] m_Father: {fileID: 477750} m_RootOrder: 10 @@ -9460,9 +9503,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 180522} - m_LocalRotation: {x: -.0387272611, y: .257537603, z: .0124080544, w: .96541214} - m_LocalPosition: {x: -.0232717693, y: 2.70083547e-08, z: 0} - m_LocalScale: {x: 1.00000012, y: 1.00000024, z: 1.00000012} + m_LocalRotation: {x: -0.03872726, y: 0.2575376, z: 0.012408054, w: 0.96541214} + m_LocalPosition: {x: -0.02327177, y: 0.000000027008355, z: 0} + m_LocalScale: {x: 1.0000001, y: 1.0000002, z: 1.0000001} m_Children: - {fileID: 424952} m_Father: {fileID: 497564} @@ -9473,8 +9516,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 173920} - m_LocalRotation: {x: -2.35624611e-07, y: 9.31325461e-10, z: -1.23400241e-08, w: 1} - m_LocalPosition: {x: -.117544547, y: 3.02679792e-09, z: -1.62981495e-09} + m_LocalRotation: {x: -0.00000023562461, y: 9.313255e-10, z: -0.000000012340024, + w: 1} + m_LocalPosition: {x: -0.11754455, y: 0.000000003026798, z: -0.000000001629815} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 475994} @@ -9486,8 +9530,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 147852} - m_LocalRotation: {x: -.0069451388, y: .286917031, z: .0383759141, w: .957161248} - m_LocalPosition: {x: -.0243426263, y: 0, z: 7.4505806e-09} + m_LocalRotation: {x: -0.006945139, y: 0.28691703, z: 0.038375914, w: 0.95716125} + m_LocalPosition: {x: -0.024342626, y: 0, z: 0.000000007450581} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 464892} @@ -9499,9 +9543,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 186300} - m_LocalRotation: {x: -.0796042085, y: .0473429821, z: .0680263862, w: .993375182} - m_LocalPosition: {x: -.117544539, y: -2.17696652e-08, z: -3.72529008e-09} - m_LocalScale: {x: 1.00000012, y: 1, z: .999999881} + m_LocalRotation: {x: -0.07960421, y: 0.047342982, z: 0.068026386, w: 0.9933752} + m_LocalPosition: {x: -0.11754454, y: -0.000000021769665, z: -0.00000000372529} + m_LocalScale: {x: 1.0000001, y: 1, z: 0.9999999} m_Children: [] m_Father: {fileID: 464838} m_RootOrder: 0 @@ -9511,9 +9555,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 145916} - m_LocalRotation: {x: -1.40164047e-07, y: -2.32829075e-10, z: -1.11758709e-08, w: 1} - m_LocalPosition: {x: -.138070434, y: -3.7602149e-08, z: -1.105946e-09} - m_LocalScale: {x: 1, y: 1, z: .99999994} + m_LocalRotation: {x: -0.00000014016405, y: -2.3282908e-10, z: -0.000000011175871, + w: 1} + m_LocalPosition: {x: -0.13807043, y: -0.00000003760215, z: -0.000000001105946} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} m_Children: - {fileID: 469836} m_Father: {fileID: 409544} @@ -9524,9 +9569,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 109788} - m_LocalRotation: {x: 2.69035837e-07, y: 3.13198929e-16, z: 1.16415311e-09, w: 1} - m_LocalPosition: {x: 3.69473128e-08, y: 1.80152711e-08, z: 9.31323019e-10} - m_LocalScale: {x: 1, y: .99999994, z: .99999994} + m_LocalRotation: {x: 0.00000026903584, y: 3.1319893e-16, z: 0.0000000011641531, + w: 1} + m_LocalPosition: {x: 0.000000036947313, y: 0.000000018015271, z: 9.31323e-10} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} m_Children: - {fileID: 407876} m_Father: {fileID: 484398} @@ -9537,9 +9583,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 189390} - m_LocalRotation: {x: -.118256502, y: .302012116, z: -.02641006, w: .945572138} - m_LocalPosition: {x: -.0379325971, y: 8.94069672e-08, z: 6.70552254e-08} - m_LocalScale: {x: 1, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: -0.1182565, y: 0.30201212, z: -0.02641006, w: 0.94557214} + m_LocalPosition: {x: -0.037932597, y: 0.00000008940697, z: 0.000000067055225} + m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} m_Children: - {fileID: 419384} - {fileID: 462202} @@ -9551,9 +9597,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 159086} - m_LocalRotation: {x: -.0589427352, y: .0714985877, z: -.0461423658, w: .994627893} - m_LocalPosition: {x: -5.30853868e-08, y: 6.00703061e-08, z: 5.587935e-09} - m_LocalScale: {x: 1.00000024, y: .999999762, z: .999999881} + m_LocalRotation: {x: -0.058942735, y: 0.07149859, z: -0.046142366, w: 0.9946279} + m_LocalPosition: {x: -0.000000053085387, y: 0.000000060070306, z: 0.000000005587935} + m_LocalScale: {x: 1.0000002, y: 0.99999976, z: 0.9999999} m_Children: - {fileID: 467362} m_Father: {fileID: 410054} @@ -9564,9 +9610,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 147874} - m_LocalRotation: {x: -2.8987418e-07, y: 3.95812139e-09, z: -9.31321464e-10, w: 1} - m_LocalPosition: {x: -.187748671, y: -4.07453626e-08, z: -3.72529008e-09} - m_LocalScale: {x: 1, y: .99999994, z: .99999994} + m_LocalRotation: {x: -0.00000028987418, y: 0.0000000039581214, z: -9.3132146e-10, + w: 1} + m_LocalPosition: {x: -0.18774867, y: -0.000000040745363, z: -0.00000000372529} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} m_Children: - {fileID: 481160} m_Father: {fileID: 416886} @@ -9577,9 +9624,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 153290} - m_LocalRotation: {x: .196465194, y: .707816541, z: .639768064, w: -.226039886} - m_LocalPosition: {x: .0554859824, y: -.521670401, z: .705250919} - m_LocalScale: {x: .999999762, y: .999999881, z: 1} + m_LocalRotation: {x: 0.1964652, y: 0.70781654, z: 0.63976806, w: -0.22603989} + m_LocalPosition: {x: 0.055485982, y: -0.5216704, z: 0.7052509} + m_LocalScale: {x: 0.99999976, y: 0.9999999, z: 1} m_Children: - {fileID: 437084} m_Father: {fileID: 416532} @@ -9590,8 +9637,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 108272} - m_LocalRotation: {x: 1.06552349e-14, y: -7.45058948e-09, z: -1.78023583e-15, w: 1} - m_LocalPosition: {x: 9.60319291e-09, y: 1.98532941e-08, z: -2.51640797e-09} + m_LocalRotation: {x: 1.0655235e-14, y: -0.0000000074505895, z: -1.7802358e-15, w: 1} + m_LocalPosition: {x: 0.000000009603193, y: 0.000000019853294, z: -0.000000002516408} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 404202} @@ -9602,9 +9649,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 177316} - m_LocalRotation: {x: -2.45077513e-06, y: -1.49011248e-08, z: -1.49011985e-08, w: 1} - m_LocalPosition: {x: -2.98023224e-08, y: -9.68575478e-08, z: 3.16649675e-08} - m_LocalScale: {x: 1, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: -0.0000024507751, y: -0.000000014901125, z: -0.000000014901198, + w: 1} + m_LocalPosition: {x: -0.000000029802322, y: -0.00000009685755, z: 0.000000031664968} + m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} m_Children: - {fileID: 432900} m_Father: {fileID: 444524} @@ -9615,9 +9663,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 105246} - m_LocalRotation: {x: -.685812891, y: -.123268232, z: .710272074, w: .0998965651} - m_LocalPosition: {x: .0556415282, y: .511892676, z: .712297082} - m_LocalScale: {x: 1.43404368e-05, y: 1, z: 1.00000012} + m_LocalRotation: {x: -0.6858129, y: -0.12326823, z: 0.7102721, w: 0.099896565} + m_LocalPosition: {x: 0.05564153, y: 0.5118927, z: 0.7122971} + m_LocalScale: {x: 0.000014340437, y: 1, z: 1.0000001} m_Children: [] m_Father: {fileID: 416532} m_RootOrder: 27 @@ -9627,9 +9675,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 104096} - m_LocalRotation: {x: .606006742, y: -.13031128, z: -.305838376, w: .722660124} - m_LocalPosition: {x: .00651649013, y: .0285909418, z: .0177916177} - m_LocalScale: {x: .999999881, y: .999999642, z: .999999821} + m_LocalRotation: {x: 0.60600674, y: -0.13031128, z: -0.30583838, w: 0.7226601} + m_LocalPosition: {x: 0.00651649, y: 0.028590942, z: 0.017791618} + m_LocalScale: {x: 0.9999999, y: 0.99999964, z: 0.9999998} m_Children: - {fileID: 460424} - {fileID: 430326} @@ -9642,9 +9690,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 181882} - m_LocalRotation: {x: 3.24100284e-07, y: 6.03683854e-15, z: 1.86264533e-08, w: 1} - m_LocalPosition: {x: -4.47034836e-08, y: 1.49011612e-08, z: -4.09781933e-08} - m_LocalScale: {x: .99999994, y: .999999881, z: .999999881} + m_LocalRotation: {x: 0.00000032410028, y: 6.0368385e-15, z: 0.000000018626453, w: 1} + m_LocalPosition: {x: -0.000000044703484, y: 0.000000014901161, z: -0.000000040978193} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} m_Children: [] m_Father: {fileID: 431342} m_RootOrder: 0 @@ -9654,9 +9702,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 130242} - m_LocalRotation: {x: -.0300831702, y: .308215976, z: -.0553743094, w: .949226856} - m_LocalPosition: {x: -.0250134021, y: -2.23517418e-08, z: 1.49011612e-08} - m_LocalScale: {x: .999999762, y: .999999821, z: .999999881} + m_LocalRotation: {x: -0.03008317, y: 0.30821598, z: -0.05537431, w: 0.94922686} + m_LocalPosition: {x: -0.025013402, y: -0.000000022351742, z: 0.000000014901161} + m_LocalScale: {x: 0.99999976, y: 0.9999998, z: 0.9999999} m_Children: - {fileID: 416636} m_Father: {fileID: 476392} @@ -9667,8 +9715,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 153206} - m_LocalRotation: {x: 1.44354999e-08, y: -9.31322686e-10, z: -4.24915925e-09, w: 1} - m_LocalPosition: {x: 2.04890966e-08, y: 2.28174031e-08, z: 4.23751771e-08} + m_LocalRotation: {x: 0.0000000144355, y: -9.313227e-10, z: -0.0000000042491592, + w: 1} + m_LocalPosition: {x: 0.000000020489097, y: 0.000000022817403, z: 0.000000042375177} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 429696} @@ -9679,9 +9728,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 170716} - m_LocalRotation: {x: -.196465164, y: .707816541, z: -.639768064, w: -.226039931} - m_LocalPosition: {x: .0556415357, y: .511892617, z: .712297261} - m_LocalScale: {x: .873918414, y: .873918295, z: .873918295} + m_LocalRotation: {x: -0.19646516, y: 0.70781654, z: -0.63976806, w: -0.22603993} + m_LocalPosition: {x: 0.055641536, y: 0.5118926, z: 0.71229726} + m_LocalScale: {x: 0.8739184, y: 0.8739183, z: 0.8739183} m_Children: - {fileID: 419444} m_Father: {fileID: 416532} @@ -9692,9 +9741,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 189884} - m_LocalRotation: {x: -.265918314, y: .963671267, z: .019394096, w: -.0157831162} - m_LocalPosition: {x: .150527045, y: .109014444, z: .00681991456} - m_LocalScale: {x: .999999821, y: .99999994, z: 1.00000036} + m_LocalRotation: {x: -0.2659183, y: 0.96367127, z: 0.019394096, w: -0.015783116} + m_LocalPosition: {x: 0.15052705, y: 0.109014444, z: 0.0068199146} + m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 1.0000004} m_Children: - {fileID: 431964} m_Father: {fileID: 477260} @@ -9705,9 +9754,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 109574} - m_LocalRotation: {x: 1.11758723e-07, y: -1.86264648e-09, z: -1.11758709e-08, w: 1} - m_LocalPosition: {x: -.0189663097, y: -1.11758709e-08, z: -1.49011612e-08} - m_LocalScale: {x: 1, y: .99999994, z: .99999994} + m_LocalRotation: {x: 0.00000011175872, y: -0.0000000018626465, z: -0.000000011175871, + w: 1} + m_LocalPosition: {x: -0.01896631, y: -0.000000011175871, z: -0.000000014901161} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} m_Children: [] m_Father: {fileID: 459746} m_RootOrder: 0 @@ -9717,9 +9767,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 191628} - m_LocalRotation: {x: -1.11758727e-08, y: 1.11758718e-08, z: 1.4901163e-08, w: 1} - m_LocalPosition: {x: 5.21540642e-08, y: 8.94069672e-08, z: -3.7252903e-08} - m_LocalScale: {x: .99999994, y: .999999881, z: .999999881} + m_LocalRotation: {x: -0.000000011175873, y: 0.000000011175872, z: 0.000000014901163, + w: 1} + m_LocalPosition: {x: 0.000000052154064, y: 0.00000008940697, z: -0.000000037252903} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} m_Children: [] m_Father: {fileID: 429732} m_RootOrder: 0 @@ -9729,9 +9780,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 156166} - m_LocalRotation: {x: -3.14787059e-07, y: -1.39698364e-09, z: -9.31323019e-10, w: 1} - m_LocalPosition: {x: -.357861072, y: -.00679635163, z: .00412282627} - m_LocalScale: {x: 1, y: .99999994, z: 1} + m_LocalRotation: {x: -0.00000031478706, y: -0.0000000013969836, z: -9.31323e-10, + w: 1} + m_LocalPosition: {x: -0.35786107, y: -0.0067963516, z: 0.0041228263} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} m_Children: [] m_Father: {fileID: 468046} m_RootOrder: 3 @@ -9741,9 +9793,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 189962} - m_LocalRotation: {x: -.00116063922, y: .30859375, z: -.00700829178, w: .951167464} - m_LocalPosition: {x: -.0430250987, y: -9.31322575e-09, z: 1.86264515e-08} - m_LocalScale: {x: 1, y: .999999821, z: .999999821} + m_LocalRotation: {x: -0.0011606392, y: 0.30859375, z: -0.007008292, w: 0.95116746} + m_LocalPosition: {x: -0.0430251, y: -0.000000009313226, z: 0.000000018626451} + m_LocalScale: {x: 1, y: 0.9999998, z: 0.9999998} m_Children: - {fileID: 448832} m_Father: {fileID: 458802} @@ -9754,8 +9806,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 162656} - m_LocalRotation: {x: -2.03188563e-07, y: -.720731199, z: 1.54681828e-07, w: .693214715} - m_LocalPosition: {x: 3.98620585e-08, y: 5.6423799e-10, z: 4.94607511e-09} + m_LocalRotation: {x: -0.00000020318856, y: -0.7207312, z: 0.00000015468183, w: 0.6932147} + m_LocalPosition: {x: 0.00000003986206, y: 5.64238e-10, z: 0.000000004946075} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 452294} @@ -9766,9 +9818,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 128800} - m_LocalRotation: {x: -1.21401996e-07, y: -.724182963, z: 1.44976582e-07, w: .689607918} - m_LocalPosition: {x: -5.96033267e-08, y: -3.11700006e-11, z: 3.53913379e-08} - m_LocalScale: {x: .999999821, y: .99999994, z: .99999994} + m_LocalRotation: {x: -0.000000121402, y: -0.72418296, z: 0.00000014497658, w: 0.6896079} + m_LocalPosition: {x: -0.000000059603327, y: -3.117e-11, z: 0.000000035391338} + m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 0.99999994} m_Children: [] m_Father: {fileID: 497248} m_RootOrder: 0 @@ -9778,8 +9830,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 192240} - m_LocalRotation: {x: -7.09409704e-08, y: -.795869112, z: 3.95224248e-07, w: .60546881} - m_LocalPosition: {x: -.195924193, y: -2.98340597e-09, z: 3.17057991e-10} + m_LocalRotation: {x: -0.00000007094097, y: -0.7958691, z: 0.00000039522425, w: 0.6054688} + m_LocalPosition: {x: -0.1959242, y: -0.000000002983406, z: 3.17058e-10} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 454864} @@ -9790,9 +9842,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 116462} - m_LocalRotation: {x: .127505288, y: -.0202256665, z: -.0109541658, w: .991571128} - m_LocalPosition: {x: -.0532609746, y: 1.67638063e-08, z: 2.00234354e-08} - m_LocalScale: {x: .999999702, y: .999999821, z: .999999762} + m_LocalRotation: {x: 0.12750529, y: -0.020225666, z: -0.010954166, w: 0.9915711} + m_LocalPosition: {x: -0.053260975, y: 0.000000016763806, z: 0.000000020023435} + m_LocalScale: {x: 0.9999997, y: 0.9999998, z: 0.99999976} m_Children: [] m_Father: {fileID: 402816} m_RootOrder: 0 @@ -9802,8 +9854,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 194922} - m_LocalRotation: {x: 2.75762016e-15, y: 2.79396666e-08, z: 1, w: 6.12322632e-17} - m_LocalPosition: {x: -.0800900906, y: 6.04663208e-09, z: 1.86264604e-09} + m_LocalRotation: {x: 2.7576202e-15, y: 0.000000027939667, z: 1, w: 6.123226e-17} + m_LocalPosition: {x: -0.08009009, y: 0.000000006046632, z: 0.000000001862646} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 469546} @@ -9815,9 +9867,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 131464} - m_LocalRotation: {x: 1.1977059e-07, y: .715359509, z: -6.73250327e-08, w: .698756576} - m_LocalPosition: {x: -.0207558684, y: 1.56702495e-09, z: .343329579} - m_LocalScale: {x: .999999821, y: .999999821, z: .999999821} + m_LocalRotation: {x: 0.00000011977059, y: 0.7153595, z: -0.00000006732503, w: 0.6987566} + m_LocalPosition: {x: -0.020755868, y: 0.000000001567025, z: 0.34332958} + m_LocalScale: {x: 0.9999998, y: 0.9999998, z: 0.9999998} m_Children: [] m_Father: {fileID: 416532} m_RootOrder: 0 @@ -9827,9 +9879,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 106810} - m_LocalRotation: {x: 1.32351147e-07, y: .794792712, z: -9.4746639e-08, w: .606881082} - m_LocalPosition: {x: -.37726596, y: 2.8432245e-08, z: .0226890482} - m_LocalScale: {x: .999999821, y: 1.00000012, z: .999999821} + m_LocalRotation: {x: 0.00000013235115, y: 0.7947927, z: -0.00000009474664, w: 0.6068811} + m_LocalPosition: {x: -0.37726596, y: 0.000000028432245, z: 0.022689048} + m_LocalScale: {x: 0.9999998, y: 1.0000001, z: 0.9999998} m_Children: - {fileID: 452294} m_Father: {fileID: 477750} @@ -9840,8 +9892,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 188712} - m_LocalRotation: {x: 3.33040953e-06, y: -7.45064899e-09, z: -2.04890735e-08, w: 1} - m_LocalPosition: {x: -4.47034836e-08, y: -4.47034836e-08, z: 1.49011612e-08} + m_LocalRotation: {x: 0.0000033304095, y: -0.000000007450649, z: -0.000000020489074, + w: 1} + m_LocalPosition: {x: -0.000000044703484, y: -0.000000044703484, z: 0.000000014901161} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 492470} @@ -9852,9 +9905,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146592} - m_LocalRotation: {x: .456018567, y: .190552801, z: -.201009631, w: .845772922} - m_LocalPosition: {x: -.0950252265, y: -.0182064101, z: -.0553838462} - m_LocalScale: {x: 1.16675496, y: .983170271, z: .998633504} + m_LocalRotation: {x: 0.45601857, y: 0.1905528, z: -0.20100963, w: 0.8457729} + m_LocalPosition: {x: -0.09502523, y: -0.01820641, z: -0.055383846} + m_LocalScale: {x: 1.166755, y: 0.9831703, z: 0.9986335} m_Children: [] m_Father: {fileID: 489554} m_RootOrder: 0 @@ -9864,9 +9917,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 106312} - m_LocalRotation: {x: -.00694292365, y: .28691715, z: .0383752547, w: .957161307} - m_LocalPosition: {x: -.0243426263, y: 0, z: 7.4505806e-09} - m_LocalScale: {x: 1, y: 1.00000012, z: 1} + m_LocalRotation: {x: -0.0069429236, y: 0.28691715, z: 0.038375255, w: 0.9571613} + m_LocalPosition: {x: -0.024342626, y: 0, z: 0.000000007450581} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} m_Children: - {fileID: 423768} m_Father: {fileID: 451502} @@ -9877,9 +9930,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 169824} - m_LocalRotation: {x: 3.81842291e-08, y: 2.32830666e-09, z: 1.51339929e-09, w: 1} - m_LocalPosition: {x: -1.28056854e-08, y: 3.72529008e-09, z: -4.0163286e-08} - m_LocalScale: {x: .99999994, y: .99999994, z: 1} + m_LocalRotation: {x: 0.00000003818423, y: 0.0000000023283067, z: 0.0000000015133993, + w: 1} + m_LocalPosition: {x: -0.000000012805685, y: 0.00000000372529, z: -0.000000040163286} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1} m_Children: [] m_Father: {fileID: 482948} m_RootOrder: 0 @@ -9889,8 +9943,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146754} - m_LocalRotation: {x: -2.83680856e-06, y: -7.45060547e-09, z: 8.84754314e-09, w: 1} - m_LocalPosition: {x: -1.49011612e-08, y: 8.19563866e-08, z: -3.7252903e-08} + m_LocalRotation: {x: -0.0000028368086, y: -0.0000000074506055, z: 0.000000008847543, + w: 1} + m_LocalPosition: {x: -0.000000014901161, y: 0.00000008195639, z: -0.000000037252903} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 454418} @@ -9902,9 +9957,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 168896} - m_LocalRotation: {x: 1.4458783e-06, y: 5.57988748e-14, z: 3.85916827e-08, w: 1} - m_LocalPosition: {x: -.0143604353, y: 3.7252903e-08, z: 2.09547579e-08} - m_LocalScale: {x: .99999994, y: 1, z: 1} + m_LocalRotation: {x: 0.0000014458783, y: 5.5798875e-14, z: 0.000000038591683, w: 1} + m_LocalPosition: {x: -0.014360435, y: 0.000000037252903, z: 0.000000020954758} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} m_Children: [] m_Father: {fileID: 495852} m_RootOrder: 0 @@ -9914,9 +9969,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 118896} - m_LocalRotation: {x: -.0207216069, y: -.108953632, z: .989725649, w: .090238288} - m_LocalPosition: {x: -.0344919711, y: 2.98023224e-08, z: 5.58793545e-08} - m_LocalScale: {x: 1.00000024, y: 1.00000012, z: .999999821} + m_LocalRotation: {x: -0.020721607, y: -0.10895363, z: 0.98972565, w: 0.09023829} + m_LocalPosition: {x: -0.03449197, y: 0.000000029802322, z: 0.000000055879354} + m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 0.9999998} m_Children: [] m_Father: {fileID: 481516} m_RootOrder: 1 @@ -9926,9 +9981,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 188406} - m_LocalRotation: {x: .330049306, y: .941488981, z: .0437837392, w: .0524313822} - m_LocalPosition: {x: 5.34868105e-09, y: -3.93643207e-09, z: -2.50836307e-09} - m_LocalScale: {x: .999999762, y: 1.00000024, z: 1.00000012} + m_LocalRotation: {x: 0.3300493, y: 0.941489, z: 0.04378374, w: 0.052431382} + m_LocalPosition: {x: 0.000000005348681, y: -0.000000003936432, z: -0.000000002508363} + m_LocalScale: {x: 0.99999976, y: 1.0000002, z: 1.0000001} m_Children: - {fileID: 491422} m_Father: {fileID: 447564} @@ -9939,9 +9994,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 133258} - m_LocalRotation: {x: .861473918, y: .189542368, z: -.088452816, w: .462723047} - m_LocalPosition: {x: .0211790428, y: -.438667238, z: .881295383} - m_LocalScale: {x: 37.3571815, y: 1.00000024, z: .99999994} + m_LocalRotation: {x: 0.8614739, y: 0.18954237, z: -0.088452816, w: 0.46272305} + m_LocalPosition: {x: 0.021179043, y: -0.43866724, z: 0.8812954} + m_LocalScale: {x: 37.35718, y: 1.0000002, z: 0.99999994} m_Children: [] m_Father: {fileID: 416532} m_RootOrder: 30 @@ -9951,9 +10006,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 183014} - m_LocalRotation: {x: -.330049217, y: .941488922, z: -.0437835716, w: .0524323098} - m_LocalPosition: {x: 2.0146274e-08, y: 1.09647296e-08, z: -2.14825002e-09} - m_LocalScale: {x: .999999881, y: 1.00000036, z: 1.00000036} + m_LocalRotation: {x: -0.33004922, y: 0.9414889, z: -0.04378357, w: 0.05243231} + m_LocalPosition: {x: 0.000000020146274, y: 0.00000001096473, z: -0.00000000214825} + m_LocalScale: {x: 0.9999999, y: 1.0000004, z: 1.0000004} m_Children: - {fileID: 458284} m_Father: {fileID: 413212} @@ -9964,9 +10019,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 165612} - m_LocalRotation: {x: 2.28360273e-06, y: -7.45059747e-09, z: -7.45056372e-09, w: 1} - m_LocalPosition: {x: 5.21540642e-08, y: -7.4505806e-09, z: -1.49011612e-08} - m_LocalScale: {x: 1, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: 0.0000022836027, y: -0.0000000074505975, z: -0.0000000074505637, + w: 1} + m_LocalPosition: {x: 0.000000052154064, y: -0.000000007450581, z: -0.000000014901161} + m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} m_Children: [] m_Father: {fileID: 458136} m_RootOrder: 0 @@ -9976,9 +10032,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 159758} - m_LocalRotation: {x: -.00688619912, y: .104663976, z: -.0545653179, w: .992985785} - m_LocalPosition: {x: -.0539618805, y: 0, z: 7.07805157e-08} - m_LocalScale: {x: .873918295, y: .999999762, z: .999999642} + m_LocalRotation: {x: -0.006886199, y: 0.104663976, z: -0.054565318, w: 0.9929858} + m_LocalPosition: {x: -0.05396188, y: 0, z: 0.000000070780516} + m_LocalScale: {x: 0.8739183, y: 0.99999976, z: 0.99999964} m_Children: [] m_Father: {fileID: 494576} m_RootOrder: 2 @@ -9988,9 +10044,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 101540} - m_LocalRotation: {x: -2.23517418e-08, y: -1.4435499e-08, z: 2.43307987e-08, w: 1} - m_LocalPosition: {x: -2.67755196e-09, y: -7.39237294e-09, z: -3.72529008e-09} - m_LocalScale: {x: 1.00000012, y: 1, z: 1} + m_LocalRotation: {x: -0.000000022351742, y: -0.000000014435499, z: 0.000000024330799, + w: 1} + m_LocalPosition: {x: -0.000000002677552, y: -0.000000007392373, z: -0.00000000372529} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} m_Children: - {fileID: 405524} m_Father: {fileID: 469756} @@ -10001,9 +10058,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 166306} - m_LocalRotation: {x: .0515171811, y: .230155692, z: .078927882, w: .968578756} - m_LocalPosition: {x: -.0287208613, y: -1.07102096e-07, z: -1.76951289e-08} - m_LocalScale: {x: 1, y: .99999994, z: .999999881} + m_LocalRotation: {x: 0.05151718, y: 0.23015569, z: 0.07892788, w: 0.96857876} + m_LocalPosition: {x: -0.028720861, y: -0.000000107102096, z: -0.000000017695129} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999999} m_Children: - {fileID: 401484} - {fileID: 449308} @@ -10015,8 +10072,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 120102} - m_LocalRotation: {x: 5.24494794e-08, y: .69471395, z: 1.27879359e-14, w: .719286144} - m_LocalPosition: {x: 5.86760684e-09, y: 1.03818398e-09, z: 6.86219721e-08} + m_LocalRotation: {x: 0.00000005244948, y: 0.69471395, z: 1.2787936e-14, w: 0.71928614} + m_LocalPosition: {x: 0.000000005867607, y: 0.000000001038184, z: 0.00000006862197} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 499668} @@ -10028,9 +10085,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 138432} - m_LocalRotation: {x: .0560735725, y: .0994186103, z: .652415514, w: .749216795} - m_LocalPosition: {x: -.268887818, y: -.383196801, z: .00994915888} - m_LocalScale: {x: .999999881, y: 1, z: .99999994} + m_LocalRotation: {x: 0.056073572, y: 0.09941861, z: 0.6524155, w: 0.7492168} + m_LocalPosition: {x: -0.26888782, y: -0.3831968, z: 0.009949159} + m_LocalScale: {x: 0.9999999, y: 1, z: 0.99999994} m_Children: [] m_Father: {fileID: 405990} m_RootOrder: 0 @@ -10040,9 +10097,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 182888} - m_LocalRotation: {x: 2.99303764e-07, y: -4.65661343e-10, z: 3.49246215e-10, w: 1} - m_LocalPosition: {x: -.187748656, y: 5.12227416e-09, z: 1.3038516e-08} - m_LocalScale: {x: .999999702, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: 0.00000029930376, y: -4.6566134e-10, z: 3.4924622e-10, w: 1} + m_LocalPosition: {x: -0.18774866, y: 0.000000005122274, z: 0.000000013038516} + m_LocalScale: {x: 0.9999997, y: 1.0000001, z: 1.0000001} m_Children: - {fileID: 482948} m_Father: {fileID: 458850} @@ -10053,9 +10110,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 196632} - m_LocalRotation: {x: -.0619528033, y: -.000212653322, z: -.00457153143, w: .998068571} - m_LocalPosition: {x: -.0518109463, y: -1.06170774e-07, z: 2.56113708e-08} - m_LocalScale: {x: .999999821, y: .999999881, z: .999999821} + m_LocalRotation: {x: -0.061952803, y: -0.00021265332, z: -0.0045715314, w: 0.9980686} + m_LocalPosition: {x: -0.051810946, y: -0.00000010617077, z: 0.00000002561137} + m_LocalScale: {x: 0.9999998, y: 0.9999999, z: 0.9999998} m_Children: - {fileID: 428904} m_Father: {fileID: 456208} @@ -10066,9 +10123,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 125270} - m_LocalRotation: {x: .41290921, y: .592001677, z: -.508228481, w: -.469833821} - m_LocalPosition: {x: -.345264077, y: -.0182999764, z: .0808450654} - m_LocalScale: {x: 1, y: 1, z: 1.00000012} + m_LocalRotation: {x: 0.4129092, y: 0.5920017, z: -0.5082285, w: -0.46983382} + m_LocalPosition: {x: -0.34526408, y: -0.018299976, z: 0.080845065} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} m_Children: - {fileID: 495908} - {fileID: 475278} @@ -10083,9 +10140,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 144290} - m_LocalRotation: {x: -2.07498647e-06, y: 4.65680605e-10, z: -9.31322486e-09, w: 1} - m_LocalPosition: {x: -2.32830599e-09, y: 2.23517418e-08, z: -3.35276127e-08} - m_LocalScale: {x: 1, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: -0.0000020749865, y: 4.656806e-10, z: -0.000000009313225, w: 1} + m_LocalPosition: {x: -0.000000002328306, y: 0.000000022351742, z: -0.000000033527613} + m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} m_Children: - {fileID: 435726} m_Father: {fileID: 482832} @@ -10096,8 +10153,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 191768} - m_LocalRotation: {x: -3.60410486e-15, y: 7.10349019e-15, z: -1.33517687e-15, w: 1} - m_LocalPosition: {x: .0234402772, y: -.0980000049, z: -.00142736849} + m_LocalRotation: {x: -3.604105e-15, y: 7.10349e-15, z: -1.3351769e-15, w: 1} + m_LocalPosition: {x: 0.023440277, y: -0.098000005, z: -0.0014273685} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 474682} @@ -10108,9 +10165,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 172828} - m_LocalRotation: {x: -.330049038, y: .941489041, z: -.0437835976, w: .0524323061} - m_LocalPosition: {x: 4.98903887e-08, y: -3.93643385e-09, z: 6.45719977e-10} - m_LocalScale: {x: .99999994, y: .99999994, z: 1} + m_LocalRotation: {x: -0.33004904, y: 0.94148904, z: -0.043783598, w: 0.052432306} + m_LocalPosition: {x: 0.00000004989039, y: -0.000000003936434, z: 6.4572e-10} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1} m_Children: [] m_Father: {fileID: 413212} m_RootOrder: 4 @@ -10120,8 +10177,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 148772} - m_LocalRotation: {x: 5.87654192e-08, y: .795869231, z: -4.07755664e-07, w: .605468631} - m_LocalPosition: {x: -.0522755943, y: -1.079447e-07, z: -.188821465} + m_LocalRotation: {x: 0.00000005876542, y: 0.79586923, z: -0.00000040775566, w: 0.60546863} + m_LocalPosition: {x: -0.052275594, y: -0.0000001079447, z: -0.18882146} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 499694} @@ -10133,9 +10190,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 152572} - m_LocalRotation: {x: -.706077874, y: .707101047, z: .0379414149, w: .00475818384} - m_LocalPosition: {x: -.037105795, y: -.11689166, z: .0197394565} - m_LocalScale: {x: 1.00000012, y: .999999881, z: 1.00000012} + m_LocalRotation: {x: -0.7060779, y: 0.70710105, z: 0.037941415, w: 0.004758184} + m_LocalPosition: {x: -0.037105795, y: -0.11689166, z: 0.019739456} + m_LocalScale: {x: 1.0000001, y: 0.9999999, z: 1.0000001} m_Children: - {fileID: 470564} - {fileID: 415788} @@ -10147,9 +10204,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 192780} - m_LocalRotation: {x: .00169767579, y: -.680593491, z: .0272615217, w: .732151926} - m_LocalPosition: {x: -.34368813, y: 2.10711733e-08, z: 1.62981495e-09} - m_LocalScale: {x: 1.00001431, y: 1.00001431, z: 1.00001442} + m_LocalRotation: {x: 0.0016976758, y: -0.6805935, z: 0.027261522, w: 0.7321519} + m_LocalPosition: {x: -0.34368813, y: 0.000000021071173, z: 0.000000001629815} + m_LocalScale: {x: 1.0000143, y: 1.0000143, z: 1.0000144} m_Children: - {fileID: 466826} m_Father: {fileID: 482734} @@ -10160,9 +10217,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 167272} - m_LocalRotation: {x: -.079604201, y: .0473430008, z: .0680264384, w: .993375182} - m_LocalPosition: {x: -.117544502, y: 7.56699592e-09, z: -9.31323019e-10} - m_LocalScale: {x: 1.00000024, y: .999999404, z: .999999344} + m_LocalRotation: {x: -0.0796042, y: 0.047343, z: 0.06802644, w: 0.9933752} + m_LocalPosition: {x: -0.1175445, y: 0.000000007566996, z: -9.31323e-10} + m_LocalScale: {x: 1.0000002, y: 0.9999994, z: 0.99999934} m_Children: - {fileID: 450940} - {fileID: 465770} @@ -10176,9 +10233,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 123056} - m_LocalRotation: {x: -.191933692, y: -.611208022, z: -.184493572, w: .745351136} - m_LocalPosition: {x: -4.36557501e-09, y: -3.62051651e-08, z: -2.09547601e-09} - m_LocalScale: {x: .99999994, y: .999999881, z: 1.00000012} + m_LocalRotation: {x: -0.19193369, y: -0.611208, z: -0.18449357, w: 0.74535114} + m_LocalPosition: {x: -0.000000004365575, y: -0.000000036205165, z: -0.000000002095476} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1.0000001} m_Children: - {fileID: 439036} m_Father: {fileID: 458390} @@ -10189,9 +10246,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 197616} - m_LocalRotation: {x: -.000997944036, y: .00093399873, z: .00823631883, w: .999965191} - m_LocalPosition: {x: -.0416163057, y: 4.47034836e-08, z: 4.0512532e-08} - m_LocalScale: {x: 1, y: 1.00000012, z: .99999994} + m_LocalRotation: {x: -0.000997944, y: 0.00093399873, z: 0.008236319, w: 0.9999652} + m_LocalPosition: {x: -0.041616306, y: 0.000000044703484, z: 0.000000040512532} + m_LocalScale: {x: 1, y: 1.0000001, z: 0.99999994} m_Children: [] m_Father: {fileID: 479370} m_RootOrder: 1 @@ -10201,9 +10258,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 188172} - m_LocalRotation: {x: 3.03918223e-05, y: .99319005, z: -.000258125365, w: .11650537} - m_LocalPosition: {x: .081289731, y: -3.25882397e-08, z: .0846921057} - m_LocalScale: {x: 1.00000012, y: 1, z: 1.00000012} + m_LocalRotation: {x: 0.000030391822, y: 0.99319005, z: -0.00025812536, w: 0.11650537} + m_LocalPosition: {x: 0.08128973, y: -0.00000003258824, z: 0.084692106} + m_LocalScale: {x: 1.0000001, y: 1, z: 1.0000001} m_Children: [] m_Father: {fileID: 474724} m_RootOrder: 0 @@ -10213,9 +10270,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 113706} - m_LocalRotation: {x: 2.10292637e-06, y: -2.79394063e-09, z: 1.26892745e-08, w: 1} - m_LocalPosition: {x: -.0172460098, y: 3.7252903e-08, z: -1.3038516e-08} - m_LocalScale: {x: 1.00000012, y: 1, z: 1} + m_LocalRotation: {x: 0.0000021029264, y: -0.0000000027939406, z: 0.0000000126892745, + w: 1} + m_LocalPosition: {x: -0.01724601, y: 0.000000037252903, z: -0.000000013038516} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} m_Children: [] m_Father: {fileID: 481516} m_RootOrder: 0 @@ -10225,8 +10283,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 111360} - m_LocalRotation: {x: 7.54856586e-08, y: .999999881, z: -.000499443209, w: 1.33120366e-07} - m_LocalPosition: {x: -.284003496, y: 5.32454578e-08, z: 4.69299311e-09} + m_LocalRotation: {x: 0.00000007548566, y: 0.9999999, z: -0.0004994432, w: 0.00000013312037} + m_LocalPosition: {x: -0.2840035, y: 0.000000053245458, z: 0.000000004692993} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 421856} @@ -10238,9 +10296,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 193496} - m_LocalRotation: {x: 3.84205512e-09, y: .787174642, z: -2.58628205e-07, w: .616730154} - m_LocalPosition: {x: -.45368126, y: 3.37272539e-08, z: -2.35142106e-09} - m_LocalScale: {x: 1, y: .999999881, z: 1} + m_LocalRotation: {x: 0.000000003842055, y: 0.78717464, z: -0.0000002586282, w: 0.61673015} + m_LocalPosition: {x: -0.45368126, y: 0.000000033727254, z: -0.000000002351421} + m_LocalScale: {x: 1, y: 0.9999999, z: 1} m_Children: [] m_Father: {fileID: 431602} m_RootOrder: 1 @@ -10250,8 +10308,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 171962} - m_LocalRotation: {x: 1.2665987e-07, y: 7.45058237e-09, z: 1.30385152e-08, w: 1} - m_LocalPosition: {x: -4.47034836e-08, y: 2.23517418e-08, z: 4.84287739e-08} + m_LocalRotation: {x: 0.00000012665987, y: 0.000000007450582, z: 0.000000013038515, + w: 1} + m_LocalPosition: {x: -0.000000044703484, y: 0.000000022351742, z: 0.000000048428774} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 427186} @@ -10263,9 +10322,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 137968} - m_LocalRotation: {x: 3.72529074e-09, y: 7.4505806e-09, z: 2.98023224e-08, w: 1} - m_LocalPosition: {x: -0, y: 1.08033419e-07, z: -7.4505806e-09} - m_LocalScale: {x: 1, y: .999999881, z: 1} + m_LocalRotation: {x: 0.0000000037252907, y: 0.000000007450581, z: 0.000000029802322, + w: 1} + m_LocalPosition: {x: -0, y: 0.00000010803342, z: -0.000000007450581} + m_LocalScale: {x: 1, y: 0.9999999, z: 1} m_Children: [] m_Father: {fileID: 443796} m_RootOrder: 0 @@ -10275,9 +10335,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 166884} - m_LocalRotation: {x: .136551157, y: .891428292, z: -.188489899, w: -.388819903} - m_LocalPosition: {x: -.0379325971, y: 8.94069672e-08, z: 6.70552254e-08} - m_LocalScale: {x: 1, y: 1.00000024, z: 1} + m_LocalRotation: {x: 0.13655116, y: 0.8914283, z: -0.1884899, w: -0.3888199} + m_LocalPosition: {x: -0.037932597, y: 0.00000008940697, z: 0.000000067055225} + m_LocalScale: {x: 1, y: 1.0000002, z: 1} m_Children: [] m_Father: {fileID: 402414} m_RootOrder: 1 @@ -10287,9 +10347,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 156730} - m_LocalRotation: {x: 3.10828932e-06, y: 2.60533782e-14, z: 8.38190228e-09, w: 1} - m_LocalPosition: {x: 1.49011612e-08, y: -1.67638063e-08, z: -3.44589353e-08} - m_LocalScale: {x: 1.00000012, y: 1, z: .99999994} + m_LocalRotation: {x: 0.0000031082893, y: 2.6053378e-14, z: 0.000000008381902, w: 1} + m_LocalPosition: {x: 0.000000014901161, y: -0.000000016763806, z: -0.000000034458935} + m_LocalScale: {x: 1.0000001, y: 1, z: 0.99999994} m_Children: [] m_Father: {fileID: 456566} m_RootOrder: 0 @@ -10299,9 +10359,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 120034} - m_LocalRotation: {x: 1.19771016e-07, y: .715359509, z: -6.73255087e-08, w: .698756635} + m_LocalRotation: {x: 0.00000011977102, y: 0.7153595, z: -0.00000006732551, w: 0.69875664} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: .999999821, y: .99999994, z: .999999821} + m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 0.9999998} m_Children: - {fileID: 420858} - {fileID: 419050} @@ -10313,8 +10373,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 164698} - m_LocalRotation: {x: 6.12070181e-08, y: .993292093, z: -1.18409645e-07, w: -.115632206} - m_LocalPosition: {x: -1.40768397e-09, y: 5.1905702e-10, z: -5.64045788e-09} + m_LocalRotation: {x: 0.00000006120702, y: 0.9932921, z: -0.000000118409645, w: -0.115632206} + m_LocalPosition: {x: -0.000000001407684, y: 5.19057e-10, z: -0.000000005640458} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 416056} @@ -10325,9 +10385,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 185064} - m_LocalRotation: {x: -.468258023, y: .184973955, z: .199566498, w: .840649903} - m_LocalPosition: {x: -.0950825438, y: .0176539663, z: -.0541578978} - m_LocalScale: {x: 1.15871823, y: .99796021, z: .999876916} + m_LocalRotation: {x: -0.46825802, y: 0.18497396, z: 0.1995665, w: 0.8406499} + m_LocalPosition: {x: -0.095082544, y: 0.017653966, z: -0.054157898} + m_LocalScale: {x: 1.1587182, y: 0.9979602, z: 0.9998769} m_Children: [] m_Father: {fileID: 420340} m_RootOrder: 0 @@ -10337,9 +10397,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 143176} - m_LocalRotation: {x: .854531527, y: .248905897, z: -.445982963, w: .0944511741} - m_LocalPosition: {x: -.138070419, y: -1.28056898e-09, z: -1.86264504e-09} - m_LocalScale: {x: 1.00000012, y: .99999994, z: 1} + m_LocalRotation: {x: 0.8545315, y: 0.2489059, z: -0.44598296, w: 0.094451174} + m_LocalPosition: {x: -0.13807042, y: -0.000000001280569, z: -0.000000001862645} + m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 1} m_Children: - {fileID: 408624} m_Father: {fileID: 469756} @@ -10350,8 +10410,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 170138} - m_LocalRotation: {x: 3.58466059e-06, y: 8.38189251e-09, z: -2.79399792e-09, w: 1} - m_LocalPosition: {x: -2.60770321e-08, y: 2.42143869e-08, z: -7.4505806e-09} + m_LocalRotation: {x: 0.0000035846606, y: 0.0000000083818925, z: -0.000000002793998, + w: 1} + m_LocalPosition: {x: -0.000000026077032, y: 0.000000024214387, z: -0.000000007450581} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 454418} @@ -10362,9 +10423,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 172148} - m_LocalRotation: {x: .750759423, y: -.147774413, z: .432974458, w: .476504058} - m_LocalPosition: {x: -.197302312, y: -.026959043, z: -.28227061} - m_LocalScale: {x: 1.00000024, y: 1.00000012, z: 1} + m_LocalRotation: {x: 0.7507594, y: -0.14777441, z: 0.43297446, w: 0.47650406} + m_LocalPosition: {x: -0.19730231, y: -0.026959043, z: -0.2822706} + m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 1} m_Children: - {fileID: 415086} m_Father: {fileID: 435298} @@ -10375,9 +10436,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 114344} - m_LocalRotation: {x: 1.1977059e-07, y: .715359509, z: -6.73250327e-08, w: .698756576} - m_LocalPosition: {x: -.0207558684, y: 1.56702495e-09, z: .343329579} - m_LocalScale: {x: .999999821, y: .999999821, z: .999999821} + m_LocalRotation: {x: 0.00000011977059, y: 0.7153595, z: -0.00000006732503, w: 0.6987566} + m_LocalPosition: {x: -0.020755868, y: 0.000000001567025, z: 0.34332958} + m_LocalScale: {x: 0.9999998, y: 0.9999998, z: 0.9999998} m_Children: - {fileID: 490920} - {fileID: 468784} @@ -10397,9 +10458,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 158536} - m_LocalRotation: {x: 8.91765239e-08, y: .996255696, z: 1.6087985e-07, w: -.0864559859} - m_LocalPosition: {x: -.0222276859, y: .242438287, z: .110095225} - m_LocalScale: {x: 1, y: .999999702, z: 1} + m_LocalRotation: {x: 0.000000089176524, y: 0.9962557, z: 0.00000016087985, w: -0.086455986} + m_LocalPosition: {x: -0.022227686, y: 0.24243829, z: 0.110095225} + m_LocalScale: {x: 1, y: 0.9999997, z: 1} m_Children: - {fileID: 470478} - {fileID: 428152} @@ -10411,8 +10472,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 121170} - m_LocalRotation: {x: -2.31899321e-06, y: 7.45052864e-09, z: 2.23517596e-08, w: 1} - m_LocalPosition: {x: -2.98023224e-08, y: 5.96046448e-08, z: -1.49011612e-08} + m_LocalRotation: {x: -0.0000023189932, y: 0.0000000074505286, z: 0.00000002235176, + w: 1} + m_LocalPosition: {x: -0.000000029802322, y: 0.000000059604645, z: -0.000000014901161} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 400302} @@ -10423,9 +10485,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 132610} - m_LocalRotation: {x: -3.14787059e-07, y: -1.39698364e-09, z: -9.31323019e-10, w: 1} - m_LocalPosition: {x: -.357861072, y: -.00679635163, z: .00412282627} - m_LocalScale: {x: 1, y: .99999994, z: 1} + m_LocalRotation: {x: -0.00000031478706, y: -0.0000000013969836, z: -9.31323e-10, + w: 1} + m_LocalPosition: {x: -0.35786107, y: -0.0067963516, z: 0.0041228263} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} m_Children: [] m_Father: {fileID: 468046} m_RootOrder: 1 @@ -10435,9 +10498,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 128926} - m_LocalRotation: {x: -.41290912, y: .592001736, z: .508228481, w: -.469833821} - m_LocalPosition: {x: -.345264077, y: .0183000304, z: .0808450654} - m_LocalScale: {x: 1.00000012, y: 1, z: 1.00000012} + m_LocalRotation: {x: -0.41290912, y: 0.59200174, z: 0.5082285, w: -0.46983382} + m_LocalPosition: {x: -0.34526408, y: 0.01830003, z: 0.080845065} + m_LocalScale: {x: 1.0000001, y: 1, z: 1.0000001} m_Children: - {fileID: 405902} - {fileID: 483204} @@ -10452,9 +10515,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 184140} - m_LocalRotation: {x: -.675275743, y: -.344985217, z: -.336480051, w: .558362842} - m_LocalPosition: {x: -1.50175765e-08, y: 1.58324838e-08, z: -1.03493221e-07} - m_LocalScale: {x: 1.02546322, y: .997323453, z: .997323394} + m_LocalRotation: {x: -0.67527574, y: -0.34498522, z: -0.33648005, w: 0.55836284} + m_LocalPosition: {x: -0.000000015017577, y: 0.000000015832484, z: -0.00000010349322} + m_LocalScale: {x: 1.0254632, y: 0.99732345, z: 0.9973234} m_Children: [] m_Father: {fileID: 426704} m_RootOrder: 0 @@ -10464,9 +10527,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 102932} - m_LocalRotation: {x: .707106948, y: 2.35392349e-06, z: .70710659, w: -2.35392463e-06} - m_LocalPosition: {x: 7.97445043e-09, y: 2.18860805e-08, z: -4.19095203e-09} - m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} + m_LocalRotation: {x: 0.70710695, y: 0.0000023539235, z: 0.7071066, w: -0.0000023539246} + m_LocalPosition: {x: 0.00000000797445, y: 0.00000002188608, z: -0.000000004190952} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} m_Children: [] m_Father: {fileID: 414508} m_RootOrder: 0 @@ -10476,9 +10539,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 151014} - m_LocalRotation: {x: -.0736006424, y: -.036371462, z: .0744804963, w: .993837416} - m_LocalPosition: {x: -1.12922862e-08, y: 1.97906047e-08, z: 1.86264504e-09} - m_LocalScale: {x: 1, y: .99999994, z: .999999821} + m_LocalRotation: {x: -0.07360064, y: -0.036371462, z: 0.0744805, w: 0.9938374} + m_LocalPosition: {x: -0.000000011292286, y: 0.000000019790605, z: 0.000000001862645} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999998} m_Children: - {fileID: 413674} m_Father: {fileID: 457018} @@ -10489,9 +10552,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 131846} - m_LocalRotation: {x: 1.19771045e-07, y: .715359509, z: -6.73254732e-08, w: .698756576} - m_LocalPosition: {x: -.0227332115, y: -.0979999825, z: .319929272} - m_LocalScale: {x: .999999821, y: .99999994, z: .999999821} + m_LocalRotation: {x: 0.00000011977104, y: 0.7153595, z: -0.00000006732547, w: 0.6987566} + m_LocalPosition: {x: -0.022733212, y: -0.09799998, z: 0.31992927} + m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 0.9999998} m_Children: - {fileID: 407560} - {fileID: 422148} @@ -10505,9 +10568,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 115364} - m_LocalRotation: {x: -.0177177936, y: .0190946572, z: .0207882654, w: .999444544} - m_LocalPosition: {x: -.34368813, y: 2.42143869e-08, z: -2.32831004e-10} - m_LocalScale: {x: 1.00001454, y: 1.00001442, z: 1.00001442} + m_LocalRotation: {x: -0.017717794, y: 0.019094657, z: 0.020788265, w: 0.99944454} + m_LocalPosition: {x: -0.34368813, y: 0.000000024214387, z: -2.32831e-10} + m_LocalScale: {x: 1.0000145, y: 1.0000144, z: 1.0000144} m_Children: [] m_Father: {fileID: 486980} m_RootOrder: 0 @@ -10517,9 +10580,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 107760} - m_LocalRotation: {x: -.0188034885, y: .305723161, z: -.0131360665, w: .951844156} - m_LocalPosition: {x: -.0344919711, y: 2.98023224e-08, z: 5.58793545e-08} - m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1} + m_LocalRotation: {x: -0.018803488, y: 0.30572316, z: -0.0131360665, w: 0.95184416} + m_LocalPosition: {x: -0.03449197, y: 0.000000029802322, z: 0.000000055879354} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1} m_Children: - {fileID: 436868} - {fileID: 459784} @@ -10531,9 +10594,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 182924} - m_LocalRotation: {x: -1.86264533e-08, y: -6.93889457e-17, z: 3.7252903e-09, w: 1} - m_LocalPosition: {x: -4.47034836e-08, y: 9.68575478e-08, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1.00000012} + m_LocalRotation: {x: -0.000000018626453, y: -6.9388946e-17, z: 0.0000000037252903, + w: 1} + m_LocalPosition: {x: -0.000000044703484, y: 0.00000009685755, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} m_Children: [] m_Father: {fileID: 405062} m_RootOrder: 0 @@ -10543,9 +10607,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 141068} - m_LocalRotation: {x: .41290921, y: .592001677, z: -.508228481, w: -.469833821} - m_LocalPosition: {x: -.345264077, y: -.0182999764, z: .0808450654} - m_LocalScale: {x: 1, y: 1, z: 1.00000012} + m_LocalRotation: {x: 0.4129092, y: 0.5920017, z: -0.5082285, w: -0.46983382} + m_LocalPosition: {x: -0.34526408, y: -0.018299976, z: 0.080845065} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} m_Children: [] m_Father: {fileID: 477750} m_RootOrder: 9 @@ -10555,8 +10619,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 186134} - m_LocalRotation: {x: 9.34380822e-08, y: -.0484603457, z: -2.0223089e-08, w: .998825133} - m_LocalPosition: {x: -.195924163, y: 1.34939384e-08, z: 6.3549952e-09} + m_LocalRotation: {x: 0.00000009343808, y: -0.048460346, z: -0.000000020223089, w: 0.99882513} + m_LocalPosition: {x: -0.19592416, y: 0.000000013493938, z: 0.000000006354995} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 423494} @@ -10567,9 +10631,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 164846} - m_LocalRotation: {x: 1.19771045e-07, y: .715359509, z: -6.73254732e-08, w: .698756576} - m_LocalPosition: {x: -.0227331966, y: .0979999825, z: .319929272} - m_LocalScale: {x: .999999821, y: .99999994, z: .999999821} + m_LocalRotation: {x: 0.00000011977104, y: 0.7153595, z: -0.00000006732547, w: 0.6987566} + m_LocalPosition: {x: -0.022733197, y: 0.09799998, z: 0.31992927} + m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 0.9999998} m_Children: - {fileID: 413470} - {fileID: 499488} @@ -10583,9 +10647,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 154216} - m_LocalRotation: {x: -.00688618934, y: .104664005, z: -.0545653328, w: .992985725} - m_LocalPosition: {x: -.0539618805, y: 0, z: 7.07805157e-08} - m_LocalScale: {x: .999999881, y: .999999881, z: .999999762} + m_LocalRotation: {x: -0.0068861893, y: 0.104664005, z: -0.054565333, w: 0.9929857} + m_LocalPosition: {x: -0.05396188, y: 0, z: 0.000000070780516} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.99999976} m_Children: - {fileID: 418492} m_Father: {fileID: 494576} @@ -10596,9 +10660,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 106240} - m_LocalRotation: {x: 2.95174395e-05, y: .99319005, z: -.000251313031, w: .11650537} - m_LocalPosition: {x: .081289731, y: 1.41440033e-08, z: .0846921057} - m_LocalScale: {x: 1.00000012, y: 1, z: 1.00000012} + m_LocalRotation: {x: 0.00002951744, y: 0.99319005, z: -0.00025131303, w: 0.11650537} + m_LocalPosition: {x: 0.08128973, y: 0.000000014144003, z: 0.084692106} + m_LocalScale: {x: 1.0000001, y: 1, z: 1.0000001} m_Children: [] m_Father: {fileID: 430614} m_RootOrder: 0 @@ -10608,9 +10672,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 196830} - m_LocalRotation: {x: -.0177177936, y: .0190946572, z: .0207882654, w: .999444544} - m_LocalPosition: {x: -.34368813, y: 2.42143869e-08, z: -2.32831004e-10} - m_LocalScale: {x: 1.00001454, y: 1.00001442, z: 1.00001442} + m_LocalRotation: {x: -0.017717794, y: 0.019094657, z: 0.020788265, w: 0.99944454} + m_LocalPosition: {x: -0.34368813, y: 0.000000024214387, z: -2.32831e-10} + m_LocalScale: {x: 1.0000145, y: 1.0000144, z: 1.0000144} m_Children: - {fileID: 414250} - {fileID: 416056} @@ -10631,8 +10695,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 193846} - m_LocalRotation: {x: -9.87201929e-08, y: -3.72529008e-09, z: -3.72529074e-09, w: 1} - m_LocalPosition: {x: -1.49011612e-08, y: 8.19563866e-08, z: -8.00937414e-08} + m_LocalRotation: {x: -0.00000009872019, y: -0.00000000372529, z: -0.0000000037252907, + w: 1} + m_LocalPosition: {x: -0.000000014901161, y: 0.00000008195639, z: -0.00000008009374} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 437590} @@ -10644,9 +10709,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 147088} - m_LocalRotation: {x: .0619528368, y: -.000212691099, z: .00457155146, w: .998068571} - m_LocalPosition: {x: -.0518109873, y: 6.98491887e-09, z: 6.42612576e-08} - m_LocalScale: {x: .999999821, y: .999999762, z: .999999702} + m_LocalRotation: {x: 0.061952837, y: -0.0002126911, z: 0.0045715515, w: 0.9980686} + m_LocalPosition: {x: -0.051810987, y: 0.000000006984919, z: 0.00000006426126} + m_LocalScale: {x: 0.9999998, y: 0.99999976, z: 0.9999997} m_Children: - {fileID: 417960} m_Father: {fileID: 429696} @@ -10657,9 +10722,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 168950} - m_LocalRotation: {x: .0560732447, y: -.0994188562, z: .652415395, w: .749216795} - m_LocalPosition: {x: -.0129143149, y: -.351501048, z: 1.10993576} - m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} + m_LocalRotation: {x: 0.056073245, y: -0.099418856, z: 0.6524154, w: 0.7492168} + m_LocalPosition: {x: -0.012914315, y: -0.35150105, z: 1.1099358} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} m_Children: - {fileID: 485838} - {fileID: 486510} @@ -10674,8 +10739,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 157794} - m_LocalRotation: {x: -3.70200723e-08, y: 2.44472176e-09, z: 5.82076665e-10, w: 1} - m_LocalPosition: {x: -8.82428139e-08, y: -1.11758709e-08, z: -1.83936208e-07} + m_LocalRotation: {x: -0.000000037020072, y: 0.0000000024447218, z: 5.8207666e-10, + w: 1} + m_LocalPosition: {x: -0.000000088242814, y: -0.000000011175871, z: -0.00000018393621} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 481160} @@ -10686,9 +10752,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 179540} - m_LocalRotation: {x: 2.83215218e-06, y: 2.7939786e-09, z: 3.72528297e-09, w: 1} - m_LocalPosition: {x: 1.49011612e-08, y: 2.79396795e-09, z: 1.86264515e-08} - m_LocalScale: {x: .99999994, y: .99999994, z: 1} + m_LocalRotation: {x: 0.0000028321522, y: 0.0000000027939786, z: 0.000000003725283, + w: 1} + m_LocalPosition: {x: 0.000000014901161, y: 0.000000002793968, z: 0.000000018626451} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1} m_Children: - {fileID: 437036} m_Father: {fileID: 482492} @@ -10699,9 +10766,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 160192} - m_LocalRotation: {x: .88187331, y: -.201564461, z: -.083430402, w: -.417984128} - m_LocalPosition: {x: .0212690979, y: .446303636, z: .885922968} - m_LocalScale: {x: 37.6817093, y: 1, z: 1} + m_LocalRotation: {x: 0.8818733, y: -0.20156446, z: -0.0834304, w: -0.41798413} + m_LocalPosition: {x: 0.021269098, y: 0.44630364, z: 0.88592297} + m_LocalScale: {x: 37.68171, y: 1, z: 1} m_Children: [] m_Father: {fileID: 416532} m_RootOrder: 31 @@ -10711,9 +10778,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 124316} - m_LocalRotation: {x: .0619542822, y: -.000212684477, z: .00457155192, w: .998068511} - m_LocalPosition: {x: -.0518109873, y: 6.98491887e-09, z: 6.42612576e-08} - m_LocalScale: {x: .999999881, y: .999999881, z: .999999821} + m_LocalRotation: {x: 0.061954282, y: -0.00021268448, z: 0.004571552, w: 0.9980685} + m_LocalPosition: {x: -0.051810987, y: 0.000000006984919, z: 0.00000006426126} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999998} m_Children: - {fileID: 486504} - {fileID: 470312} @@ -10726,9 +10793,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 178688} - m_LocalRotation: {x: .0796040297, y: .0473410822, z: -.0680264607, w: .993375301} - m_LocalPosition: {x: -.117544509, y: -3.37604411e-09, z: 3.72529008e-09} - m_LocalScale: {x: .99999994, y: 1, z: .999999762} + m_LocalRotation: {x: 0.07960403, y: 0.047341082, z: -0.06802646, w: 0.9933753} + m_LocalPosition: {x: -0.11754451, y: -0.000000003376044, z: 0.00000000372529} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999976} m_Children: [] m_Father: {fileID: 492472} m_RootOrder: 0 @@ -10738,9 +10805,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 171908} - m_LocalRotation: {x: 2.32830615e-07, y: 1.8626416e-09, z: -1.53668225e-08, w: 1} - m_LocalPosition: {x: -.117544539, y: 9.77888703e-09, z: 9.31323019e-10} - m_LocalScale: {x: 1, y: 1.00000012, z: 1} + m_LocalRotation: {x: 0.00000023283062, y: 0.0000000018626416, z: -0.000000015366822, + w: 1} + m_LocalPosition: {x: -0.11754454, y: 0.000000009778887, z: 9.31323e-10} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} m_Children: - {fileID: 409544} m_Father: {fileID: 497362} @@ -10751,9 +10819,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 114580} - m_LocalRotation: {x: -4.98592817e-05, y: .014366731, z: .0245213918, w: .999596059} - m_LocalPosition: {x: .00360140903, y: -.0133637711, z: -.0582214184} - m_LocalScale: {x: 1.05232358, y: .999852955, z: .999949455} + m_LocalRotation: {x: -0.00004985928, y: 0.014366731, z: 0.024521392, w: 0.99959606} + m_LocalPosition: {x: 0.003601409, y: -0.013363771, z: -0.05822142} + m_LocalScale: {x: 1.0523236, y: 0.99985296, z: 0.99994946} m_Children: - {fileID: 409520} m_Father: {fileID: 489554} @@ -10764,9 +10832,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 199558} - m_LocalRotation: {x: .854531407, y: -.248906121, z: -.445982873, w: -.0944512784} - m_LocalPosition: {x: -.138070434, y: 1.53668225e-08, z: -3.72529008e-09} - m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1} + m_LocalRotation: {x: 0.8545314, y: -0.24890612, z: -0.44598287, w: -0.09445128} + m_LocalPosition: {x: -0.13807043, y: 0.000000015366822, z: -0.00000000372529} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1} m_Children: - {fileID: 425698} m_Father: {fileID: 401474} @@ -10777,9 +10845,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 197280} - m_LocalRotation: {x: .606006742, y: -.130311251, z: -.305838376, w: .722660184} - m_LocalPosition: {x: .00651649013, y: .0285909418, z: .0177916177} - m_LocalScale: {x: 1, y: .999999821, z: .99999994} + m_LocalRotation: {x: 0.60600674, y: -0.13031125, z: -0.30583838, w: 0.7226602} + m_LocalPosition: {x: 0.00651649, y: 0.028590942, z: 0.017791618} + m_LocalScale: {x: 1, y: 0.9999998, z: 0.99999994} m_Children: - {fileID: 424834} m_Father: {fileID: 402816} @@ -10790,9 +10858,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 164456} - m_LocalRotation: {x: -.726178348, y: .0323376767, z: .0225699786, w: .686374545} - m_LocalPosition: {x: 3.25962901e-09, y: 3.49245965e-08, z: 1.11758709e-08} - m_LocalScale: {x: .999999642, y: .999999881, z: .99999994} + m_LocalRotation: {x: -0.72617835, y: 0.032337677, z: 0.022569979, w: 0.68637455} + m_LocalPosition: {x: 0.000000003259629, y: 0.000000034924597, z: 0.000000011175871} + m_LocalScale: {x: 0.99999964, y: 0.9999999, z: 0.99999994} m_Children: - {fileID: 478636} m_Father: {fileID: 458896} @@ -10803,9 +10871,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 189756} - m_LocalRotation: {x: 4.19095159e-08, y: -9.31323019e-10, z: -1.07102096e-08, w: 1} - m_LocalPosition: {x: 1.24564394e-08, y: -8.14907342e-09, z: 4.88944396e-09} - m_LocalScale: {x: 1, y: 1, z: .99999994} + m_LocalRotation: {x: 0.000000041909516, y: -9.31323e-10, z: -0.00000001071021, w: 1} + m_LocalPosition: {x: 0.000000012456439, y: -0.000000008149073, z: 0.000000004889444} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} m_Children: - {fileID: 457018} m_Father: {fileID: 415260} @@ -10816,8 +10884,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 182528} - m_LocalRotation: {x: -2.72318721e-06, y: -2.23517116e-08, z: -1.11759322e-08, w: 1} - m_LocalPosition: {x: -5.96046448e-08, y: 3.7252903e-08, z: 5.96046448e-08} + m_LocalRotation: {x: -0.0000027231872, y: -0.000000022351712, z: -0.000000011175932, + w: 1} + m_LocalPosition: {x: -0.000000059604645, y: 0.000000037252903, z: 0.000000059604645} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 400302} @@ -10829,9 +10898,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 149202} - m_LocalRotation: {x: -.127501056, y: -.0202235822, z: .0109542264, w: .991571724} - m_LocalPosition: {x: -.0532609597, y: -2.88709998e-08, z: -1.58324838e-08} - m_LocalScale: {x: .999999881, y: .99999994, z: 1} + m_LocalRotation: {x: -0.12750106, y: -0.020223582, z: 0.010954226, w: 0.9915717} + m_LocalPosition: {x: -0.05326096, y: -0.000000028871, z: -0.000000015832484} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 1} m_Children: - {fileID: 470518} - {fileID: 464134} @@ -10844,9 +10913,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 129356} - m_LocalRotation: {x: -3.10668603e-15, y: 9.00589909e-15, z: -3.5517451e-15, w: 1} - m_LocalPosition: {x: 2.71727902e-08, y: -7.46900024e-12, z: -1.21272649e-07} - m_LocalScale: {x: 1.00000012, y: 1, z: 1.00000012} + m_LocalRotation: {x: -3.106686e-15, y: 9.005899e-15, z: -3.551745e-15, w: 1} + m_LocalPosition: {x: 0.00000002717279, y: -7.469e-12, z: -0.00000012127265} + m_LocalScale: {x: 1.0000001, y: 1, z: 1.0000001} m_Children: - {fileID: 488858} m_Father: {fileID: 415154} @@ -10857,9 +10926,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 148308} - m_LocalRotation: {x: -.274643779, y: -.663769841, z: .199195787, w: .666559398} - m_LocalPosition: {x: -.0227332152, y: -.0979999825, z: .319929272} - m_LocalScale: {x: .999999702, y: .999999881, z: .999999642} + m_LocalRotation: {x: -0.27464378, y: -0.66376984, z: 0.19919579, w: 0.6665594} + m_LocalPosition: {x: -0.022733215, y: -0.09799998, z: 0.31992927} + m_LocalScale: {x: 0.9999997, y: 0.9999999, z: 0.99999964} m_Children: - {fileID: 497362} m_Father: {fileID: 416532} @@ -10870,9 +10939,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 165338} - m_LocalRotation: {x: -.0766699612, y: .00549062528, z: .071316123, w: .994487584} - m_LocalPosition: {x: -.117544502, y: 7.56699592e-09, z: -9.31323019e-10} - m_LocalScale: {x: 1.00000024, y: .999999881, z: .999999642} + m_LocalRotation: {x: -0.07666996, y: 0.0054906253, z: 0.07131612, w: 0.9944876} + m_LocalPosition: {x: -0.1175445, y: 0.000000007566996, z: -9.31323e-10} + m_LocalScale: {x: 1.0000002, y: 0.9999999, z: 0.99999964} m_Children: [] m_Father: {fileID: 497338} m_RootOrder: 1 @@ -10882,9 +10951,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 179962} - m_LocalRotation: {x: .118253917, y: .302011997, z: .026410887, w: .945572436} - m_LocalPosition: {x: -.0379325673, y: -3.35276127e-08, z: 1.86264515e-08} - m_LocalScale: {x: .999999762, y: .999999821, z: 1} + m_LocalRotation: {x: 0.11825392, y: 0.302012, z: 0.026410887, w: 0.94557244} + m_LocalPosition: {x: -0.037932567, y: -0.000000033527613, z: 0.000000018626451} + m_LocalScale: {x: 0.99999976, y: 0.9999998, z: 1} m_Children: - {fileID: 478810} m_Father: {fileID: 424834} @@ -10895,9 +10964,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 167602} - m_LocalRotation: {x: -.127503112, y: -.020223761, z: .0109541398, w: .991571486} - m_LocalPosition: {x: -.0532609597, y: -2.88709998e-08, z: -1.58324838e-08} - m_LocalScale: {x: .873918355, y: .99999994, z: 1.00000024} + m_LocalRotation: {x: -0.12750311, y: -0.020223761, z: 0.01095414, w: 0.9915715} + m_LocalPosition: {x: -0.05326096, y: -0.000000028871, z: -0.000000015832484} + m_LocalScale: {x: 0.87391835, y: 0.99999994, z: 1.0000002} m_Children: [] m_Father: {fileID: 427234} m_RootOrder: 3 @@ -10907,9 +10976,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 102916} - m_LocalRotation: {x: 2.39699887e-07, y: .724182904, z: -1.9128241e-07, w: .689608037} - m_LocalPosition: {x: -1.02524256e-08, y: -2.02819606e-09, z: 2.89980431e-08} - m_LocalScale: {x: 1, y: .99999994, z: 1} + m_LocalRotation: {x: 0.0000002396999, y: 0.7241829, z: -0.00000019128241, w: 0.68960804} + m_LocalPosition: {x: -0.000000010252426, y: -0.000000002028196, z: 0.000000028998043} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} m_Children: - {fileID: 469692} - {fileID: 431054} @@ -10921,9 +10990,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 133294} - m_LocalRotation: {x: .127503112, y: -.0202235952, z: -.0109541547, w: .991571486} - m_LocalPosition: {x: -.0532609746, y: 1.67638063e-08, z: 2.00234354e-08} - m_LocalScale: {x: .999999821, y: .999999702, z: .999999821} + m_LocalRotation: {x: 0.12750311, y: -0.020223595, z: -0.010954155, w: 0.9915715} + m_LocalPosition: {x: -0.053260975, y: 0.000000016763806, z: 0.000000020023435} + m_LocalScale: {x: 0.9999998, y: 0.9999997, z: 0.9999998} m_Children: - {fileID: 468536} m_Father: {fileID: 402816} @@ -10934,9 +11003,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146352} - m_LocalRotation: {x: -1.42306089e-06, y: 9.31328348e-10, z: -3.95812005e-09, w: 1} - m_LocalPosition: {x: -3.16649675e-08, y: 1.86264504e-09, z: -2.65426934e-08} - m_LocalScale: {x: .99999994, y: 1, z: 1} + m_LocalRotation: {x: -0.0000014230609, y: 9.313283e-10, z: -0.00000000395812, w: 1} + m_LocalPosition: {x: -0.000000031664968, y: 0.000000001862645, z: -0.000000026542693} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} m_Children: - {fileID: 491788} m_Father: {fileID: 401660} @@ -10947,9 +11016,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 174828} - m_LocalRotation: {x: .722661793, y: -.0245753005, z: .0373661518, w: .689753413} - m_LocalPosition: {x: 3.24216671e-08, y: -2.63098627e-08, z: 1.49011612e-08} - m_LocalScale: {x: 1.00000024, y: 1.00000024, z: 1} + m_LocalRotation: {x: 0.7226618, y: -0.0245753, z: 0.03736615, w: 0.6897534} + m_LocalPosition: {x: 0.000000032421667, y: -0.000000026309863, z: 0.000000014901161} + m_LocalScale: {x: 1.0000002, y: 1.0000002, z: 1} m_Children: - {fileID: 463874} m_Father: {fileID: 467362} @@ -10960,9 +11029,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 165648} - m_LocalRotation: {x: .191933617, y: -.611208081, z: .184493586, w: .745351136} - m_LocalPosition: {x: -1.07684173e-08, y: -2.89874151e-08, z: 4.6566101e-10} - m_LocalScale: {x: 1, y: 1.00000012, z: 1} + m_LocalRotation: {x: 0.19193362, y: -0.6112081, z: 0.18449359, w: 0.74535114} + m_LocalPosition: {x: -0.000000010768417, y: -0.000000028987415, z: 4.65661e-10} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} m_Children: - {fileID: 426402} m_Father: {fileID: 413674} @@ -10973,8 +11042,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 185572} - m_LocalRotation: {x: 3.13855708e-07, y: 4.19095292e-09, z: 5.12227327e-09, w: 1} - m_LocalPosition: {x: -.357861072, y: .00679639634, z: .00412275922} + m_LocalRotation: {x: 0.0000003138557, y: 0.000000004190953, z: 0.0000000051222733, + w: 1} + m_LocalPosition: {x: -0.35786107, y: 0.0067963963, z: 0.004122759} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 475314} @@ -10985,9 +11055,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 167174} - m_LocalRotation: {x: .685971797, y: -.320605814, z: .317522973, w: .570818543} - m_LocalPosition: {x: -1.32713467e-08, y: -2.32830644e-08, z: 2.32830644e-08} - m_LocalScale: {x: 1.07147086, y: .974666476, z: .974666715} + m_LocalRotation: {x: 0.6859718, y: -0.3206058, z: 0.31752297, w: 0.57081854} + m_LocalPosition: {x: -0.000000013271347, y: -0.000000023283064, z: 0.000000023283064} + m_LocalScale: {x: 1.0714709, y: 0.9746665, z: 0.9746667} m_Children: [] m_Father: {fileID: 435298} m_RootOrder: 0 @@ -10997,9 +11067,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 187506} - m_LocalRotation: {x: -.0736008361, y: -.0363714993, z: .0744803771, w: .993837357} - m_LocalPosition: {x: -.0587722324, y: -9.42964107e-09, z: 0} - m_LocalScale: {x: .99999994, y: .999999821, z: 1.00000012} + m_LocalRotation: {x: -0.073600836, y: -0.0363715, z: 0.07448038, w: 0.99383736} + m_LocalPosition: {x: -0.058772232, y: -0.000000009429641, z: 0} + m_LocalScale: {x: 0.99999994, y: 0.9999998, z: 1.0000001} m_Children: [] m_Father: {fileID: 405524} m_RootOrder: 0 @@ -11009,9 +11079,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 159786} - m_LocalRotation: {x: .771931767, y: -.151670307, z: .461097747, w: .410495251} - m_LocalPosition: {x: -.0745338202, y: .00972651318, z: -.100794517} - m_LocalScale: {x: .999999881, y: .999999881, z: .999999881} + m_LocalRotation: {x: 0.77193177, y: -0.1516703, z: 0.46109775, w: 0.41049525} + m_LocalPosition: {x: -0.07453382, y: 0.009726513, z: -0.10079452} + m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999999} m_Children: - {fileID: 400782} m_Father: {fileID: 435298} @@ -11022,9 +11092,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 110174} - m_LocalRotation: {x: .535392284, y: -.479536176, z: .52835995, w: -.451924652} - m_LocalPosition: {x: -.0129142422, y: .380529404, z: 1.10993576} - m_LocalScale: {x: .99999994, y: .99999994, z: .999999762} + m_LocalRotation: {x: 0.5353923, y: -0.47953618, z: 0.52835995, w: -0.45192465} + m_LocalPosition: {x: -0.012914242, y: 0.3805294, z: 1.1099358} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.99999976} m_Children: - {fileID: 458592} m_Father: {fileID: 416532} @@ -11035,9 +11105,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 191226} - m_LocalRotation: {x: .0367949829, y: -.0445790775, z: .121722661, w: .990879655} - m_LocalPosition: {x: -.0757200569, y: -.0327475406, z: -.00405082479} - m_LocalScale: {x: .999999821, y: .999999642, z: .999999523} + m_LocalRotation: {x: 0.036794983, y: -0.044579078, z: 0.12172266, w: 0.99087965} + m_LocalPosition: {x: -0.07572006, y: -0.03274754, z: -0.004050825} + m_LocalScale: {x: 0.9999998, y: 0.99999964, z: 0.9999995} m_Children: - {fileID: 427408} - {fileID: 442856} @@ -11052,9 +11122,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 170006} - m_LocalRotation: {x: -3.81606426e-08, y: -.795869112, z: -3.80671338e-07, w: .60546881} - m_LocalPosition: {x: -.195924193, y: 4.69606682e-08, z: -1.21875099e-09} - m_LocalScale: {x: .999999881, y: 1.00000012, z: 1} + m_LocalRotation: {x: -0.000000038160643, y: -0.7958691, z: -0.00000038067134, w: 0.6054688} + m_LocalPosition: {x: -0.1959242, y: 0.00000004696067, z: -0.000000001218751} + m_LocalScale: {x: 0.9999999, y: 1.0000001, z: 1} m_Children: [] m_Father: {fileID: 486042} m_RootOrder: 1 @@ -11064,9 +11134,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 185430} - m_LocalRotation: {x: -.259189218, y: -.372319311, z: .173489466, w: .87412858} - m_LocalPosition: {x: -.45368126, y: 3.37272539e-08, z: -2.35142106e-09} - m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: -0.25918922, y: -0.3723193, z: 0.17348947, w: 0.8741286} + m_LocalPosition: {x: -0.45368126, y: 0.000000033727254, z: -0.000000002351421} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001} m_Children: - {fileID: 453642} m_Father: {fileID: 417182} @@ -11077,9 +11147,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 186620} - m_LocalRotation: {x: .330049306, y: .941488922, z: .0437837392, w: .0524313822} - m_LocalPosition: {x: 5.34868105e-09, y: -3.93643207e-09, z: -2.50836307e-09} - m_LocalScale: {x: .999999821, y: 1.00000048, z: 1.00000024} + m_LocalRotation: {x: 0.3300493, y: 0.9414889, z: 0.04378374, w: 0.052431382} + m_LocalPosition: {x: 0.000000005348681, y: -0.000000003936432, z: -0.000000002508363} + m_LocalScale: {x: 0.9999998, y: 1.0000005, z: 1.0000002} m_Children: [] m_Father: {fileID: 447564} m_RootOrder: 4 @@ -11089,9 +11159,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 100626} - m_LocalRotation: {x: -1.2665987e-07, y: -1.65145654e-15, z: 1.30385143e-08, w: 1} - m_LocalPosition: {x: -2.98023224e-08, y: -1.49011612e-08, z: 3.72529008e-09} - m_LocalScale: {x: 1.00000012, y: 1, z: 1} + m_LocalRotation: {x: -0.00000012665987, y: -1.6514565e-15, z: 0.000000013038514, + w: 1} + m_LocalPosition: {x: -0.000000029802322, y: -0.000000014901161, z: 0.00000000372529} + m_LocalScale: {x: 1.0000001, y: 1, z: 1} m_Children: - {fileID: 431342} m_Father: {fileID: 491788} @@ -11102,9 +11173,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 109088} - m_LocalRotation: {x: .707106948, y: -1.60066793e-06, z: .70710659, w: 1.60066884e-06} - m_LocalPosition: {x: 5.82076998e-10, y: -8.14907342e-09, z: -1.39698397e-09} - m_LocalScale: {x: 1, y: 1, z: 1.00000012} + m_LocalRotation: {x: 0.70710695, y: -0.0000016006679, z: 0.7071066, w: 0.0000016006688} + m_LocalPosition: {x: 5.82077e-10, y: -0.000000008149073, z: -0.000000001396984} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} m_Children: [] m_Father: {fileID: 493594} m_RootOrder: 0 @@ -11114,9 +11185,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 117584} - m_LocalRotation: {x: -7.45058149e-09, y: 4.65661287e-10, z: -2.32830621e-09, w: 1} - m_LocalPosition: {x: 2.98023224e-08, y: -3.72529008e-09, z: 1.164153e-09} - m_LocalScale: {x: 1, y: .99999994, z: .99999994} + m_LocalRotation: {x: -0.0000000074505815, y: 4.656613e-10, z: -0.0000000023283062, + w: 1} + m_LocalPosition: {x: 0.000000029802322, y: -0.00000000372529, z: 0.000000001164153} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} m_Children: [] m_Father: {fileID: 497744} m_RootOrder: 0 @@ -11126,9 +11198,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 137902} - m_LocalRotation: {x: -.741169751, y: .0845350772, z: -.0208963044, w: .665645957} - m_LocalPosition: {x: -1.50175765e-08, y: 1.58324838e-08, z: -1.03493221e-07} - m_LocalScale: {x: .999999881, y: .99999994, z: .999999821} + m_LocalRotation: {x: -0.74116975, y: 0.08453508, z: -0.020896304, w: 0.66564596} + m_LocalPosition: {x: -0.000000015017577, y: 0.000000015832484, z: -0.00000010349322} + m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 0.9999998} m_Children: [] m_Father: {fileID: 447482} m_RootOrder: 0 @@ -11138,9 +11210,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 136184} - m_LocalRotation: {x: 3.84205512e-09, y: .787174642, z: -2.58628205e-07, w: .616730154} - m_LocalPosition: {x: -.45368126, y: 3.37272539e-08, z: -2.35142106e-09} - m_LocalScale: {x: 1, y: .999999881, z: 1} + m_LocalRotation: {x: 0.000000003842055, y: 0.78717464, z: -0.0000002586282, w: 0.61673015} + m_LocalPosition: {x: -0.45368126, y: 0.000000033727254, z: -0.000000002351421} + m_LocalScale: {x: 1, y: 0.9999999, z: 1} m_Children: [] m_Father: {fileID: 431602} m_RootOrder: 0 @@ -11150,9 +11222,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 174920} - m_LocalRotation: {x: .755953789, y: .180203736, z: .435249746, w: -.45455265} - m_LocalPosition: {x: -.108921945, y: .0329283848, z: -.206708148} - m_LocalScale: {x: .99999994, y: 1.00000012, z: .999999762} + m_LocalRotation: {x: 0.7559538, y: 0.18020374, z: 0.43524975, w: -0.45455265} + m_LocalPosition: {x: -0.108921945, y: 0.032928385, z: -0.20670815} + m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 0.99999976} m_Children: - {fileID: 447748} m_Father: {fileID: 426704} @@ -11163,9 +11235,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 180004} - m_LocalRotation: {x: -.0560735501, y: .0994186103, z: -.652415514, w: .749216795} - m_LocalPosition: {x: -.268887728, y: .383196831, z: .00994927809} - m_LocalScale: {x: .99999994, y: 1.00000012, z: .999999881} + m_LocalRotation: {x: -0.05607355, y: 0.09941861, z: -0.6524155, w: 0.7492168} + m_LocalPosition: {x: -0.26888773, y: 0.38319683, z: 0.009949278} + m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 0.9999999} m_Children: [] m_Father: {fileID: 478276} m_RootOrder: 0 @@ -11175,9 +11247,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 113460} - m_LocalRotation: {x: .178774759, y: -.604885221, z: .197807744, w: .750350356} - m_LocalPosition: {x: -.138070419, y: -1.28056898e-09, z: -1.86264504e-09} - m_LocalScale: {x: 1.00000083, y: 1.00000083, z: .999999821} + m_LocalRotation: {x: 0.17877476, y: -0.6048852, z: 0.19780774, w: 0.75035036} + m_LocalPosition: {x: -0.13807042, y: -0.000000001280569, z: -0.000000001862645} + m_LocalScale: {x: 1.0000008, y: 1.0000008, z: 0.9999998} m_Children: - {fileID: 414260} - {fileID: 484850} @@ -11190,9 +11262,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 141310} - m_LocalRotation: {x: -.606006801, y: -.130311146, z: .305838346, w: .722660124} - m_LocalPosition: {x: .00651647151, y: -.0285910144, z: .0177915487} - m_LocalScale: {x: 1, y: .999999881, z: .999999881} + m_LocalRotation: {x: -0.6060068, y: -0.13031115, z: 0.30583835, w: 0.7226601} + m_LocalPosition: {x: 0.0065164715, y: -0.028591014, z: 0.017791549} + m_LocalScale: {x: 1, y: 0.9999999, z: 0.9999999} m_Children: [] m_Father: {fileID: 427234} m_RootOrder: 2 @@ -11202,9 +11274,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 162546} - m_LocalRotation: {x: 2.45915749e-06, y: -4.65624705e-10, z: 1.49011647e-08, w: 1} - m_LocalPosition: {x: 1.49011612e-08, y: 2.23517418e-08, z: -2.09547579e-08} - m_LocalScale: {x: .99999994, y: .99999994, z: .99999994} + m_LocalRotation: {x: 0.0000024591575, y: -4.656247e-10, z: 0.000000014901165, w: 1} + m_LocalPosition: {x: 0.000000014901161, y: 0.000000022351742, z: -0.000000020954758} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.99999994} m_Children: - {fileID: 492470} m_Father: {fileID: 435726} @@ -11215,9 +11287,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 163186} - m_LocalRotation: {x: 1.4430841e-06, y: 1.86267535e-09, z: 2.09547544e-08, w: 1} - m_LocalPosition: {x: -.020808138, y: 3.7252903e-08, z: 1.07567757e-07} - m_LocalScale: {x: 1, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: 0.0000014430841, y: 0.0000000018626753, z: 0.000000020954754, + w: 1} + m_LocalPosition: {x: -0.020808138, y: 0.000000037252903, z: 0.00000010756776} + m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} m_Children: [] m_Father: {fileID: 479370} m_RootOrder: 0 @@ -11227,9 +11300,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 112146} - m_LocalRotation: {x: .750759423, y: -.147774592, z: .432974786, w: .4765037} - m_LocalPosition: {x: -.130635887, y: -.0356745571, z: -.206635803} - m_LocalScale: {x: 1.05263793, y: .974676192, z: .974676728} + m_LocalRotation: {x: 0.7507594, y: -0.14777459, z: 0.4329748, w: 0.4765037} + m_LocalPosition: {x: -0.13063589, y: -0.035674557, z: -0.2066358} + m_LocalScale: {x: 1.0526379, y: 0.9746762, z: 0.9746767} m_Children: [] m_Father: {fileID: 478276} m_RootOrder: 1 @@ -11239,9 +11312,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 152462} - m_LocalRotation: {x: -1.44634396e-06, y: 8.92396051e-15, z: -6.17001295e-09, w: 1} - m_LocalPosition: {x: -.0143605266, y: -9.68575478e-08, z: 4.09781933e-08} - m_LocalScale: {x: .99999994, y: 1, z: 1} + m_LocalRotation: {x: -0.000001446344, y: 8.9239605e-15, z: -0.000000006170013, w: 1} + m_LocalPosition: {x: -0.014360527, y: -0.00000009685755, z: 0.000000040978193} + m_LocalScale: {x: 0.99999994, y: 1, z: 1} m_Children: [] m_Father: {fileID: 438686} m_RootOrder: 0 @@ -11251,9 +11324,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 121706} - m_LocalRotation: {x: .0718625635, y: .0800486952, z: .0111533524, w: .994134605} - m_LocalPosition: {x: -.0592357814, y: 8.94069672e-08, z: -6.93835318e-08} - m_LocalScale: {x: 1.00000012, y: .999999881, z: 1.00000024} + m_LocalRotation: {x: 0.07186256, y: 0.080048695, z: 0.011153352, w: 0.9941346} + m_LocalPosition: {x: -0.05923578, y: 0.00000008940697, z: -0.00000006938353} + m_LocalScale: {x: 1.0000001, y: 0.9999999, z: 1.0000002} m_Children: [] m_Father: {fileID: 448938} m_RootOrder: 0 @@ -11263,9 +11336,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 134432} - m_LocalRotation: {x: .0183153767, y: -.0481827967, z: -.0202636439, w: .998465002} - m_LocalPosition: {x: -.151453093, y: 1.14343948e-08, z: -1.86264504e-09} - m_LocalScale: {x: 1.00001466, y: 1.00001478, z: 1.00001454} + m_LocalRotation: {x: 0.018315377, y: -0.048182797, z: -0.020263644, w: 0.998465} + m_LocalPosition: {x: -0.1514531, y: 0.000000011434395, z: -0.000000001862645} + m_LocalScale: {x: 1.0000147, y: 1.0000148, z: 1.0000145} m_Children: - {fileID: 476366} - {fileID: 477750} @@ -11277,9 +11350,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 128628} - m_LocalRotation: {x: 5.24494794e-08, y: .69471395, z: 1.27879359e-14, w: .719286144} + m_LocalRotation: {x: 0.00000005244948, y: 0.69471395, z: 1.2787936e-14, w: 0.71928614} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1.00002897, y: 1.00002897, z: 1.00002897} + m_LocalScale: {x: 1.000029, y: 1.000029, z: 1.000029} m_Children: - {fileID: 487724} m_Father: {fileID: 407636} @@ -11290,9 +11363,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146728} - m_LocalRotation: {x: .758457005, y: .163971484, z: .492246032, w: -.39439851} - m_LocalPosition: {x: -5.84404916e-08, y: 1.39698386e-08, z: -2.23401003e-07} - m_LocalScale: {x: 1.00537407, y: 1.00537372, z: 1.0053736} + m_LocalRotation: {x: 0.758457, y: 0.16397148, z: 0.49224603, w: -0.3943985} + m_LocalPosition: {x: -0.00000005844049, y: 0.000000013969839, z: -0.000000223401} + m_LocalScale: {x: 1.0053741, y: 1.0053737, z: 1.0053736} m_Children: - {fileID: 411958} m_Father: {fileID: 405990} @@ -11303,8 +11376,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 151814} - m_LocalRotation: {x: -5.2449554e-08, y: -.69471401, z: -9.23391612e-14, w: .719286084} - m_LocalPosition: {x: -3.13739292e-08, y: 1e-15, z: 5.60622482e-09} + m_LocalRotation: {x: -0.000000052449554, y: -0.694714, z: -9.233916e-14, w: 0.7192861} + m_LocalPosition: {x: -0.00000003137393, y: 1e-15, z: 0.000000005606225} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 486982} @@ -11315,9 +11388,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 124184} - m_LocalRotation: {x: .00688449293, y: .104664072, z: .0545655712, w: .992985725} - m_LocalPosition: {x: -.053961888, y: 1.13621354e-07, z: 8.38190317e-09} - m_LocalScale: {x: .99999994, y: .99999994, z: .999999821} + m_LocalRotation: {x: 0.006884493, y: 0.10466407, z: 0.05456557, w: 0.9929857} + m_LocalPosition: {x: -0.053961888, y: 0.000000113621354, z: 0.000000008381903} + m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.9999998} m_Children: - {fileID: 491260} - {fileID: 425880} @@ -11330,9 +11403,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 152402} - m_LocalRotation: {x: .026487032, y: -.0620172061, z: -.0417829081, w: .996848285} - m_LocalPosition: {x: -.0765088052, y: .0175804794, z: -.00531718321} - m_LocalScale: {x: 1.00000024, y: 1.00000012, z: 1} + m_LocalRotation: {x: 0.026487032, y: -0.062017206, z: -0.04178291, w: 0.9968483} + m_LocalPosition: {x: -0.076508805, y: 0.01758048, z: -0.005317183} + m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 1} m_Children: - {fileID: 424218} - {fileID: 413244} @@ -11347,9 +11420,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 121264} - m_LocalRotation: {x: .0718584806, y: .0802185908, z: .0111568607, w: .994121134} - m_LocalPosition: {x: -.0592357814, y: 8.94069672e-08, z: -6.93835318e-08} - m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1.00000024} + m_LocalRotation: {x: 0.07185848, y: 0.08021859, z: 0.011156861, w: 0.99412113} + m_LocalPosition: {x: -0.05923578, y: 0.00000008940697, z: -0.00000006938353} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000002} m_Children: - {fileID: 408570} m_Father: {fileID: 448938} @@ -11360,9 +11433,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 137190} - m_LocalRotation: {x: 6.1207011e-08, y: .993292153, z: -1.18409716e-07, w: .11563208} - m_LocalPosition: {x: 4.57992435e-08, y: -7.49700042e-12, z: -1.24532278e-07} - m_LocalScale: {x: 1, y: .999999762, z: 1} + m_LocalRotation: {x: 0.00000006120701, y: 0.99329215, z: -0.000000118409716, w: 0.11563208} + m_LocalPosition: {x: 0.000000045799244, y: -7.497e-12, z: -0.00000012453228} + m_LocalScale: {x: 1, y: 0.99999976, z: 1} m_Children: [] m_Father: {fileID: 481704} m_RootOrder: 0 @@ -11372,9 +11445,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 187750} - m_LocalRotation: {x: -.231767327, y: 4.14980086e-08, z: 3.47792621e-08, w: .972771227} - m_LocalPosition: {x: -.0690352097, y: 1.0477379e-08, z: -7.4505806e-09} - m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1} + m_LocalRotation: {x: -0.23176733, y: 0.00000004149801, z: 0.000000034779262, w: 0.9727712} + m_LocalPosition: {x: -0.06903521, y: 0.000000010477379, z: -0.000000007450581} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1} m_Children: [] m_Father: {fileID: 401474} m_RootOrder: 0 @@ -11384,9 +11457,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 102318} - m_LocalRotation: {x: .038730368, y: .257537544, z: -.0124089206, w: .965412021} - m_LocalPosition: {x: -.023271814, y: 4.88944396e-09, z: 2.98023224e-08} - m_LocalScale: {x: .999999821, y: 1, z: .99999994} + m_LocalRotation: {x: 0.038730368, y: 0.25753754, z: -0.012408921, w: 0.965412} + m_LocalPosition: {x: -0.023271814, y: 0.000000004889444, z: 0.000000029802322} + m_LocalScale: {x: 0.9999998, y: 1, z: 0.99999994} m_Children: - {fileID: 492696} m_Father: {fileID: 440554} @@ -11397,9 +11470,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 160174} - m_LocalRotation: {x: -.0621556379, y: -.000360058038, z: -.045099888, w: .997046947} - m_LocalPosition: {x: -.234697104, y: 9.49949026e-08, z: -5.587935e-09} - m_LocalScale: {x: 1.00056052, y: .999513924, z: 1.0000087} + m_LocalRotation: {x: -0.062155638, y: -0.00036005804, z: -0.045099888, w: 0.99704695} + m_LocalPosition: {x: -0.2346971, y: 0.0000000949949, z: -0.000000005587935} + m_LocalScale: {x: 1.0005605, y: 0.9995139, z: 1.0000087} m_Children: - {fileID: 463706} - {fileID: 480430} @@ -11412,9 +11485,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 120008} - m_LocalRotation: {x: -.0621138066, y: -.0003266446, z: -.0417770967, w: .99719429} - m_LocalPosition: {x: -.234697089, y: 1.02445483e-08, z: 2.23517418e-08} - m_LocalScale: {x: 1.00000024, y: .999999881, z: 1.00000012} + m_LocalRotation: {x: -0.062113807, y: -0.0003266446, z: -0.041777097, w: 0.9971943} + m_LocalPosition: {x: -0.23469709, y: 0.000000010244548, z: 0.000000022351742} + m_LocalScale: {x: 1.0000002, y: 0.9999999, z: 1.0000001} m_Children: [] m_Father: {fileID: 493586} m_RootOrder: 0 @@ -11425,7 +11498,7 @@ Transform: m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 167604} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: -27.5100002} + m_LocalPosition: {x: 0, y: 0, z: -27.51} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 418190} @@ -11440,9 +11513,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 125244} - m_LocalRotation: {x: -.0212660544, y: .227248982, z: .0184212998, w: .973430216} - m_LocalPosition: {x: -.0336287655, y: 1.3038516e-08, z: 2.79396795e-09} - m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1} + m_LocalRotation: {x: -0.021266054, y: 0.22724898, z: 0.0184213, w: 0.9734302} + m_LocalPosition: {x: -0.033628765, y: 0.000000013038516, z: 0.000000002793968} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1} m_Children: - {fileID: 497564} m_Father: {fileID: 418492} @@ -11453,9 +11526,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 191820} - m_LocalRotation: {x: .0183153767, y: -.0481827967, z: -.0202636439, w: .998465002} - m_LocalPosition: {x: -.151453093, y: 1.14343948e-08, z: -1.86264504e-09} - m_LocalScale: {x: 1.00001466, y: 1.00001478, z: 1.00001454} + m_LocalRotation: {x: 0.018315377, y: -0.048182797, z: -0.020263644, w: 0.998465} + m_LocalPosition: {x: -0.1514531, y: 0.000000011434395, z: -0.000000001862645} + m_LocalScale: {x: 1.0000147, y: 1.0000148, z: 1.0000145} m_Children: [] m_Father: {fileID: 474682} m_RootOrder: 0 @@ -11465,9 +11538,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 188598} - m_LocalRotation: {x: -.127505302, y: -.0202256497, z: .0109541817, w: .991571128} - m_LocalPosition: {x: -.0532609597, y: -2.88709998e-08, z: -1.58324838e-08} - m_LocalScale: {x: .999999821, y: .99999994, z: 1.00000012} + m_LocalRotation: {x: -0.1275053, y: -0.02022565, z: 0.010954182, w: 0.9915711} + m_LocalPosition: {x: -0.05326096, y: -0.000000028871, z: -0.000000015832484} + m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 1.0000001} m_Children: [] m_Father: {fileID: 427234} m_RootOrder: 0 @@ -11477,9 +11550,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 189494} - m_LocalRotation: {x: -1.71829038e-06, y: 3.2596319e-09, z: -1.9790547e-09, w: 1} - m_LocalPosition: {x: -.0168144107, y: 1.67638063e-08, z: 1.86264515e-08} - m_LocalScale: {x: 1.00000012, y: .99999994, z: .99999994} + m_LocalRotation: {x: -0.0000017182904, y: 0.000000003259632, z: -0.0000000019790547, + w: 1} + m_LocalPosition: {x: -0.01681441, y: 0.000000016763806, z: 0.000000018626451} + m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 0.99999994} m_Children: [] m_Father: {fileID: 488020} m_RootOrder: 0 @@ -11489,9 +11563,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 158734} - m_LocalRotation: {x: .0796040297, y: .0473410748, z: -.0680263862, w: .993375301} - m_LocalPosition: {x: -.117544532, y: 1.28056854e-08, z: -1.86264504e-09} - m_LocalScale: {x: .99999994, y: 1.00000012, z: .999999702} + m_LocalRotation: {x: 0.07960403, y: 0.047341075, z: -0.068026386, w: 0.9933753} + m_LocalPosition: {x: -0.11754453, y: 0.000000012805685, z: -0.000000001862645} + m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 0.9999997} m_Children: [] m_Father: {fileID: 464270} m_RootOrder: 0 @@ -11501,9 +11575,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 156522} - m_LocalRotation: {x: -.0515170284, y: .230155662, z: -.0789278969, w: .968578756} - m_LocalPosition: {x: -.0287208352, y: 2.70083547e-08, z: 1.49011612e-08} - m_LocalScale: {x: .99999994, y: .999999881, z: 1} + m_LocalRotation: {x: -0.05151703, y: 0.23015566, z: -0.0789279, w: 0.96857876} + m_LocalPosition: {x: -0.028720835, y: 0.000000027008355, z: 0.000000014901161} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1} m_Children: - {fileID: 485198} m_Father: {fileID: 482898} @@ -11514,9 +11588,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 147978} - m_LocalRotation: {x: 1.19771045e-07, y: .715359509, z: -6.73254732e-08, w: .698756576} - m_LocalPosition: {x: -.0227331966, y: .0979999825, z: .319929272} - m_LocalScale: {x: .999999821, y: .99999994, z: .999999821} + m_LocalRotation: {x: 0.00000011977104, y: 0.7153595, z: -0.00000006732547, w: 0.6987566} + m_LocalPosition: {x: -0.022733197, y: 0.09799998, z: 0.31992927} + m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 0.9999998} m_Children: - {fileID: 424830} m_Father: {fileID: 416532} @@ -11527,9 +11601,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 173012} - m_LocalRotation: {x: .0300801136, y: .308215857, z: .0553752929, w: .949226975} - m_LocalPosition: {x: -.0250134319, y: 0, z: 7.91624188e-09} - m_LocalScale: {x: 1, y: .999999821, z: 1} + m_LocalRotation: {x: 0.030080114, y: 0.30821586, z: 0.055375293, w: 0.949227} + m_LocalPosition: {x: -0.025013432, y: 0, z: 0.000000007916242} + m_LocalScale: {x: 1, y: 0.9999998, z: 1} m_Children: - {fileID: 463652} m_Father: {fileID: 486168} @@ -11540,9 +11614,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 186886} - m_LocalRotation: {x: .330049455, y: .941488922, z: .0437837504, w: .0524312556} - m_LocalPosition: {x: 5.34868105e-09, y: -3.93643207e-09, z: -2.50836307e-09} - m_LocalScale: {x: .999999642, y: 1.00000012, z: 1} + m_LocalRotation: {x: 0.33004946, y: 0.9414889, z: 0.04378375, w: 0.052431256} + m_LocalPosition: {x: 0.000000005348681, y: -0.000000003936432, z: -0.000000002508363} + m_LocalScale: {x: 0.99999964, y: 1.0000001, z: 1} m_Children: - {fileID: 479922} m_Father: {fileID: 447564} @@ -11553,8 +11627,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 179916} - m_LocalRotation: {x: 2.04890966e-08, y: -2.23517418e-08, z: 9.31323019e-10, w: 1} - m_LocalPosition: {x: -5.21540642e-08, y: -7.63684511e-08, z: -2.60770321e-08} + m_LocalRotation: {x: 0.000000020489097, y: -0.000000022351742, z: 9.31323e-10, w: 1} + m_LocalPosition: {x: -0.000000052154064, y: -0.00000007636845, z: -0.000000026077032} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 489366} @@ -11565,9 +11639,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 165248} - m_LocalRotation: {x: .606006742, y: -.130311146, z: -.305838376, w: .722660184} - m_LocalPosition: {x: .00651649013, y: .0285909418, z: .0177916177} - m_LocalScale: {x: .873918295, y: .999999881, z: .99999994} + m_LocalRotation: {x: 0.60600674, y: -0.13031115, z: -0.30583838, w: 0.7226602} + m_LocalPosition: {x: 0.00651649, y: 0.028590942, z: 0.017791618} + m_LocalScale: {x: 0.8739183, y: 0.9999999, z: 0.99999994} m_Children: [] m_Father: {fileID: 402816} m_RootOrder: 8 @@ -11577,9 +11651,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 169258} - m_LocalRotation: {x: -5.24491455e-08, y: -.694713831, z: 2.16343883e-13, w: .719286263} - m_LocalPosition: {x: -.377266079, y: 2.84322521e-08, z: .0226890668} - m_LocalScale: {x: 1, y: 1.00000012, z: 1} + m_LocalRotation: {x: -0.000000052449145, y: -0.69471383, z: 2.1634388e-13, w: 0.71928626} + m_LocalPosition: {x: -0.37726608, y: 0.000000028432252, z: 0.022689067} + m_LocalScale: {x: 1, y: 1.0000001, z: 1} m_Children: - {fileID: 410026} m_Father: {fileID: 477750} @@ -11590,9 +11664,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 133290} - m_LocalRotation: {x: .77193892, y: -.151679322, z: .461085409, w: .410492301} - m_LocalPosition: {x: 3.27127054e-08, y: -2.14204192e-08, z: -1.11525878e-07} - m_LocalScale: {x: 1, y: .999999762, z: .999999821} + m_LocalRotation: {x: 0.7719389, y: -0.15167932, z: 0.4610854, w: 0.4104923} + m_LocalPosition: {x: 0.000000032712705, y: -0.00000002142042, z: -0.00000011152588} + m_LocalScale: {x: 1, y: 0.99999976, z: 0.9999998} m_Children: - {fileID: 489820} m_Father: {fileID: 478276} @@ -11603,9 +11677,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 170740} - m_LocalRotation: {x: .330049843, y: .941488743, z: .0437837392, w: .0524312779} - m_LocalPosition: {x: .0456446782, y: -.0367953479, z: .00410379097} - m_LocalScale: {x: 1.00000012, y: 1.00000024, z: 1.00000012} + m_LocalRotation: {x: 0.33004984, y: 0.94148874, z: 0.04378374, w: 0.052431278} + m_LocalPosition: {x: 0.04564468, y: -0.036795348, z: 0.004103791} + m_LocalScale: {x: 1.0000001, y: 1.0000002, z: 1.0000001} m_Children: - {fileID: 485204} m_Father: {fileID: 476318} @@ -11616,9 +11690,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 173498} - m_LocalRotation: {x: -1.18743628e-08, y: 7.4505806e-09, z: 1.79279596e-08, w: 1} - m_LocalPosition: {x: 2.98023224e-08, y: 2.42143869e-08, z: 4.47034836e-08} - m_LocalScale: {x: 1, y: 1, z: .99999994} + m_LocalRotation: {x: -0.000000011874363, y: 0.000000007450581, z: 0.00000001792796, + w: 1} + m_LocalPosition: {x: 0.000000029802322, y: 0.000000024214387, z: 0.000000044703484} + m_LocalScale: {x: 1, y: 1, z: 0.99999994} m_Children: [] m_Father: {fileID: 440554} m_RootOrder: 0 @@ -11628,9 +11703,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 116964} - m_LocalRotation: {x: -.0264871251, y: -.062017411, z: .0417827778, w: .996848285} - m_LocalPosition: {x: -.0765088499, y: -.0175805837, z: -.00531714177} - m_LocalScale: {x: 1.00000036, y: .99999994, z: 1} + m_LocalRotation: {x: -0.026487125, y: -0.06201741, z: 0.041782778, w: 0.9968483} + m_LocalPosition: {x: -0.07650885, y: -0.017580584, z: -0.005317142} + m_LocalScale: {x: 1.0000004, y: 0.99999994, z: 1} m_Children: - {fileID: 447076} - {fileID: 432012} @@ -11645,9 +11720,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 151196} - m_LocalRotation: {x: -.330049723, y: .941488743, z: -.0437835939, w: .0524322093} - m_LocalPosition: {x: .0456447266, y: .0367953181, z: .00410391437} - m_LocalScale: {x: 1, y: .99999994, z: 1.00000012} + m_LocalRotation: {x: -0.33004972, y: 0.94148874, z: -0.043783594, w: 0.05243221} + m_LocalPosition: {x: 0.045644727, y: 0.036795318, z: 0.0041039144} + m_LocalScale: {x: 1, y: 0.99999994, z: 1.0000001} m_Children: - {fileID: 426302} m_Father: {fileID: 477260} @@ -11658,9 +11733,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 135464} - m_LocalRotation: {x: -.0718598813, y: .0802187696, z: -.0111567313, w: .994121075} - m_LocalPosition: {x: -.0592358038, y: 2.98023224e-08, z: -5.12227416e-09} - m_LocalScale: {x: 1, y: 1, z: 1.00000012} + m_LocalRotation: {x: -0.07185988, y: 0.08021877, z: -0.011156731, w: 0.9941211} + m_LocalPosition: {x: -0.059235804, y: 0.000000029802322, z: -0.000000005122274} + m_LocalScale: {x: 1, y: 1, z: 1.0000001} m_Children: - {fileID: 464000} - {fileID: 405252} @@ -11673,9 +11748,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 112622} - m_LocalRotation: {x: 3.25962937e-08, y: -1.39698397e-09, z: -9.31322519e-10, w: 1} - m_LocalPosition: {x: -1.32713467e-08, y: 7.97445043e-09, z: 8.38190317e-09} - m_LocalScale: {x: 1, y: .99999994, z: .99999994} + m_LocalRotation: {x: 0.000000032596294, y: -0.000000001396984, z: -9.313225e-10, + w: 1} + m_LocalPosition: {x: -0.000000013271347, y: 0.00000000797445, z: 0.000000008381903} + m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} m_Children: [] m_Father: {fileID: 468046} m_RootOrder: 0 @@ -11685,9 +11761,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 153850} - m_LocalRotation: {x: -7.4505806e-09, y: 1.86264537e-09, z: -1.62981473e-09, w: 1} - m_LocalPosition: {x: -0, y: -3.44589353e-08, z: 2.23517418e-08} - m_LocalScale: {x: .99999994, y: 1, z: .99999994} + m_LocalRotation: {x: -0.000000007450581, y: 0.0000000018626454, z: -0.0000000016298147, + w: 1} + m_LocalPosition: {x: -0, y: -0.000000034458935, z: 0.000000022351742} + m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999994} m_Children: [] m_Father: {fileID: 430802} m_RootOrder: 0 @@ -11697,8 +11774,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 148706} - m_LocalRotation: {x: 2.01876077e-07, y: .703615844, z: -1.47296831e-07, w: .710580528} - m_LocalPosition: {x: -2.31604202e-09, y: 1.81737e-10, z: -1.25059287e-07} + m_LocalRotation: {x: 0.00000020187608, y: 0.70361584, z: -0.00000014729683, w: 0.7105805} + m_LocalPosition: {x: -0.000000002316042, y: 1.81737e-10, z: -0.00000012505929} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 438632} @@ -11709,8 +11786,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 160002} - m_LocalRotation: {x: -1.4542602e-06, y: -3.7252843e-09, z: -4.19095691e-09, w: 1} - m_LocalPosition: {x: -.0208081231, y: -7.4505806e-08, z: 1.35041773e-08} + m_LocalRotation: {x: -0.0000014542602, y: -0.0000000037252843, z: -0.000000004190957, + w: 1} + m_LocalPosition: {x: -0.020808123, y: -0.000000074505806, z: 0.000000013504177} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 406650} @@ -11721,9 +11799,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 167290} - m_LocalRotation: {x: -.00169773004, y: .68059355, z: -.0272614881, w: .732151866} - m_LocalPosition: {x: -1.55098001e-09, y: 0, z: 3.18205977e-08} - m_LocalScale: {x: .99999994, y: .999999762, z: .999999881} + m_LocalRotation: {x: -0.00169773, y: 0.68059355, z: -0.027261488, w: 0.73215187} + m_LocalPosition: {x: -0.00000000155098, y: 0, z: 0.000000031820598} + m_LocalScale: {x: 0.99999994, y: 0.99999976, z: 0.9999999} m_Children: - {fileID: 462546} m_Father: {fileID: 420618} @@ -11734,9 +11812,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 101298} - m_LocalRotation: {x: -.330049068, y: .941488981, z: -.0437835827, w: .0524323024} - m_LocalPosition: {x: .0234403219, y: .09799999, z: -.00142740482} - m_LocalScale: {x: 1.00000024, y: 1.00000024, z: 1.00000012} + m_LocalRotation: {x: -0.33004907, y: 0.941489, z: -0.043783583, w: 0.052432302} + m_LocalPosition: {x: 0.023440322, y: 0.09799999, z: -0.0014274048} + m_LocalScale: {x: 1.0000002, y: 1.0000002, z: 1.0000001} m_Children: - {fileID: 403770} - {fileID: 482052} @@ -11749,8 +11827,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 148700} - m_LocalRotation: {x: -4.00468707e-08, y: 6.80662124e-16, z: -1.6996637e-08, w: 1} - m_LocalPosition: {x: 8.38190317e-09, y: -8.61473382e-09, z: 3.72529008e-09} + m_LocalRotation: {x: -0.00000004004687, y: 6.806621e-16, z: -0.000000016996637, + w: 1} + m_LocalPosition: {x: 0.000000008381903, y: -0.000000008614734, z: 0.00000000372529} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 480000} @@ -11762,9 +11841,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 184382} - m_LocalRotation: {x: 2.53459416e-06, y: -7.45060813e-09, z: -1.0710191e-08, w: 1} - m_LocalPosition: {x: 2.23517418e-08, y: -2.09547579e-08, z: -2.23517418e-08} - m_LocalScale: {x: 1, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: 0.0000025345942, y: -0.000000007450608, z: -0.000000010710191, + w: 1} + m_LocalPosition: {x: 0.000000022351742, y: -0.000000020954758, z: -0.000000022351742} + m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} m_Children: - {fileID: 456878} m_Father: {fileID: 490724} @@ -11775,9 +11855,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 115582} - m_LocalRotation: {x: -.0736008361, y: -.0363713354, z: .0744804069, w: .993837416} - m_LocalPosition: {x: -.058772292, y: -1.3038516e-08, z: 0} - m_LocalScale: {x: 1.00000012, y: 1, z: .99999994} + m_LocalRotation: {x: -0.073600836, y: -0.036371335, z: 0.07448041, w: 0.9938374} + m_LocalPosition: {x: -0.058772292, y: -0.000000013038516, z: 0} + m_LocalScale: {x: 1.0000001, y: 1, z: 0.99999994} m_Children: [] m_Father: {fileID: 403770} m_RootOrder: 0 @@ -11787,9 +11867,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 105478} - m_LocalRotation: {x: .450195074, y: .368021011, z: -.236180991, w: .778526485} - m_LocalPosition: {x: -.1877487, y: 0, z: -1.95577741e-08} - m_LocalScale: {x: .994902909, y: .992295086, z: 1.01650572} + m_LocalRotation: {x: 0.45019507, y: 0.368021, z: -0.23618099, w: 0.7785265} + m_LocalPosition: {x: -0.1877487, y: 0, z: -0.000000019557774} + m_LocalScale: {x: 0.9949029, y: 0.9922951, z: 1.0165057} m_Children: - {fileID: 485286} - {fileID: 402816} @@ -11805,9 +11885,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146324} - m_LocalRotation: {x: -1.03629134e-07, y: -.0484600328, z: -5.72532457e-08, w: .998825133} - m_LocalPosition: {x: -.195924193, y: -2.98340597e-09, z: 3.17057991e-10} - m_LocalScale: {x: 1.00000012, y: 1, z: 1.00000012} + m_LocalRotation: {x: -0.000000103629134, y: -0.048460033, z: -0.000000057253246, + w: 0.99882513} + m_LocalPosition: {x: -0.1959242, y: -0.000000002983406, z: 3.17058e-10} + m_LocalScale: {x: 1.0000001, y: 1, z: 1.0000001} m_Children: - {fileID: 426732} m_Father: {fileID: 454864} @@ -11818,9 +11899,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 151032} - m_LocalRotation: {x: .771931827, y: -.151670352, z: .461097598, w: .4104954} - m_LocalPosition: {x: 6.46105036e-08, y: -1.95577741e-08, z: -2.46916898e-07} - m_LocalScale: {x: 1.05265844, y: .974666476, z: .974666893} + m_LocalRotation: {x: 0.7719318, y: -0.15167035, z: 0.4610976, w: 0.4104954} + m_LocalPosition: {x: 0.000000064610504, y: -0.000000019557774, z: -0.0000002469169} + m_LocalScale: {x: 1.0526584, y: 0.9746665, z: 0.9746669} m_Children: [] m_Father: {fileID: 478276} m_RootOrder: 4 @@ -11830,9 +11911,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 190642} - m_LocalRotation: {x: -.264865965, y: .963481665, z: .0305688549, w: .0247915164} - m_LocalPosition: {x: .0912894458, y: .0735906512, z: .00820782501} - m_LocalScale: {x: .999999881, y: 1.00000012, z: .999999881} + m_LocalRotation: {x: -0.26486596, y: 0.96348166, z: 0.030568855, w: 0.024791516} + m_LocalPosition: {x: 0.091289446, y: 0.07359065, z: 0.008207825} + m_LocalScale: {x: 0.9999999, y: 1.0000001, z: 0.9999999} m_Children: - {fileID: 446118} m_Father: {fileID: 477260} @@ -11843,8 +11924,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 163290} - m_LocalRotation: {x: -3.60410486e-15, y: 7.10349019e-15, z: -1.33517687e-15, w: 1} - m_LocalPosition: {x: .0234402772, y: -.0980000049, z: -.00142736849} + m_LocalRotation: {x: -3.604105e-15, y: 7.10349e-15, z: -1.3351769e-15, w: 1} + m_LocalPosition: {x: 0.023440277, y: -0.098000005, z: -0.0014273685} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 474682} @@ -11855,9 +11936,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 124160} - m_LocalRotation: {x: 1.71735905e-06, y: 4.65668726e-10, z: 4.30736646e-09, w: 1} - m_LocalPosition: {x: -.0168143772, y: -7.4505806e-09, z: 7.07805157e-08} - m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} + m_LocalRotation: {x: 0.000001717359, y: 4.656687e-10, z: 0.0000000043073665, w: 1} + m_LocalPosition: {x: -0.016814377, y: -0.000000007450581, z: 0.000000070780516} + m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} m_Children: [] m_Father: {fileID: 448370} m_RootOrder: 0 @@ -11867,9 +11948,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 185332} - m_LocalRotation: {x: 7.54979013e-08, y: 1, z: -4.37113954e-08, w: 1.33158053e-07} - m_LocalPosition: {x: .988655031, y: -.0290275961, z: .00810057297} - m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1.00000012} + m_LocalRotation: {x: 0.0000000754979, y: 1, z: -0.000000043711395, w: 0.00000013315805} + m_LocalPosition: {x: 0.98865503, y: -0.029027596, z: 0.008100573} + m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001} m_Children: [] m_Father: {fileID: 466826} m_RootOrder: 0 @@ -11879,9 +11960,10 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 121616} - m_LocalRotation: {x: -9.93938158e-08, y: -.0484603457, z: 2.02891446e-08, w: .998825133} - m_LocalPosition: {x: -.195924178, y: 4.33257696e-09, z: -1.10880052e-08} - m_LocalScale: {x: 1, y: .99999994, z: 1} + m_LocalRotation: {x: -0.000000099393816, y: -0.048460346, z: 0.000000020289145, + w: 0.99882513} + m_LocalPosition: {x: -0.19592418, y: 0.000000004332577, z: -0.000000011088005} + m_LocalScale: {x: 1, y: 0.99999994, z: 1} m_Children: [] m_Father: {fileID: 469096} m_RootOrder: 0 @@ -11903,8 +11985,10 @@ MeshRenderer: m_ProbeAnchor: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_AutoUVMaxDistance: .5 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 @@ -11925,7 +12009,7 @@ Rigidbody: serializedVersion: 2 m_Mass: 1 m_Drag: 0 - m_AngularDrag: .0500000007 + m_AngularDrag: 0.05 m_UseGravity: 0 m_IsKinematic: 1 m_Interpolate: 0 @@ -11964,6 +12048,23 @@ MonoBehaviour: m_BlockingMask: serializedVersion: 2 m_Bits: 4294967295 +--- !u!114 &11417524 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 167604} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f65255fa7b687e347a71383a6cc713d5, type: 3} + m_Name: + m_EditorClassIdentifier: + HUDRoot: {fileID: 0} + enemy: 0 + friendly: 0 + player: 0 + Other: 0 + Other2: 0 --- !u!114 &11425076 MonoBehaviour: m_ObjectHideFlags: 1 @@ -11997,7 +12098,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0, g: 0, b: .940999985, a: 1} + m_Color: {r: 0, g: 0, b: 0.941, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -12012,6 +12113,7 @@ MonoBehaviour: m_MinSize: 1 m_MaxSize: 40 m_Alignment: 1 + m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 @@ -12026,10 +12128,10 @@ CapsuleCollider: m_Material: {fileID: 0} m_IsTrigger: 0 m_Enabled: 1 - m_Radius: .5 - m_Height: 2.3499999 + m_Radius: 0.5 + m_Height: 2.35 m_Direction: 1 - m_Center: {x: 0, y: 1.22000003, z: 0} + m_Center: {x: 0, y: 1.22, z: 0} --- !u!137 &13776172 SkinnedMeshRenderer: m_ObjectHideFlags: 1 @@ -12048,8 +12150,10 @@ SkinnedMeshRenderer: m_ProbeAnchor: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_AutoUVMaxDistance: .5 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 @@ -12144,8 +12248,8 @@ SkinnedMeshRenderer: m_BlendShapeWeights: [] m_RootBone: {fileID: 417182} m_AABB: - m_Center: {x: -.0351443291, y: -.0142588913, z: .00676804781} - m_Extent: {x: 1.57611346, y: .824644089, z: .752786398} + m_Center: {x: -0.03514433, y: -0.014258891, z: 0.006768048} + m_Extent: {x: 1.5761135, y: 0.8246441, z: 0.7527864} m_DirtyAABB: 0 --- !u!222 &22257718 CanvasRenderer: @@ -12168,8 +12272,10 @@ Canvas: m_ReceivesEvents: 1 m_OverrideSorting: 0 m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 m_SortingLayerID: 0 m_SortingOrder: 0 + m_TargetDisplay: 0 --- !u!224 &22416086 RectTransform: m_ObjectHideFlags: 1 @@ -12182,11 +12288,11 @@ RectTransform: m_Children: [] m_Father: {fileID: 22475558} m_RootOrder: 0 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 5, y: 1.29999995} - m_Pivot: {x: .5, y: .5} + m_SizeDelta: {x: 5, y: 1.3} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22475558 RectTransform: m_ObjectHideFlags: 1 @@ -12202,9 +12308,9 @@ RectTransform: m_RootOrder: 3 m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 3.70000005} - m_SizeDelta: {x: 5, y: 1.29999995} - m_Pivot: {x: .5, y: .5} + m_AnchoredPosition: {x: 0, y: 3.7} + m_SizeDelta: {x: 5, y: 1.3} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1001 &100100000 Prefab: m_ObjectHideFlags: 1 diff --git a/Assets/StriveGame/Res/View/GameWorldPanel.prefab b/Assets/StriveGame/Res/View/GameWorldPanel.prefab index ae26006..8f7d090 100644 --- a/Assets/StriveGame/Res/View/GameWorldPanel.prefab +++ b/Assets/StriveGame/Res/View/GameWorldPanel.prefab @@ -108,6 +108,23 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!1 &121060 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 4 + m_Component: + - 224: {fileID: 22487164} + - 222: {fileID: 22265540} + - 114: {fileID: 11437034} + m_Layer: 5 + m_Name: Text_HP + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 --- !u!1 &121146 GameObject: m_ObjectHideFlags: 1 @@ -125,6 +142,22 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!1 &121698 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 4 + m_Component: + - 224: {fileID: 22421590} + - 114: {fileID: 11453058} + m_Layer: 5 + m_Name: Slider_HP + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 --- !u!1 &122212 GameObject: m_ObjectHideFlags: 0 @@ -160,6 +193,23 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!1 &126336 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 4 + m_Component: + - 224: {fileID: 22492748} + - 222: {fileID: 22222830} + - 114: {fileID: 11458810} + m_Layer: 5 + m_Name: Fill + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 --- !u!1 &126434 GameObject: m_ObjectHideFlags: 0 @@ -213,6 +263,23 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!1 &130662 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 4 + m_Component: + - 224: {fileID: 22489792} + - 222: {fileID: 22230838} + - 114: {fileID: 11445874} + m_Layer: 5 + m_Name: Panel_PalyerHead + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 --- !u!1 &131602 GameObject: m_ObjectHideFlags: 1 @@ -540,6 +607,23 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!1 &170380 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 4 + m_Component: + - 224: {fileID: 22427110} + - 222: {fileID: 22284698} + - 114: {fileID: 11427562} + m_Layer: 5 + m_Name: Text_PlayerName + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 --- !u!1 &170608 GameObject: m_ObjectHideFlags: 0 @@ -593,6 +677,38 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 +--- !u!1 &187850 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 4 + m_Component: + - 224: {fileID: 22442964} + m_Layer: 5 + m_Name: Fill Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &188298 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 4 + m_Component: + - 224: {fileID: 22471442} + - 222: {fileID: 22244938} + - 114: {fileID: 11415784} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 --- !u!1 &188616 GameObject: m_ObjectHideFlags: 0 @@ -700,11 +816,11 @@ MonoBehaviour: m_Transition: 1 m_Colors: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: .960784316, g: .960784316, b: .960784316, a: 1} - m_PressedColor: {r: .784313738, g: .784313738, b: .784313738, a: 1} - m_DisabledColor: {r: .784313738, g: .784313738, b: .784313738, a: .501960814} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 - m_FadeDuration: .100000001 + m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} @@ -752,11 +868,11 @@ MonoBehaviour: m_Transition: 1 m_Colors: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: .960784316, g: .960784316, b: .960784316, a: 1} - m_PressedColor: {r: .784313738, g: .784313738, b: .784313738, a: 1} - m_DisabledColor: {r: .784313738, g: .784313738, b: .784313738, a: .501960814} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 - m_FadeDuration: .100000001 + m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} @@ -817,7 +933,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: .196078435, g: .196078435, b: .196078435, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -832,6 +948,7 @@ MonoBehaviour: m_MinSize: 10 m_MaxSize: 40 m_Alignment: 4 + m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 @@ -857,11 +974,11 @@ MonoBehaviour: m_Transition: 1 m_Colors: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: .960784316, g: .960784316, b: .960784316, a: 1} - m_PressedColor: {r: .784313738, g: .784313738, b: .784313738, a: 1} - m_DisabledColor: {r: .784313738, g: .784313738, b: .784313738, a: .501960814} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 - m_FadeDuration: .100000001 + m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} @@ -901,7 +1018,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: .196078435, g: .196078435, b: .196078435, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -916,11 +1033,39 @@ MonoBehaviour: m_MinSize: 10 m_MaxSize: 40 m_Alignment: 4 + m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 m_Text: "\u5207\u6362" +--- !u!114 &11415784 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 188298} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 --- !u!114 &11420812 MonoBehaviour: m_ObjectHideFlags: 1 @@ -971,7 +1116,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: .39199999} + m_Color: {r: 1, g: 1, b: 1, a: 0.392} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -998,7 +1143,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: .196078435, g: .196078435, b: .196078435, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1013,11 +1158,45 @@ MonoBehaviour: m_MinSize: 10 m_MaxSize: 40 m_Alignment: 4 + m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 m_Text: "\u6CBB\u7597" +--- !u!114 &11427562 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 170380} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 24 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u672A\u77E5\u751F\u7269" --- !u!114 &11428792 MonoBehaviour: m_ObjectHideFlags: 1 @@ -1038,11 +1217,11 @@ MonoBehaviour: m_Transition: 1 m_Colors: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: .960784316, g: .960784316, b: .960784316, a: 1} - m_PressedColor: {r: .784313738, g: .784313738, b: .784313738, a: 1} - m_DisabledColor: {r: .784313738, g: .784313738, b: .784313738, a: .501960814} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 - m_FadeDuration: .100000001 + m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} @@ -1082,7 +1261,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: .196078435, g: .196078435, b: .196078435, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1097,6 +1276,7 @@ MonoBehaviour: m_MinSize: 10 m_MaxSize: 40 m_Alignment: 4 + m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 @@ -1156,6 +1336,39 @@ MonoBehaviour: m_FillAmount: 1 m_FillClockwise: 1 m_FillOrigin: 0 +--- !u!114 &11437034 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 121060} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 100/100 --- !u!114 &11442554 MonoBehaviour: m_ObjectHideFlags: 1 @@ -1168,7 +1381,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: .39199999} + m_Color: {r: 1, g: 1, b: 1, a: 0.392} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1195,7 +1408,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: .196078435, g: .196078435, b: .196078435, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1210,6 +1423,7 @@ MonoBehaviour: m_MinSize: 10 m_MaxSize: 40 m_Alignment: 4 + m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 @@ -1235,11 +1449,11 @@ MonoBehaviour: m_Transition: 1 m_Colors: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: .960784316, g: .960784316, b: .960784316, a: 1} - m_PressedColor: {r: .784313738, g: .784313738, b: .784313738, a: 1} - m_DisabledColor: {r: .784313738, g: .784313738, b: .784313738, a: .501960814} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 - m_FadeDuration: .100000001 + m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} @@ -1267,6 +1481,33 @@ MonoBehaviour: m_CallState: 2 m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null +--- !u!114 &11445874 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 130662} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 --- !u!114 &11446196 MonoBehaviour: m_ObjectHideFlags: 1 @@ -1376,7 +1617,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: .196078435, g: .196078435, b: .196078435, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1391,11 +1632,60 @@ MonoBehaviour: m_MinSize: 10 m_MaxSize: 40 m_Alignment: 4 + m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 m_Text: "\u62FE\u53D6" +--- !u!114 &11453058 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 121698} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -113659843, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 0 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 0} + m_FillRect: {fileID: 22492748} + m_HandleRect: {fileID: 0} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 100 + m_WholeNumbers: 0 + m_Value: 10 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Slider+SliderEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null --- !u!114 &11453976 MonoBehaviour: m_ObjectHideFlags: 1 @@ -1443,11 +1733,11 @@ MonoBehaviour: m_Transition: 1 m_Colors: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: .960784316, g: .960784316, b: .960784316, a: 1} - m_PressedColor: {r: .784313738, g: .784313738, b: .784313738, a: 1} - m_DisabledColor: {r: .784313738, g: .784313738, b: .784313738, a: .501960814} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 - m_FadeDuration: .100000001 + m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} @@ -1495,11 +1785,11 @@ MonoBehaviour: m_Transition: 1 m_Colors: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: .960784316, g: .960784316, b: .960784316, a: 1} - m_PressedColor: {r: .784313738, g: .784313738, b: .784313738, a: 1} - m_DisabledColor: {r: .784313738, g: .784313738, b: .784313738, a: .501960814} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 - m_FadeDuration: .100000001 + m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} @@ -1547,11 +1837,11 @@ MonoBehaviour: m_Transition: 1 m_Colors: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: .960784316, g: .960784316, b: .960784316, a: 1} - m_PressedColor: {r: .784313738, g: .784313738, b: .784313738, a: 1} - m_DisabledColor: {r: .784313738, g: .784313738, b: .784313738, a: .501960814} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 - m_FadeDuration: .100000001 + m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} @@ -1579,6 +1869,33 @@ MonoBehaviour: m_CallState: 2 m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null +--- !u!114 &11458810 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 126336} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.9485294, g: 0.048821356, b: 0.048821356, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 --- !u!114 &11460118 MonoBehaviour: m_ObjectHideFlags: 1 @@ -1618,7 +1935,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: .196078435, g: .196078435, b: .196078435, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1633,6 +1950,7 @@ MonoBehaviour: m_MinSize: 10 m_MaxSize: 40 m_Alignment: 0 + m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 @@ -1650,7 +1968,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: .196078435, g: .196078435, b: .196078435, a: .5} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1665,6 +1983,7 @@ MonoBehaviour: m_MinSize: 10 m_MaxSize: 40 m_Alignment: 0 + m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 @@ -1697,6 +2016,7 @@ MonoBehaviour: m_MinSize: 10 m_MaxSize: 40 m_Alignment: 6 + m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 1 @@ -1714,7 +2034,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: .196078435, g: .196078435, b: .196078435, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1729,6 +2049,7 @@ MonoBehaviour: m_MinSize: 10 m_MaxSize: 40 m_Alignment: 4 + m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 @@ -1754,11 +2075,11 @@ MonoBehaviour: m_Transition: 1 m_Colors: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: .960784316, g: .960784316, b: .960784316, a: 1} - m_PressedColor: {r: .784313738, g: .784313738, b: .784313738, a: 1} - m_DisabledColor: {r: .784313738, g: .784313738, b: .784313738, a: .501960814} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 - m_FadeDuration: .100000001 + m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} @@ -1798,7 +2119,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: .196078435, g: .196078435, b: .196078435, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1813,6 +2134,7 @@ MonoBehaviour: m_MinSize: 10 m_MaxSize: 40 m_Alignment: 4 + m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 @@ -1838,11 +2160,11 @@ MonoBehaviour: m_Transition: 1 m_Colors: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: .960784316, g: .960784316, b: .960784316, a: 1} - m_PressedColor: {r: .784313738, g: .784313738, b: .784313738, a: 1} - m_DisabledColor: {r: .784313738, g: .784313738, b: .784313738, a: .501960814} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 - m_FadeDuration: .100000001 + m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} @@ -1864,19 +2186,23 @@ MonoBehaviour: m_HideMobileInput: 0 m_CharacterValidation: 0 m_CharacterLimit: 0 - m_EndEdit: + m_OnEndEdit: m_PersistentCalls: m_Calls: [] m_TypeName: UnityEngine.UI.InputField+SubmitEvent, UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_OnValueChange: + m_OnValueChanged: m_PersistentCalls: m_Calls: [] m_TypeName: UnityEngine.UI.InputField+OnChangeEvent, UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_SelectionColor: {r: .65882355, g: .807843149, b: 1, a: .752941191} + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} m_Text: - m_CaretBlinkRate: .850000024 + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 --- !u!114 &11469200 MonoBehaviour: m_ObjectHideFlags: 1 @@ -1923,8 +2249,8 @@ MonoBehaviour: m_Calls: [] m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} - m_Type: 1 + m_Sprite: {fileID: 10913, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 @@ -1951,11 +2277,11 @@ MonoBehaviour: m_Transition: 1 m_Colors: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: .960784316, g: .960784316, b: .960784316, a: 1} - m_PressedColor: {r: .784313738, g: .784313738, b: .784313738, a: 1} - m_DisabledColor: {r: .784313738, g: .784313738, b: .784313738, a: .501960814} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 - m_FadeDuration: .100000001 + m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} @@ -2003,11 +2329,11 @@ MonoBehaviour: m_Transition: 1 m_Colors: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: .960784316, g: .960784316, b: .960784316, a: 1} - m_PressedColor: {r: .784313738, g: .784313738, b: .784313738, a: 1} - m_DisabledColor: {r: .784313738, g: .784313738, b: .784313738, a: .501960814} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 - m_FadeDuration: .100000001 + m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} @@ -2047,7 +2373,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: .196078435, g: .196078435, b: .196078435, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -2062,6 +2388,7 @@ MonoBehaviour: m_MinSize: 10 m_MaxSize: 40 m_Alignment: 4 + m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 @@ -2121,9 +2448,9 @@ MonoBehaviour: m_Horizontal: 0 m_Vertical: 1 m_MovementType: 1 - m_Elasticity: .100000001 + m_Elasticity: 0.1 m_Inertia: 1 - m_DecelerationRate: .135000005 + m_DecelerationRate: 0.135 m_ScrollSensitivity: 1 m_Viewport: {fileID: 22483452} m_HorizontalScrollbar: {fileID: 0} @@ -2149,7 +2476,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: .196078435, g: .196078435, b: .196078435, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -2164,6 +2491,7 @@ MonoBehaviour: m_MinSize: 10 m_MaxSize: 40 m_Alignment: 4 + m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 @@ -2223,6 +2551,7 @@ MonoBehaviour: m_MinSize: 10 m_MaxSize: 40 m_Alignment: 1 + m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 @@ -2248,11 +2577,11 @@ MonoBehaviour: m_Transition: 1 m_Colors: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: .960784316, g: .960784316, b: .960784316, a: 1} - m_PressedColor: {r: .784313738, g: .784313738, b: .784313738, a: 1} - m_DisabledColor: {r: .784313738, g: .784313738, b: .784313738, a: .501960814} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 - m_FadeDuration: .100000001 + m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} @@ -2292,7 +2621,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: .196078435, g: .196078435, b: .196078435, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -2307,6 +2636,7 @@ MonoBehaviour: m_MinSize: 10 m_MaxSize: 40 m_Alignment: 4 + m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 @@ -2351,7 +2681,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: .196078435, g: .196078435, b: .196078435, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -2366,6 +2696,7 @@ MonoBehaviour: m_MinSize: 10 m_MaxSize: 40 m_Alignment: 4 + m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 @@ -2383,7 +2714,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: .196078435, g: .196078435, b: .196078435, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -2398,6 +2729,7 @@ MonoBehaviour: m_MinSize: 10 m_MaxSize: 40 m_Alignment: 0 + m_AlignByGeometry: 0 m_RichText: 0 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 @@ -2415,7 +2747,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: .196078435, g: .196078435, b: .196078435, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -2430,6 +2762,7 @@ MonoBehaviour: m_MinSize: 10 m_MaxSize: 40 m_Alignment: 0 + m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 @@ -2503,11 +2836,11 @@ MonoBehaviour: m_Transition: 1 m_Colors: m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: .960784316, g: .960784316, b: .960784316, a: 1} - m_PressedColor: {r: .784313738, g: .784313738, b: .784313738, a: 1} - m_DisabledColor: {r: .784313738, g: .784313738, b: .784313738, a: .501960814} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 - m_FadeDuration: .100000001 + m_FadeDuration: 0.1 m_SpriteState: m_HighlightedSprite: {fileID: 0} m_PressedSprite: {fileID: 0} @@ -2604,6 +2937,12 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 111386} +--- !u!222 &22222830 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 126336} --- !u!222 &22224518 CanvasRenderer: m_ObjectHideFlags: 1 @@ -2628,6 +2967,12 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 130298} +--- !u!222 &22230838 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 130662} --- !u!222 &22233932 CanvasRenderer: m_ObjectHideFlags: 1 @@ -2676,6 +3021,12 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 153570} +--- !u!222 &22244938 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 188298} --- !u!222 &22248262 CanvasRenderer: m_ObjectHideFlags: 1 @@ -2712,6 +3063,12 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 169330} +--- !u!222 &22265540 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 121060} --- !u!222 &22266666 CanvasRenderer: m_ObjectHideFlags: 1 @@ -2766,6 +3123,12 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 151958} +--- !u!222 &22284698 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 170380} --- !u!222 &22289126 CanvasRenderer: m_ObjectHideFlags: 1 @@ -2793,8 +3156,10 @@ Canvas: m_ReceivesEvents: 1 m_OverrideSorting: 0 m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 m_SortingLayerID: 0 m_SortingOrder: 0 + m_TargetDisplay: 0 --- !u!224 &22400214 RectTransform: m_ObjectHideFlags: 1 @@ -2811,7 +3176,7 @@ RectTransform: m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22402788 RectTransform: m_ObjectHideFlags: 1 @@ -2824,11 +3189,11 @@ RectTransform: m_Children: [] m_Father: {fileID: 22452346} m_RootOrder: 6 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} - m_AnchoredPosition: {x: 9.53674316e-07, y: 54.9999924} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0.0000009536743, y: 54.999992} m_SizeDelta: {x: 387, y: 200} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22403676 RectTransform: m_ObjectHideFlags: 1 @@ -2845,7 +3210,7 @@ RectTransform: m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22405500 RectTransform: m_ObjectHideFlags: 1 @@ -2862,7 +3227,7 @@ RectTransform: m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22406016 RectTransform: m_ObjectHideFlags: 1 @@ -2876,11 +3241,11 @@ RectTransform: - {fileID: 22407814} m_Father: {fileID: 22452346} m_RootOrder: 8 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} - m_AnchoredPosition: {x: 50, y: 172} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 175, y: 172} m_SizeDelta: {x: 50, y: 50} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22407814 RectTransform: m_ObjectHideFlags: 1 @@ -2897,7 +3262,7 @@ RectTransform: m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22412938 RectTransform: m_ObjectHideFlags: 1 @@ -2914,7 +3279,7 @@ RectTransform: m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22416178 RectTransform: m_ObjectHideFlags: 1 @@ -2931,7 +3296,7 @@ RectTransform: m_AnchorMin: {x: 1, y: 0} m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 20, y: -1.52590001e-05} + m_SizeDelta: {x: 20, y: -0.000015259} m_Pivot: {x: 1, y: 1} --- !u!224 &22416802 RectTransform: @@ -2949,7 +3314,26 @@ RectTransform: m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22421590 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 121698} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22471442} + - {fileID: 22442964} + m_Father: {fileID: 22489792} + m_RootOrder: 1 + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -10} + m_SizeDelta: {x: 160, y: 30} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22424580 RectTransform: m_ObjectHideFlags: 1 @@ -2966,7 +3350,7 @@ RectTransform: m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22424880 RectTransform: m_ObjectHideFlags: 1 @@ -2980,11 +3364,11 @@ RectTransform: - {fileID: 22424580} m_Father: {fileID: 22452346} m_RootOrder: 10 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} - m_AnchoredPosition: {x: -50, y: 172} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 74, y: 172} m_SizeDelta: {x: 50, y: 50} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22426174 RectTransform: m_ObjectHideFlags: 1 @@ -2999,11 +3383,28 @@ RectTransform: - {fileID: 22457952} m_Father: {fileID: 22452346} m_RootOrder: 5 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} - m_AnchoredPosition: {x: -1.52587891e-05, y: 13} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -0.000015258789, y: 13} m_SizeDelta: {x: 150, y: 100} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22427110 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 170380} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22489792} + m_RootOrder: 0 + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 9} + m_SizeDelta: {x: 160, y: 30} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22427760 RectTransform: m_ObjectHideFlags: 1 @@ -3020,7 +3421,7 @@ RectTransform: m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22431186 RectTransform: m_ObjectHideFlags: 1 @@ -3035,11 +3436,11 @@ RectTransform: - {fileID: 22416178} m_Father: {fileID: 22452346} m_RootOrder: 2 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: -2, y: -128} - m_SizeDelta: {x: 221, y: 68.4000015} - m_Pivot: {x: .5, y: .5} + m_SizeDelta: {x: 221, y: 68.4} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22435452 RectTransform: m_ObjectHideFlags: 1 @@ -3053,11 +3454,11 @@ RectTransform: - {fileID: 22486490} m_Father: {fileID: 22452346} m_RootOrder: 9 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} - m_AnchoredPosition: {x: 5.24520874e-06, y: 172} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 124, y: 172} m_SizeDelta: {x: 50, y: 50} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22435984 RectTransform: m_ObjectHideFlags: 1 @@ -3072,9 +3473,27 @@ RectTransform: m_RootOrder: 1 m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -.5} + m_AnchoredPosition: {x: 0, y: -0.5} m_SizeDelta: {x: -20, y: -13} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22442964 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 187850} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22492748} + m_Father: {fileID: 22421590} + m_RootOrder: 1 + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: -5, y: 0} + m_SizeDelta: {x: -20, y: 0} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22444150 RectTransform: m_ObjectHideFlags: 1 @@ -3088,11 +3507,11 @@ RectTransform: - {fileID: 22491866} m_Father: {fileID: 22452346} m_RootOrder: 15 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} - m_AnchoredPosition: {x: 233.000031, y: -153.5} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 233.00003, y: -153.5} m_SizeDelta: {x: 60, y: 60} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22449566 RectTransform: m_ObjectHideFlags: 1 @@ -3109,7 +3528,7 @@ RectTransform: m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22452346 RectTransform: m_ObjectHideFlags: 1 @@ -3136,6 +3555,7 @@ RectTransform: - {fileID: 22492072} - {fileID: 22499658} - {fileID: 22444150} + - {fileID: 22489792} m_Father: {fileID: 0} m_RootOrder: 0 m_AnchorMin: {x: 0, y: 0} @@ -3157,9 +3577,9 @@ RectTransform: m_RootOrder: 0 m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -.5} + m_AnchoredPosition: {x: 0, y: -0.5} m_SizeDelta: {x: -20, y: -13} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22457952 RectTransform: m_ObjectHideFlags: 1 @@ -3173,11 +3593,11 @@ RectTransform: - {fileID: 22400214} m_Father: {fileID: 22426174} m_RootOrder: 1 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} - m_AnchoredPosition: {x: 0, y: -65.0999985} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -65.1} m_SizeDelta: {x: 150, y: 30} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22463098 RectTransform: m_ObjectHideFlags: 1 @@ -3191,11 +3611,11 @@ RectTransform: - {fileID: 22469648} m_Father: {fileID: 22452346} m_RootOrder: 7 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} - m_AnchoredPosition: {x: 100.000015, y: 172} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 225, y: 172} m_SizeDelta: {x: 50, y: 50} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22469648 RectTransform: m_ObjectHideFlags: 1 @@ -3212,7 +3632,24 @@ RectTransform: m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22471442 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 188298} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22421590} + m_RootOrder: 0 + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: -5, y: 0} + m_SizeDelta: {x: -10, y: 4} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22473290 RectTransform: m_ObjectHideFlags: 1 @@ -3225,11 +3662,11 @@ RectTransform: m_Children: [] m_Father: {fileID: 22426174} m_RootOrder: 0 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} - m_AnchoredPosition: {x: 0, y: 35.0000076} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 35.000008} m_SizeDelta: {x: 150, y: 30} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22476650 RectTransform: m_ObjectHideFlags: 1 @@ -3238,16 +3675,16 @@ RectTransform: m_GameObject: {fileID: 170608} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1.09057236, y: 1.09057212, z: 1.09057212} + m_LocalScale: {x: 1.0905724, y: 1.0905721, z: 1.0905721} m_Children: - {fileID: 22405500} m_Father: {fileID: 22452346} m_RootOrder: 11 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} - m_AnchoredPosition: {x: -335, y: -46.1469994} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -335, y: -75} m_SizeDelta: {x: 41, y: 29} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22477492 RectTransform: m_ObjectHideFlags: 1 @@ -3261,11 +3698,11 @@ RectTransform: - {fileID: 22403676} m_Father: {fileID: 22452346} m_RootOrder: 12 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} - m_AnchoredPosition: {x: 312.25, y: -30.0000153} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 312.25, y: -30.000015} m_SizeDelta: {x: 61.5, y: 30} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22478766 RectTransform: m_ObjectHideFlags: 1 @@ -3279,11 +3716,11 @@ RectTransform: - {fileID: 22427760} m_Father: {fileID: 22452346} m_RootOrder: 3 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} - m_AnchoredPosition: {x: 150, y: 172} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 275, y: 172} m_SizeDelta: {x: 50, y: 50} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22482252 RectTransform: m_ObjectHideFlags: 1 @@ -3296,11 +3733,11 @@ RectTransform: m_Children: [] m_Father: {fileID: 22452346} m_RootOrder: 4 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 303, y: 111} m_SizeDelta: {x: 105, y: 26} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22482538 RectTransform: m_ObjectHideFlags: 1 @@ -3314,11 +3751,11 @@ RectTransform: - {fileID: 22449566} m_Father: {fileID: 22452346} m_RootOrder: 0 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 83, y: -178} - m_SizeDelta: {x: 50.2000008, y: 31.6000004} - m_Pivot: {x: .5, y: .5} + m_SizeDelta: {x: 50.2, y: 31.6} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22483332 RectTransform: m_ObjectHideFlags: 1 @@ -3336,7 +3773,7 @@ RectTransform: m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: -20, y: -20} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22483452 RectTransform: m_ObjectHideFlags: 1 @@ -3371,7 +3808,7 @@ RectTransform: m_AnchorMax: {x: 0, y: 0} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 20, y: 20} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22486490 RectTransform: m_ObjectHideFlags: 1 @@ -3388,7 +3825,44 @@ RectTransform: m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22487164 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 121060} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: -12} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22489792} + m_RootOrder: 2 + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 39, y: -18} + m_SizeDelta: {x: 160, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22489792 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 130662} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22427110} + - {fileID: 22421590} + - {fileID: 22487164} + m_Father: {fileID: 22452346} + m_RootOrder: 16 + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -268.5, y: -24} + m_SizeDelta: {x: -537, y: 45} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22491164 RectTransform: m_ObjectHideFlags: 1 @@ -3403,11 +3877,11 @@ RectTransform: - {fileID: 22435984} m_Father: {fileID: 22452346} m_RootOrder: 1 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: -33, y: -178} m_SizeDelta: {x: 160, y: 30} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22491866 RectTransform: m_ObjectHideFlags: 1 @@ -3424,7 +3898,7 @@ RectTransform: m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22492072 RectTransform: m_ObjectHideFlags: 1 @@ -3438,11 +3912,28 @@ RectTransform: - {fileID: 22412938} m_Father: {fileID: 22452346} m_RootOrder: 13 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 303, y: -144} m_SizeDelta: {x: 80, y: 79} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22492748 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 126336} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22442964} + m_RootOrder: 0 + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22494712 RectTransform: m_ObjectHideFlags: 1 @@ -3457,8 +3948,8 @@ RectTransform: m_RootOrder: 0 m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -7.62939453e-06} - m_SizeDelta: {x: 0, y: 66.9899979} + m_AnchoredPosition: {x: 0, y: -0.0000076293945} + m_SizeDelta: {x: 0, y: 66.99} m_Pivot: {x: 0, y: 1} --- !u!224 &22499658 RectTransform: @@ -3473,11 +3964,11 @@ RectTransform: - {fileID: 22416802} m_Father: {fileID: 22452346} m_RootOrder: 14 - m_AnchorMin: {x: .5, y: .5} - m_AnchorMax: {x: .5, y: .5} - m_AnchoredPosition: {x: 312.25, y: -80.6470032} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 312.25, y: -80.647} m_SizeDelta: {x: 60, y: 60} - m_Pivot: {x: .5, y: .5} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1001 &100100000 Prefab: m_ObjectHideFlags: 1 diff --git a/Assets/StriveGame/Res/View/MessageBoxPanel.prefab b/Assets/StriveGame/Res/View/MessageBoxPanel.prefab new file mode 100644 index 0000000..c609b86 --- /dev/null +++ b/Assets/StriveGame/Res/View/MessageBoxPanel.prefab @@ -0,0 +1,664 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &117290 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 4 + m_Component: + - 224: {fileID: 22421182} + - 222: {fileID: 22299012} + - 114: {fileID: 11457588} + - 114: {fileID: 11461900} + m_Layer: 0 + m_Name: Button_OK + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &129542 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 4 + m_Component: + - 224: {fileID: 22496636} + - 222: {fileID: 22237462} + - 114: {fileID: 11406382} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &145368 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 4 + m_Component: + - 224: {fileID: 22406878} + - 222: {fileID: 22270948} + - 114: {fileID: 11428742} + - 114: {fileID: 11423206} + m_Layer: 0 + m_Name: Button_Cancle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &149860 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 4 + m_Component: + - 224: {fileID: 22498166} + - 222: {fileID: 22206630} + - 114: {fileID: 11475770} + m_Layer: 0 + m_Name: Text_Content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &159406 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 4 + m_Component: + - 224: {fileID: 22459256} + - 222: {fileID: 22282274} + - 114: {fileID: 11488936} + m_Layer: 0 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &166242 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 4 + m_Component: + - 224: {fileID: 22467812} + - 222: {fileID: 22283120} + - 114: {fileID: 11485388} + m_Layer: 0 + m_Name: MessageBoxPanel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &189572 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 4 + m_Component: + - 224: {fileID: 22428800} + - 222: {fileID: 22212684} + - 114: {fileID: 11409612} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &192324 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 4 + m_Component: + - 224: {fileID: 22409848} + - 222: {fileID: 22201480} + - 114: {fileID: 11443986} + m_Layer: 0 + m_Name: Text_Title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &11406382 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 129542} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 10 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 110 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u786E\u5B9A" +--- !u!114 &11409612 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 189572} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 10 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u53D6\u6D88" +--- !u!114 &11423206 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 145368} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11428742} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11428742 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 145368} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11443986 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 192324} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 24 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 40 + m_Alignment: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u6807\u9898" +--- !u!114 &11457588 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 117290} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11461900 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 117290} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 11457588} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &11475770 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 149860} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 24 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 0 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u63D0\u793A\u4FE1\u606F" +--- !u!114 &11485388 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 166242} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.392} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &11488936 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 159406} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 10754, guid: 0000000000000000e000000000000000, type: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &22201480 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 192324} +--- !u!222 &22206630 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 149860} +--- !u!222 &22212684 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 189572} +--- !u!222 &22237462 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 129542} +--- !u!222 &22270948 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 145368} +--- !u!222 &22282274 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 159406} +--- !u!222 &22283120 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 166242} +--- !u!222 &22299012 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 117290} +--- !u!224 &22406878 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 145368} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.81281936, y: 0.9843704, z: 1} + m_Children: + - {fileID: 22428800} + m_Father: {fileID: 22467812} + m_RootOrder: 2 + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 38.8, y: -58.7} + m_SizeDelta: {x: 45, y: 25} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22409848 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 192324} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.99148786, y: 1.0588416, z: 1} + m_Children: [] + m_Father: {fileID: 22467812} + m_RootOrder: 3 + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -5, y: 66.2} + m_SizeDelta: {x: 240, y: 28} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22421182 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 117290} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.9043443, y: 1.0327119, z: 1} + m_Children: + - {fileID: 22496636} + m_Father: {fileID: 22467812} + m_RootOrder: 1 + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -63, y: -59.6} + m_SizeDelta: {x: 45, y: 25} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22428800 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 189572} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22406878} + m_RootOrder: 0 + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22459256 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 159406} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22467812} + m_RootOrder: 0 + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 260, y: 180} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22467812 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 166242} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 22459256} + - {fileID: 22421182} + - {fileID: 22406878} + - {fileID: 22409848} + - {fileID: 22498166} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0.5} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22496636 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 129542} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22421182} + m_RootOrder: 0 + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &22498166 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 149860} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 22467812} + m_RootOrder: 4 + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -4, y: 2} + m_SizeDelta: {x: 240, y: 80} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 166242} + m_IsPrefabParent: 1 diff --git a/Assets/StriveGame/Scenes/main.unity b/Assets/StriveGame/Scenes/main.unity index 56493bc..699d659 100644 --- a/Assets/StriveGame/Scenes/main.unity +++ b/Assets/StriveGame/Scenes/main.unity @@ -8,25 +8,25 @@ SceneSettings: m_PVSPortalsArray: [] m_OcclusionBakeSettings: smallestOccluder: 5 - smallestHole: .25 + smallestHole: 0.25 backfaceThreshold: 100 --- !u!104 &2 RenderSettings: m_ObjectHideFlags: 0 serializedVersion: 6 m_Fog: 0 - m_FogColor: {r: .5, g: .5, b: .5, a: 1} + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 - m_FogDensity: .00999999978 + m_FogDensity: 0.01 m_LinearFogStart: 0 m_LinearFogEnd: 300 - m_AmbientSkyColor: {r: .200000003, g: .200000003, b: .200000003, a: 1} - m_AmbientEquatorColor: {r: .200000003, g: .200000003, b: .200000003, a: 1} - m_AmbientGroundColor: {r: .200000003, g: .200000003, b: .200000003, a: 1} + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_AmbientEquatorColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_AmbientGroundColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} m_AmbientIntensity: 1 m_AmbientMode: 3 m_SkyboxMaterial: {fileID: 0} - m_HaloStrength: .5 + m_HaloStrength: 0.5 m_FlareStrength: 1 m_FlareFadeSpeed: 3 m_HaloTexture: {fileID: 0} @@ -40,7 +40,7 @@ RenderSettings: --- !u!157 &4 LightmapSettings: m_ObjectHideFlags: 0 - serializedVersion: 5 + serializedVersion: 6 m_GIWorkflowMode: 1 m_LightmapsMode: 1 m_GISettings: @@ -66,7 +66,7 @@ LightmapSettings: m_FinalGather: 0 m_FinalGatherRayCount: 1024 m_ReflectionCompression: 2 - m_LightmapSnapshot: {fileID: 0} + m_LightingDataAsset: {fileID: 0} m_RuntimeCPUUsage: 25 --- !u!196 &5 NavMeshSettings: @@ -74,17 +74,63 @@ NavMeshSettings: m_ObjectHideFlags: 0 m_BuildSettings: serializedVersion: 2 - agentRadius: .5 + agentRadius: 0.5 agentHeight: 2 agentSlope: 45 - agentClimb: .400000006 + agentClimb: 0.4 ledgeDropHeight: 0 maxJumpAcrossDistance: 0 accuratePlacement: 0 minRegionArea: 2 - cellSize: .166666657 + cellSize: 0.16666666 manualCellSize: 0 m_NavMeshData: {fileID: 0} +--- !u!1001 &202511985 +Prefab: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 400000, guid: 33f96eedfff0ffd43be808465075f6ba, type: 2} + propertyPath: m_LocalPosition.x + value: -112.199814 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 33f96eedfff0ffd43be808465075f6ba, type: 2} + propertyPath: m_LocalPosition.y + value: 156.62527 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 33f96eedfff0ffd43be808465075f6ba, type: 2} + propertyPath: m_LocalPosition.z + value: -0.08194733 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 33f96eedfff0ffd43be808465075f6ba, type: 2} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 33f96eedfff0ffd43be808465075f6ba, type: 2} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 33f96eedfff0ffd43be808465075f6ba, type: 2} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 33f96eedfff0ffd43be808465075f6ba, type: 2} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 33f96eedfff0ffd43be808465075f6ba, type: 2} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 11400000, guid: 33f96eedfff0ffd43be808465075f6ba, type: 2} + propertyPath: CanvasParent + value: + objectReference: {fileID: 347587868} + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 100100000, guid: 33f96eedfff0ffd43be808465075f6ba, type: 2} + m_IsPrefabParent: 0 --- !u!1 &216123156 GameObject: m_ObjectHideFlags: 0 @@ -134,14 +180,14 @@ Camera: m_Enabled: 1 serializedVersion: 2 m_ClearFlags: 1 - m_BackGroundColor: {r: .192156866, g: .301960796, b: .474509805, a: .0196078438} + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0.019607844} m_NormalizedViewPortRect: serializedVersion: 2 x: 0 y: 0 width: 1 height: 1 - near clip plane: .300000012 + near clip plane: 0.3 far clip plane: 1000 field of view: 60 orthographic: 0 @@ -157,7 +203,7 @@ Camera: m_HDR: 0 m_OcclusionCulling: 1 m_StereoConvergence: 10 - m_StereoSeparation: .0219999999 + m_StereoSeparation: 0.022 m_StereoMirrorMode: 0 --- !u!4 &216123161 Transform: @@ -166,7 +212,7 @@ Transform: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 216123156} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 68.5243835, y: 93.8657532, z: 12.3004456} + m_LocalPosition: {x: 68.52438, y: 93.86575, z: 12.300446} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 0} @@ -236,7 +282,7 @@ MonoBehaviour: m_UiScaleMode: 1 m_ReferencePixelsPerUnit: 100 m_ScaleFactor: 1 - m_ReferenceResolution: {x: 711, y: 400} + m_ReferenceResolution: {x: 800, y: 600} m_ScreenMatchMode: 0 m_MatchWidthOrHeight: 0 m_PhysicalUnit: 3 @@ -258,8 +304,10 @@ Canvas: m_ReceivesEvents: 1 m_OverrideSorting: 0 m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 m_SortingLayerID: 0 m_SortingOrder: 0 + m_TargetDisplay: 0 --- !u!1 &379554406 GameObject: m_ObjectHideFlags: 0 @@ -306,7 +354,7 @@ MonoBehaviour: m_SubmitButton: Submit m_CancelButton: Cancel m_InputActionsPerSecond: 10 - m_RepeatDelay: .5 + m_RepeatDelay: 0.5 m_ForceModuleActive: 0 --- !u!114 &379554409 MonoBehaviour: @@ -417,7 +465,7 @@ MonoBehaviour: m_Bits: 0 StationnaryTolerance: 25 longTapTime: 1 - swipeTolerance: .850000024 + swipeTolerance: 0.85 minPinchLength: 0 minTwistAngle: 1 enabledNGuiMode: 0 @@ -434,7 +482,7 @@ MonoBehaviour: showGesture: 1 showTwoFinger: 1 showSecondFinger: 1 - secondFingerTexture: {fileID: 0} + secondFingerTexture: {fileID: 2800000, guid: 9cfeb5ae16bf3cc4084255c9ae7cf36f, type: 3} --- !u!4 &967952849 Transform: m_ObjectHideFlags: 0 @@ -481,8 +529,9 @@ Light: m_Type: 0 m_Resolution: -1 m_Strength: 1 - m_Bias: .0500000007 - m_NormalBias: .400000006 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 m_Cookie: {fileID: 0} m_DrawHalo: 0 m_Flare: {fileID: 0} @@ -501,8 +550,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1366073067} - m_LocalRotation: {x: .408217937, y: -.234569728, z: .109381676, w: .875426054} - m_LocalPosition: {x: 0, y: 0, z: -27.5100002} + m_LocalRotation: {x: 0.40821794, y: -0.23456973, z: 0.109381676, w: 0.87542605} + m_LocalPosition: {x: 0, y: 0, z: -27.51} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 0} @@ -516,6 +565,7 @@ GameObject: m_Component: - 4: {fileID: 1485306845} - 114: {fileID: 1485306846} + - 143: {fileID: 1485306847} m_Layer: 0 m_Name: GameJoystick m_TagString: Untagged @@ -530,7 +580,7 @@ Transform: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1485306844} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 2.81723022, y: -45.9748077, z: 48.1837311} + m_LocalPosition: {x: 2.8172302, y: -45.974808, z: 48.18373} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 1754509425} @@ -555,12 +605,12 @@ MonoBehaviour: area: 0 joyAnchor: 7 joystickPositionOffset: {x: 0, y: 0} - zoneRadius: 100 - touchSize: 30 + zoneRadius: 71 + touchSize: 35 deadZone: 20 restrictArea: 0 resetFingerExit: 0 - interaction: 2 + interaction: 3 useBroadcast: 0 messageMode: 0 receiverGameObject: {fileID: 0} @@ -576,7 +626,7 @@ MonoBehaviour: clampXMax: 0 clampXMin: 0 enableXAutoStab: 0 - thresholdX: .00999999978 + thresholdX: 0.01 stabSpeedX: 20 enableYaxis: 1 yAxisTransform: {fileID: 0} @@ -589,7 +639,7 @@ MonoBehaviour: clampYMax: 0 clampYMin: 0 enableYAutoStab: 0 - thresholdY: .00999999978 + thresholdY: 0.01 stabSpeedY: 20 enableSmoothing: 0 smoothing: {x: 2, y: 2} @@ -608,6 +658,23 @@ MonoBehaviour: showInteraction: 1 showAppearance: 1 showPosition: 1 +--- !u!143 &1485306847 +CharacterController: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1485306844} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Height: 2 + m_Radius: 0.5 + m_SlopeLimit: 45 + m_StepOffset: 0.3 + m_SkinWidth: 0.08 + m_MinMoveDistance: 0.001 + m_Center: {x: 0, y: 0, z: 0} --- !u!1 &1594091349 GameObject: m_ObjectHideFlags: 0 @@ -682,7 +749,7 @@ Transform: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1614297447} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 371.000946, y: 169.460724, z: 8.375} + m_LocalPosition: {x: 371.00095, y: 169.46072, z: 8.375} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 0} @@ -709,7 +776,7 @@ Transform: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1754509424} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: -2.81723022, y: 45.9748077, z: -48.1837311} + m_LocalPosition: {x: -2.8172302, y: 45.974808, z: -48.18373} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1485306845} diff --git a/Assets/StriveGame/Scripts/Common/LuaBehaviour.cs b/Assets/StriveGame/Scripts/Common/LuaBehaviour.cs index a6891c0..ca004d5 100644 --- a/Assets/StriveGame/Scripts/Common/LuaBehaviour.cs +++ b/Assets/StriveGame/Scripts/Common/LuaBehaviour.cs @@ -18,6 +18,10 @@ protected void Start() { Util.CallMethod(name, "Start"); } + protected void Update() + { + Util.CallMethod(name, "Tick"); + } protected void OnClick() { Util.CallMethod(name, "OnClick"); } diff --git a/Assets/StriveGame/ToLua/Source/Generate/DelegateFactory.cs b/Assets/StriveGame/ToLua/Source/Generate/DelegateFactory.cs index 1c4c247..182c625 100644 --- a/Assets/StriveGame/ToLua/Source/Generate/DelegateFactory.cs +++ b/Assets/StriveGame/ToLua/Source/Generate/DelegateFactory.cs @@ -1,23 +1,42 @@ -//this source code was auto-generated by tolua#, do not modify it -using System; -using System.Collections.Generic; -using LuaInterface; - -public static class DelegateFactory -{ - delegate Delegate DelegateValue(LuaFunction func); - static Dictionary dict = new Dictionary(); - - static DelegateFactory() - { - Register(); - } - - [NoToLuaAttribute] - public static void Register() - { - dict.Clear(); - } +//this source code was auto-generated by tolua#, do not modify it +using System; +using System.Collections.Generic; +using LuaInterface; + +public static class DelegateFactory +{ + delegate Delegate DelegateValue(LuaFunction func); + static Dictionary dict = new Dictionary(); + + static DelegateFactory() + { + Register(); + } + + [NoToLuaAttribute] + public static void Register() + { + dict.Clear(); + dict.Add(typeof(System.Action), System_Action); + dict.Add(typeof(UnityEngine.Events.UnityAction), UnityEngine_Events_UnityAction); + dict.Add(typeof(UnityEngine.Application.LogCallback), UnityEngine_Application_LogCallback); + dict.Add(typeof(UnityEngine.Application.AdvertisingIdentifierCallback), UnityEngine_Application_AdvertisingIdentifierCallback); + dict.Add(typeof(UnityEngine.Camera.CameraCallback), UnityEngine_Camera_CameraCallback); + dict.Add(typeof(UnityEngine.AudioClip.PCMReaderCallback), UnityEngine_AudioClip_PCMReaderCallback); + dict.Add(typeof(UnityEngine.AudioClip.PCMSetPositionCallback), UnityEngine_AudioClip_PCMSetPositionCallback); + dict.Add(typeof(UnityEngine.RectTransform.ReapplyDrivenProperties), UnityEngine_RectTransform_ReapplyDrivenProperties); + dict.Add(typeof(UnityEngine.UI.InputField.OnValidateInput), UnityEngine_UI_InputField_OnValidateInput); + dict.Add(typeof(System.Action), System_Action_NotiData); + dict.Add(typeof(System.Action), System_Action_UnityEngine_Objects); + dict.Add(typeof(KBEngine.NetworkInterface.ConnectCallback), KBEngine_NetworkInterface_ConnectCallback); + dict.Add(typeof(EasyJoystick.JoystickMoveStartHandler), EasyJoystick_JoystickMoveStartHandler); + dict.Add(typeof(EasyJoystick.JoystickMoveHandler), EasyJoystick_JoystickMoveHandler); + dict.Add(typeof(EasyJoystick.JoystickMoveEndHandler), EasyJoystick_JoystickMoveEndHandler); + dict.Add(typeof(EasyJoystick.JoystickTouchStartHandler), EasyJoystick_JoystickTouchStartHandler); + dict.Add(typeof(EasyJoystick.JoystickTapHandler), EasyJoystick_JoystickTapHandler); + dict.Add(typeof(EasyJoystick.JoystickDoubleTapHandler), EasyJoystick_JoystickDoubleTapHandler); + dict.Add(typeof(EasyJoystick.JoystickTouchUpHandler), EasyJoystick_JoystickTouchUpHandler); + } [NoToLuaAttribute] public static Delegate CreateDelegate(Type t, LuaFunction func = null) @@ -52,6 +71,486 @@ public static Delegate RemoveDelegate(Delegate obj, LuaFunction func) return obj; } - -} - + + class System_Action_Event : LuaDelegate + { + public System_Action_Event(LuaFunction func) : base(func) { } + + public void Call() + { + func.Call(); + } + } + + public static Delegate System_Action(LuaFunction func) + { + if (func == null) + { + System.Action fn = delegate { }; + return fn; + } + + System.Action d = (new System_Action_Event(func)).Call; + return d; + } + + class UnityEngine_Events_UnityAction_Event : LuaDelegate + { + public UnityEngine_Events_UnityAction_Event(LuaFunction func) : base(func) { } + + public void Call() + { + func.Call(); + } + } + + public static Delegate UnityEngine_Events_UnityAction(LuaFunction func) + { + if (func == null) + { + UnityEngine.Events.UnityAction fn = delegate { }; + return fn; + } + + UnityEngine.Events.UnityAction d = (new UnityEngine_Events_UnityAction_Event(func)).Call; + return d; + } + + class UnityEngine_Application_LogCallback_Event : LuaDelegate + { + public UnityEngine_Application_LogCallback_Event(LuaFunction func) : base(func) { } + + public void Call(string param0,string param1,UnityEngine.LogType param2) + { + func.BeginPCall(); + func.Push(param0); + func.Push(param1); + func.Push(param2); + func.PCall(); + func.EndPCall(); + } + } + + public static Delegate UnityEngine_Application_LogCallback(LuaFunction func) + { + if (func == null) + { + UnityEngine.Application.LogCallback fn = delegate { }; + return fn; + } + + UnityEngine.Application.LogCallback d = (new UnityEngine_Application_LogCallback_Event(func)).Call; + return d; + } + + class UnityEngine_Application_AdvertisingIdentifierCallback_Event : LuaDelegate + { + public UnityEngine_Application_AdvertisingIdentifierCallback_Event(LuaFunction func) : base(func) { } + + public void Call(string param0,bool param1,string param2) + { + func.BeginPCall(); + func.Push(param0); + func.Push(param1); + func.Push(param2); + func.PCall(); + func.EndPCall(); + } + } + + public static Delegate UnityEngine_Application_AdvertisingIdentifierCallback(LuaFunction func) + { + if (func == null) + { + UnityEngine.Application.AdvertisingIdentifierCallback fn = delegate { }; + return fn; + } + + UnityEngine.Application.AdvertisingIdentifierCallback d = (new UnityEngine_Application_AdvertisingIdentifierCallback_Event(func)).Call; + return d; + } + + class UnityEngine_Camera_CameraCallback_Event : LuaDelegate + { + public UnityEngine_Camera_CameraCallback_Event(LuaFunction func) : base(func) { } + + public void Call(UnityEngine.Camera param0) + { + func.BeginPCall(); + func.Push(param0); + func.PCall(); + func.EndPCall(); + } + } + + public static Delegate UnityEngine_Camera_CameraCallback(LuaFunction func) + { + if (func == null) + { + UnityEngine.Camera.CameraCallback fn = delegate { }; + return fn; + } + + UnityEngine.Camera.CameraCallback d = (new UnityEngine_Camera_CameraCallback_Event(func)).Call; + return d; + } + + class UnityEngine_AudioClip_PCMReaderCallback_Event : LuaDelegate + { + public UnityEngine_AudioClip_PCMReaderCallback_Event(LuaFunction func) : base(func) { } + + public void Call(float[] param0) + { + func.BeginPCall(); + func.Push(param0); + func.PCall(); + func.EndPCall(); + } + } + + public static Delegate UnityEngine_AudioClip_PCMReaderCallback(LuaFunction func) + { + if (func == null) + { + UnityEngine.AudioClip.PCMReaderCallback fn = delegate { }; + return fn; + } + + UnityEngine.AudioClip.PCMReaderCallback d = (new UnityEngine_AudioClip_PCMReaderCallback_Event(func)).Call; + return d; + } + + class UnityEngine_AudioClip_PCMSetPositionCallback_Event : LuaDelegate + { + public UnityEngine_AudioClip_PCMSetPositionCallback_Event(LuaFunction func) : base(func) { } + + public void Call(int param0) + { + func.BeginPCall(); + func.Push(param0); + func.PCall(); + func.EndPCall(); + } + } + + public static Delegate UnityEngine_AudioClip_PCMSetPositionCallback(LuaFunction func) + { + if (func == null) + { + UnityEngine.AudioClip.PCMSetPositionCallback fn = delegate { }; + return fn; + } + + UnityEngine.AudioClip.PCMSetPositionCallback d = (new UnityEngine_AudioClip_PCMSetPositionCallback_Event(func)).Call; + return d; + } + + class UnityEngine_RectTransform_ReapplyDrivenProperties_Event : LuaDelegate + { + public UnityEngine_RectTransform_ReapplyDrivenProperties_Event(LuaFunction func) : base(func) { } + + public void Call(UnityEngine.RectTransform param0) + { + func.BeginPCall(); + func.Push(param0); + func.PCall(); + func.EndPCall(); + } + } + + public static Delegate UnityEngine_RectTransform_ReapplyDrivenProperties(LuaFunction func) + { + if (func == null) + { + UnityEngine.RectTransform.ReapplyDrivenProperties fn = delegate { }; + return fn; + } + + UnityEngine.RectTransform.ReapplyDrivenProperties d = (new UnityEngine_RectTransform_ReapplyDrivenProperties_Event(func)).Call; + return d; + } + + class UnityEngine_UI_InputField_OnValidateInput_Event : LuaDelegate + { + public UnityEngine_UI_InputField_OnValidateInput_Event(LuaFunction func) : base(func) { } + + public char Call(string param0,int param1,char param2) + { + func.BeginPCall(); + func.Push(param0); + func.Push(param1); + func.Push(param2); + func.PCall(); + char ret = (char)func.CheckNumber(); + func.EndPCall(); + return ret; + } + } + + public static Delegate UnityEngine_UI_InputField_OnValidateInput(LuaFunction func) + { + if (func == null) + { + UnityEngine.UI.InputField.OnValidateInput fn = delegate { return '\0'; }; + return fn; + } + + UnityEngine.UI.InputField.OnValidateInput d = (new UnityEngine_UI_InputField_OnValidateInput_Event(func)).Call; + return d; + } + + class System_Action_NotiData_Event : LuaDelegate + { + public System_Action_NotiData_Event(LuaFunction func) : base(func) { } + + public void Call(NotiData param0) + { + func.BeginPCall(); + func.PushObject(param0); + func.PCall(); + func.EndPCall(); + } + } + + public static Delegate System_Action_NotiData(LuaFunction func) + { + if (func == null) + { + System.Action fn = delegate { }; + return fn; + } + + System.Action d = (new System_Action_NotiData_Event(func)).Call; + return d; + } + + class System_Action_UnityEngine_Objects_Event : LuaDelegate + { + public System_Action_UnityEngine_Objects_Event(LuaFunction func) : base(func) { } + + public void Call(UnityEngine.Object[] param0) + { + func.BeginPCall(); + func.Push(param0); + func.PCall(); + func.EndPCall(); + } + } + + public static Delegate System_Action_UnityEngine_Objects(LuaFunction func) + { + if (func == null) + { + System.Action fn = delegate { }; + return fn; + } + + System.Action d = (new System_Action_UnityEngine_Objects_Event(func)).Call; + return d; + } + + class KBEngine_NetworkInterface_ConnectCallback_Event : LuaDelegate + { + public KBEngine_NetworkInterface_ConnectCallback_Event(LuaFunction func) : base(func) { } + + public void Call(string param0,int param1,bool param2,object param3) + { + func.BeginPCall(); + func.Push(param0); + func.Push(param1); + func.Push(param2); + func.Push(param3); + func.PCall(); + func.EndPCall(); + } + } + + public static Delegate KBEngine_NetworkInterface_ConnectCallback(LuaFunction func) + { + if (func == null) + { + KBEngine.NetworkInterface.ConnectCallback fn = delegate { }; + return fn; + } + + KBEngine.NetworkInterface.ConnectCallback d = (new KBEngine_NetworkInterface_ConnectCallback_Event(func)).Call; + return d; + } + + class EasyJoystick_JoystickMoveStartHandler_Event : LuaDelegate + { + public EasyJoystick_JoystickMoveStartHandler_Event(LuaFunction func) : base(func) { } + + public void Call(MovingJoystick param0) + { + func.BeginPCall(); + func.PushObject(param0); + func.PCall(); + func.EndPCall(); + } + } + + public static Delegate EasyJoystick_JoystickMoveStartHandler(LuaFunction func) + { + if (func == null) + { + EasyJoystick.JoystickMoveStartHandler fn = delegate { }; + return fn; + } + + EasyJoystick.JoystickMoveStartHandler d = (new EasyJoystick_JoystickMoveStartHandler_Event(func)).Call; + return d; + } + + class EasyJoystick_JoystickMoveHandler_Event : LuaDelegate + { + public EasyJoystick_JoystickMoveHandler_Event(LuaFunction func) : base(func) { } + + public void Call(MovingJoystick param0) + { + func.BeginPCall(); + func.PushObject(param0); + func.PCall(); + func.EndPCall(); + } + } + + public static Delegate EasyJoystick_JoystickMoveHandler(LuaFunction func) + { + if (func == null) + { + EasyJoystick.JoystickMoveHandler fn = delegate { }; + return fn; + } + + EasyJoystick.JoystickMoveHandler d = (new EasyJoystick_JoystickMoveHandler_Event(func)).Call; + return d; + } + + class EasyJoystick_JoystickMoveEndHandler_Event : LuaDelegate + { + public EasyJoystick_JoystickMoveEndHandler_Event(LuaFunction func) : base(func) { } + + public void Call(MovingJoystick param0) + { + func.BeginPCall(); + func.PushObject(param0); + func.PCall(); + func.EndPCall(); + } + } + + public static Delegate EasyJoystick_JoystickMoveEndHandler(LuaFunction func) + { + if (func == null) + { + EasyJoystick.JoystickMoveEndHandler fn = delegate { }; + return fn; + } + + EasyJoystick.JoystickMoveEndHandler d = (new EasyJoystick_JoystickMoveEndHandler_Event(func)).Call; + return d; + } + + class EasyJoystick_JoystickTouchStartHandler_Event : LuaDelegate + { + public EasyJoystick_JoystickTouchStartHandler_Event(LuaFunction func) : base(func) { } + + public void Call(MovingJoystick param0) + { + func.BeginPCall(); + func.PushObject(param0); + func.PCall(); + func.EndPCall(); + } + } + + public static Delegate EasyJoystick_JoystickTouchStartHandler(LuaFunction func) + { + if (func == null) + { + EasyJoystick.JoystickTouchStartHandler fn = delegate { }; + return fn; + } + + EasyJoystick.JoystickTouchStartHandler d = (new EasyJoystick_JoystickTouchStartHandler_Event(func)).Call; + return d; + } + + class EasyJoystick_JoystickTapHandler_Event : LuaDelegate + { + public EasyJoystick_JoystickTapHandler_Event(LuaFunction func) : base(func) { } + + public void Call(MovingJoystick param0) + { + func.BeginPCall(); + func.PushObject(param0); + func.PCall(); + func.EndPCall(); + } + } + + public static Delegate EasyJoystick_JoystickTapHandler(LuaFunction func) + { + if (func == null) + { + EasyJoystick.JoystickTapHandler fn = delegate { }; + return fn; + } + + EasyJoystick.JoystickTapHandler d = (new EasyJoystick_JoystickTapHandler_Event(func)).Call; + return d; + } + + class EasyJoystick_JoystickDoubleTapHandler_Event : LuaDelegate + { + public EasyJoystick_JoystickDoubleTapHandler_Event(LuaFunction func) : base(func) { } + + public void Call(MovingJoystick param0) + { + func.BeginPCall(); + func.PushObject(param0); + func.PCall(); + func.EndPCall(); + } + } + + public static Delegate EasyJoystick_JoystickDoubleTapHandler(LuaFunction func) + { + if (func == null) + { + EasyJoystick.JoystickDoubleTapHandler fn = delegate { }; + return fn; + } + + EasyJoystick.JoystickDoubleTapHandler d = (new EasyJoystick_JoystickDoubleTapHandler_Event(func)).Call; + return d; + } + + class EasyJoystick_JoystickTouchUpHandler_Event : LuaDelegate + { + public EasyJoystick_JoystickTouchUpHandler_Event(LuaFunction func) : base(func) { } + + public void Call(MovingJoystick param0) + { + func.BeginPCall(); + func.PushObject(param0); + func.PCall(); + func.EndPCall(); + } + } + + public static Delegate EasyJoystick_JoystickTouchUpHandler(LuaFunction func) + { + if (func == null) + { + EasyJoystick.JoystickTouchUpHandler fn = delegate { }; + return fn; + } + + EasyJoystick.JoystickTouchUpHandler d = (new EasyJoystick_JoystickTouchUpHandler_Event(func)).Call; + return d; + } + +} + diff --git a/Assets/StriveGame/ToLua/Source/Generate/LuaBinder.cs b/Assets/StriveGame/ToLua/Source/Generate/LuaBinder.cs index 74adab0..8cf0594 100644 --- a/Assets/StriveGame/ToLua/Source/Generate/LuaBinder.cs +++ b/Assets/StriveGame/ToLua/Source/Generate/LuaBinder.cs @@ -1,10 +1,469 @@ -using System; -using LuaInterface; - -public static class LuaBinder -{ - public static void Bind(LuaState L) - { - throw new LuaException("Please generate LuaBinder files first!"); - } -} +//this source code was auto-generated by tolua#, do not modify it +using System; +using UnityEngine; +using LuaInterface; + +public static class LuaBinder +{ + public static void Bind(LuaState L) + { + float t = Time.realtimeSinceStartup; + L.BeginModule(null); + DebuggerWrap.Register(L); + EasyJoystickWrap.Register(L); + MovingJoystickWrap.Register(L); + bl_HUDTextWrap.Register(L); + ViewWrap.Register(L); + BaseWrap.Register(L); + ManagerWrap.Register(L); + L.BeginModule("UnityEngine"); + UnityEngine_ComponentWrap.Register(L); + UnityEngine_BehaviourWrap.Register(L); + UnityEngine_MonoBehaviourWrap.Register(L); + UnityEngine_GameObjectWrap.Register(L); + UnityEngine_TransformWrap.Register(L); + UnityEngine_TrackedReferenceWrap.Register(L); + UnityEngine_ApplicationWrap.Register(L); + UnityEngine_PhysicsWrap.Register(L); + UnityEngine_ColliderWrap.Register(L); + UnityEngine_TimeWrap.Register(L); + UnityEngine_TextureWrap.Register(L); + UnityEngine_Texture2DWrap.Register(L); + UnityEngine_ShaderWrap.Register(L); + UnityEngine_MaterialWrap.Register(L); + UnityEngine_RendererWrap.Register(L); + UnityEngine_WWWWrap.Register(L); + UnityEngine_ScreenWrap.Register(L); + UnityEngine_CameraWrap.Register(L); + UnityEngine_CameraClearFlagsWrap.Register(L); + UnityEngine_AudioClipWrap.Register(L); + UnityEngine_AudioSourceWrap.Register(L); + UnityEngine_AssetBundleWrap.Register(L); + UnityEngine_ParticleSystemWrap.Register(L); + UnityEngine_AsyncOperationWrap.Register(L); + UnityEngine_LightWrap.Register(L); + UnityEngine_LightTypeWrap.Register(L); + UnityEngine_SleepTimeoutWrap.Register(L); + UnityEngine_AnimatorWrap.Register(L); + UnityEngine_InputWrap.Register(L); + UnityEngine_KeyCodeWrap.Register(L); + UnityEngine_SkinnedMeshRendererWrap.Register(L); + UnityEngine_SpaceWrap.Register(L); + UnityEngine_AnimationBlendModeWrap.Register(L); + UnityEngine_QueueModeWrap.Register(L); + UnityEngine_PlayModeWrap.Register(L); + UnityEngine_WrapModeWrap.Register(L); + UnityEngine_QualitySettingsWrap.Register(L); + UnityEngine_RenderSettingsWrap.Register(L); + UnityEngine_RectTransformWrap.Register(L); + L.BeginModule("UI"); + UnityEngine_UI_TextWrap.Register(L); + UnityEngine_UI_InputFieldWrap.Register(L); + UnityEngine_UI_ToggleWrap.Register(L); + UnityEngine_UI_ScrollbarWrap.Register(L); + UnityEngine_UI_SliderWrap.Register(L); + L.EndModule(); + L.BeginModule("Experimental"); + L.BeginModule("Director"); + UnityEngine_Experimental_Director_DirectorPlayerWrap.Register(L); + L.EndModule(); + L.EndModule(); + L.BeginModule("Events"); + L.RegFunction("UnityAction", UnityEngine_Events_UnityAction); + L.EndModule(); + L.EndModule(); + L.BeginModule("LuaFramework"); + LuaFramework_UtilWrap.Register(L); + LuaFramework_AppConstWrap.Register(L); + LuaFramework_LuaHelperWrap.Register(L); + LuaFramework_LuaBehaviourWrap.Register(L); + LuaFramework_GameManagerWrap.Register(L); + LuaFramework_LuaManagerWrap.Register(L); + LuaFramework_PanelManagerWrap.Register(L); + LuaFramework_SoundManagerWrap.Register(L); + LuaFramework_TimerManagerWrap.Register(L); + LuaFramework_ThreadManagerWrap.Register(L); + LuaFramework_ResourceManagerWrap.Register(L); + L.EndModule(); + L.BeginModule("KBEngine"); + KBEngine_EventWrap.Register(L); + KBEngine_NetworkInterfaceWrap.Register(L); + KBEngine_MemoryStreamWrap.Register(L); + KBEngine_PersistentInofsWrap.Register(L); + L.EndModule(); + L.BeginModule("System"); + L.RegFunction("Action", System_Action); + L.RegFunction("Action_NotiData", System_Action_NotiData); + L.RegFunction("Action_UnityEngine_Objects", System_Action_UnityEngine_Objects); + L.EndModule(); + L.EndModule(); + L.BeginPreLoad(); + L.AddPreLoad("UnityEngine.MeshRenderer", LuaOpen_UnityEngine_MeshRenderer, typeof(UnityEngine.MeshRenderer)); + L.AddPreLoad("UnityEngine.ParticleEmitter", LuaOpen_UnityEngine_ParticleEmitter, typeof(UnityEngine.ParticleEmitter)); + L.AddPreLoad("UnityEngine.ParticleRenderer", LuaOpen_UnityEngine_ParticleRenderer, typeof(UnityEngine.ParticleRenderer)); + L.AddPreLoad("UnityEngine.ParticleAnimator", LuaOpen_UnityEngine_ParticleAnimator, typeof(UnityEngine.ParticleAnimator)); + L.AddPreLoad("UnityEngine.BoxCollider", LuaOpen_UnityEngine_BoxCollider, typeof(UnityEngine.BoxCollider)); + L.AddPreLoad("UnityEngine.MeshCollider", LuaOpen_UnityEngine_MeshCollider, typeof(UnityEngine.MeshCollider)); + L.AddPreLoad("UnityEngine.SphereCollider", LuaOpen_UnityEngine_SphereCollider, typeof(UnityEngine.SphereCollider)); + L.AddPreLoad("UnityEngine.CharacterController", LuaOpen_UnityEngine_CharacterController, typeof(UnityEngine.CharacterController)); + L.AddPreLoad("UnityEngine.CapsuleCollider", LuaOpen_UnityEngine_CapsuleCollider, typeof(UnityEngine.CapsuleCollider)); + L.AddPreLoad("UnityEngine.Animation", LuaOpen_UnityEngine_Animation, typeof(UnityEngine.Animation)); + L.AddPreLoad("UnityEngine.AnimationClip", LuaOpen_UnityEngine_AnimationClip, typeof(UnityEngine.AnimationClip)); + L.AddPreLoad("UnityEngine.AnimationState", LuaOpen_UnityEngine_AnimationState, typeof(UnityEngine.AnimationState)); + L.AddPreLoad("UnityEngine.BlendWeights", LuaOpen_UnityEngine_BlendWeights, typeof(UnityEngine.BlendWeights)); + L.AddPreLoad("UnityEngine.RenderTexture", LuaOpen_UnityEngine_RenderTexture, typeof(UnityEngine.RenderTexture)); + L.AddPreLoad("UnityEngine.Rigidbody", LuaOpen_UnityEngine_Rigidbody, typeof(UnityEngine.Rigidbody)); + L.EndPreLoad(); + Debugger.Log("Register lua type cost time: {0}", Time.realtimeSinceStartup - t); + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int UnityEngine_Events_UnityAction(IntPtr L) + { + try + { + LuaFunction func = ToLua.CheckLuaFunction(L, 1); + Delegate arg1 = DelegateFactory.CreateDelegate(typeof(UnityEngine.Events.UnityAction), func); + ToLua.Push(L, arg1); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int System_Action(IntPtr L) + { + try + { + LuaFunction func = ToLua.CheckLuaFunction(L, 1); + Delegate arg1 = DelegateFactory.CreateDelegate(typeof(System.Action), func); + ToLua.Push(L, arg1); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int System_Action_NotiData(IntPtr L) + { + try + { + LuaFunction func = ToLua.CheckLuaFunction(L, 1); + Delegate arg1 = DelegateFactory.CreateDelegate(typeof(System.Action), func); + ToLua.Push(L, arg1); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int System_Action_UnityEngine_Objects(IntPtr L) + { + try + { + LuaFunction func = ToLua.CheckLuaFunction(L, 1); + Delegate arg1 = DelegateFactory.CreateDelegate(typeof(System.Action), func); + ToLua.Push(L, arg1); + return 1; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int LuaOpen_UnityEngine_MeshRenderer(IntPtr L) + { + try + { + int top = LuaDLL.lua_gettop(L); + LuaState state = LuaState.Get(L); + int preTop = state.BeginPreModule("UnityEngine"); + UnityEngine_MeshRendererWrap.Register(state); + state.EndPreModule(preTop); + LuaDLL.lua_settop(L, top); + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int LuaOpen_UnityEngine_ParticleEmitter(IntPtr L) + { + try + { + int top = LuaDLL.lua_gettop(L); + LuaState state = LuaState.Get(L); + int preTop = state.BeginPreModule("UnityEngine"); + UnityEngine_ParticleEmitterWrap.Register(state); + state.EndPreModule(preTop); + LuaDLL.lua_settop(L, top); + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int LuaOpen_UnityEngine_ParticleRenderer(IntPtr L) + { + try + { + int top = LuaDLL.lua_gettop(L); + LuaState state = LuaState.Get(L); + int preTop = state.BeginPreModule("UnityEngine"); + UnityEngine_ParticleRendererWrap.Register(state); + state.EndPreModule(preTop); + LuaDLL.lua_settop(L, top); + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int LuaOpen_UnityEngine_ParticleAnimator(IntPtr L) + { + try + { + int top = LuaDLL.lua_gettop(L); + LuaState state = LuaState.Get(L); + int preTop = state.BeginPreModule("UnityEngine"); + UnityEngine_ParticleAnimatorWrap.Register(state); + state.EndPreModule(preTop); + LuaDLL.lua_settop(L, top); + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int LuaOpen_UnityEngine_BoxCollider(IntPtr L) + { + try + { + int top = LuaDLL.lua_gettop(L); + LuaState state = LuaState.Get(L); + int preTop = state.BeginPreModule("UnityEngine"); + UnityEngine_BoxColliderWrap.Register(state); + state.EndPreModule(preTop); + LuaDLL.lua_settop(L, top); + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int LuaOpen_UnityEngine_MeshCollider(IntPtr L) + { + try + { + int top = LuaDLL.lua_gettop(L); + LuaState state = LuaState.Get(L); + int preTop = state.BeginPreModule("UnityEngine"); + UnityEngine_MeshColliderWrap.Register(state); + state.EndPreModule(preTop); + LuaDLL.lua_settop(L, top); + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int LuaOpen_UnityEngine_SphereCollider(IntPtr L) + { + try + { + int top = LuaDLL.lua_gettop(L); + LuaState state = LuaState.Get(L); + int preTop = state.BeginPreModule("UnityEngine"); + UnityEngine_SphereColliderWrap.Register(state); + state.EndPreModule(preTop); + LuaDLL.lua_settop(L, top); + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int LuaOpen_UnityEngine_CharacterController(IntPtr L) + { + try + { + int top = LuaDLL.lua_gettop(L); + LuaState state = LuaState.Get(L); + int preTop = state.BeginPreModule("UnityEngine"); + UnityEngine_CharacterControllerWrap.Register(state); + state.EndPreModule(preTop); + LuaDLL.lua_settop(L, top); + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int LuaOpen_UnityEngine_CapsuleCollider(IntPtr L) + { + try + { + int top = LuaDLL.lua_gettop(L); + LuaState state = LuaState.Get(L); + int preTop = state.BeginPreModule("UnityEngine"); + UnityEngine_CapsuleColliderWrap.Register(state); + state.EndPreModule(preTop); + LuaDLL.lua_settop(L, top); + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int LuaOpen_UnityEngine_Animation(IntPtr L) + { + try + { + int top = LuaDLL.lua_gettop(L); + LuaState state = LuaState.Get(L); + int preTop = state.BeginPreModule("UnityEngine"); + UnityEngine_AnimationWrap.Register(state); + state.EndPreModule(preTop); + LuaDLL.lua_settop(L, top); + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int LuaOpen_UnityEngine_AnimationClip(IntPtr L) + { + try + { + int top = LuaDLL.lua_gettop(L); + LuaState state = LuaState.Get(L); + int preTop = state.BeginPreModule("UnityEngine"); + UnityEngine_AnimationClipWrap.Register(state); + state.EndPreModule(preTop); + LuaDLL.lua_settop(L, top); + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int LuaOpen_UnityEngine_AnimationState(IntPtr L) + { + try + { + int top = LuaDLL.lua_gettop(L); + LuaState state = LuaState.Get(L); + int preTop = state.BeginPreModule("UnityEngine"); + UnityEngine_AnimationStateWrap.Register(state); + state.EndPreModule(preTop); + LuaDLL.lua_settop(L, top); + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int LuaOpen_UnityEngine_BlendWeights(IntPtr L) + { + try + { + int top = LuaDLL.lua_gettop(L); + LuaState state = LuaState.Get(L); + int preTop = state.BeginPreModule("UnityEngine"); + UnityEngine_BlendWeightsWrap.Register(state); + state.EndPreModule(preTop); + LuaDLL.lua_settop(L, top); + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int LuaOpen_UnityEngine_RenderTexture(IntPtr L) + { + try + { + int top = LuaDLL.lua_gettop(L); + LuaState state = LuaState.Get(L); + int preTop = state.BeginPreModule("UnityEngine"); + UnityEngine_RenderTextureWrap.Register(state); + state.EndPreModule(preTop); + LuaDLL.lua_settop(L, top); + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } + + [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] + static int LuaOpen_UnityEngine_Rigidbody(IntPtr L) + { + try + { + int top = LuaDLL.lua_gettop(L); + LuaState state = LuaState.Get(L); + int preTop = state.BeginPreModule("UnityEngine"); + UnityEngine_RigidbodyWrap.Register(state); + state.EndPreModule(preTop); + LuaDLL.lua_settop(L, top); + return 0; + } + catch(Exception e) + { + return LuaDLL.toluaL_exception(L, e); + } + } +} + diff --git a/ProjectSettings/GraphicsSettings.asset b/ProjectSettings/GraphicsSettings.asset index 280a9fd..5a96ca8 100644 --- a/ProjectSettings/GraphicsSettings.asset +++ b/ProjectSettings/GraphicsSettings.asset @@ -3,10 +3,13 @@ --- !u!30 &1 GraphicsSettings: m_ObjectHideFlags: 0 - serializedVersion: 3 + serializedVersion: 5 m_Deferred: m_Mode: 1 m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} + m_DeferredReflections: + m_Mode: 1 + m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} m_LegacyDeferred: m_Mode: 1 m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} @@ -18,12 +21,17 @@ GraphicsSettings: - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} - {fileID: 10782, guid: 0000000000000000f000000000000000, type: 0} m_PreloadedShaders: [] + m_ShaderSettings: + useScreenSpaceShadows: 1 + m_BuildTargetShaderSettings: [] m_LightmapStripping: 0 + m_FogStripping: 0 m_LightmapKeepPlain: 1 m_LightmapKeepDirCombined: 1 m_LightmapKeepDirSeparate: 1 - m_LightmapKeepDynamic: 1 - m_FogStripping: 0 + m_LightmapKeepDynamicPlain: 1 + m_LightmapKeepDynamicDirCombined: 1 + m_LightmapKeepDynamicDirSeparate: 1 m_FogKeepLinear: 1 m_FogKeepExp: 1 m_FogKeepExp2: 1 diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index c69f843..71a00f9 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -3,11 +3,10 @@ --- !u!129 &1 PlayerSettings: m_ObjectHideFlags: 0 - serializedVersion: 7 + serializedVersion: 8 AndroidProfiler: 0 defaultScreenOrientation: 2 targetDevice: 2 - targetResolution: 0 useOnDemandResources: 0 accelerometerFrequency: 60 companyName: DefaultCompany @@ -15,6 +14,7 @@ PlayerSettings: defaultCursor: {fileID: 0} cursorHotspot: {x: 0, y: 0} m_ShowUnitySplashScreen: 1 + m_VirtualRealitySplashScreen: {fileID: 0} defaultScreenWidth: 1024 defaultScreenHeight: 768 defaultScreenWidthWeb: 960 @@ -56,15 +56,19 @@ PlayerSettings: xboxEnableKinectAutoTracking: 0 xboxEnableFitness: 0 visibleInBackground: 0 + allowFullscreenSwitch: 1 macFullscreenMode: 2 d3d9FullscreenMode: 1 d3d11FullscreenMode: 1 xboxSpeechDB: 0 xboxEnableHeadOrientation: 0 xboxEnableGuest: 0 + xboxEnablePIXSampling: 0 n3dsDisableStereoscopicView: 0 n3dsEnableSharedListOpt: 1 n3dsEnableVSync: 0 + uiUse16BitDepthBuffer: 0 + ignoreAlphaClear: 0 xboxOneResolution: 0 ps3SplashScreen: {fileID: 0} videoMemoryForVertexBuffers: 0 @@ -115,6 +119,7 @@ PlayerSettings: iPhoneTargetOSVersion: 22 uIPrerenderedIcon: 0 uIRequiresPersistentWiFi: 0 + uIRequiresFullScreen: 1 uIStatusBarHidden: 1 uIExitOnSuspend: 0 uIStatusBarStyle: 0 @@ -128,6 +133,10 @@ PlayerSettings: iPadHighResPortraitSplashScreen: {fileID: 0} iPadLandscapeSplashScreen: {fileID: 0} iPadHighResLandscapeSplashScreen: {fileID: 0} + appleTVSplashScreen: {fileID: 0} + tvOSSmallIconLayers: [] + tvOSLargeIconLayers: [] + tvOSTopShelfImageLayers: [] iOSLaunchScreenType: 0 iOSLaunchScreenPortrait: {fileID: 0} iOSLaunchScreenLandscape: {fileID: 0} @@ -270,7 +279,12 @@ PlayerSettings: playerPrefsSupport: 0 ps4ReprojectionSupport: 0 ps4UseAudio3dBackend: 0 + ps4SocialScreenEnabled: 0 ps4Audio3dVirtualSpeakerCount: 14 + ps4attribCpuUsage: 0 + ps4PatchPkgPath: + ps4PatchLatestPkgPath: + ps4PatchChangeinfoPath: ps4attribUserManagement: 0 ps4attribMoveSupport: 0 ps4attrib3DSupport: 0 @@ -330,10 +344,6 @@ PlayerSettings: 4: ASYNC_MODE 7: ASYNC_MODE metroPackageName: SimpleFramework - metroPackageLogo: - metroPackageLogo140: - metroPackageLogo180: - metroPackageLogo240: metroPackageVersion: metroCertificatePath: metroCertificatePassword: @@ -341,44 +351,7 @@ PlayerSettings: metroCertificateIssuer: metroCertificateNotAfter: 0000000000000000 metroApplicationDescription: SimpleFramework - metroStoreTileLogo80: - metroStoreTileLogo: - metroStoreTileLogo140: - metroStoreTileLogo180: - metroStoreTileWideLogo80: - metroStoreTileWideLogo: - metroStoreTileWideLogo140: - metroStoreTileWideLogo180: - metroStoreTileSmallLogo80: - metroStoreTileSmallLogo: - metroStoreTileSmallLogo140: - metroStoreTileSmallLogo180: - metroStoreSmallTile80: - metroStoreSmallTile: - metroStoreSmallTile140: - metroStoreSmallTile180: - metroStoreLargeTile80: - metroStoreLargeTile: - metroStoreLargeTile140: - metroStoreLargeTile180: - metroStoreSplashScreenImage: - metroStoreSplashScreenImage140: - metroStoreSplashScreenImage180: - metroPhoneAppIcon: - metroPhoneAppIcon140: - metroPhoneAppIcon240: - metroPhoneSmallTile: - metroPhoneSmallTile140: - metroPhoneSmallTile240: - metroPhoneMediumTile: - metroPhoneMediumTile140: - metroPhoneMediumTile240: - metroPhoneWideTile: - metroPhoneWideTile140: - metroPhoneWideTile240: - metroPhoneSplashScreenImage: - metroPhoneSplashScreenImage140: - metroPhoneSplashScreenImage240: + wsaImages: {} metroTileShortName: metroCommandLineArgsFile: metroTileShowName: 1 @@ -465,6 +438,9 @@ PlayerSettings: - iOS::Architecture - iOS::EnableIncrementalBuildSupportForIl2cpp - iOS::ScriptingBackend + - tvOS::Architecture + - tvOS::EnableIncrementalBuildSupportForIl2cpp + - tvOS::ScriptingBackend Android::ScriptingBackend: 0 Metro::ScriptingBackend: 2 Standalone::ScriptingBackend: 0 @@ -476,6 +452,9 @@ PlayerSettings: iOS::Architecture: 0 iOS::EnableIncrementalBuildSupportForIl2cpp: 0 iOS::ScriptingBackend: 0 + tvOS::Architecture: 1 + tvOS::EnableIncrementalBuildSupportForIl2cpp: 0 + tvOS::ScriptingBackend: 1 boolPropertyNames: - WebGL::analyzeBuildSize - WebGL::dataCaching @@ -490,7 +469,6 @@ PlayerSettings: WebGL::emscriptenArgs: WebGL::template: APPLICATION:Default additionalIl2CppArgs::additionalIl2CppArgs: - firstStreamedSceneWithResources: 0 cloudProjectId: projectName: organizationId: diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt index b11ab9b..c4684cd 100644 --- a/ProjectSettings/ProjectVersion.txt +++ b/ProjectSettings/ProjectVersion.txt @@ -1,2 +1,2 @@ -m_EditorVersion: 5.2.2f1 +m_EditorVersion: 5.3.4f1 m_StandardAssetsVersion: 0 diff --git a/ProjectSettings/QualitySettings.asset b/ProjectSettings/QualitySettings.asset index 32a2f6e..e46dfed 100644 --- a/ProjectSettings/QualitySettings.asset +++ b/ProjectSettings/QualitySettings.asset @@ -14,8 +14,9 @@ QualitySettings: shadowProjection: 1 shadowCascades: 1 shadowDistance: 15 - shadowCascade2Split: .333333343 - shadowCascade4Split: {x: .0666666701, y: .200000003, z: .466666669} + shadowNearPlaneOffset: 2 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} blendWeights: 1 textureQuality: 1 anisotropicTextures: 0 @@ -25,9 +26,11 @@ QualitySettings: realtimeReflectionProbes: 0 billboardsFaceCameraPosition: 0 vSyncCount: 0 - lodBias: .300000012 + lodBias: 0.3 maximumLODLevel: 0 particleRaycastBudget: 4 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 4 excludedTargetPlatforms: [] - serializedVersion: 2 name: Fast @@ -37,8 +40,9 @@ QualitySettings: shadowProjection: 1 shadowCascades: 1 shadowDistance: 20 - shadowCascade2Split: .333333343 - shadowCascade4Split: {x: .0666666701, y: .200000003, z: .466666669} + shadowNearPlaneOffset: 2 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} blendWeights: 2 textureQuality: 0 anisotropicTextures: 0 @@ -48,9 +52,11 @@ QualitySettings: realtimeReflectionProbes: 0 billboardsFaceCameraPosition: 0 vSyncCount: 0 - lodBias: .400000006 + lodBias: 0.4 maximumLODLevel: 0 particleRaycastBudget: 16 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 4 excludedTargetPlatforms: [] - serializedVersion: 2 name: Simple @@ -60,8 +66,9 @@ QualitySettings: shadowProjection: 1 shadowCascades: 1 shadowDistance: 20 - shadowCascade2Split: .333333343 - shadowCascade4Split: {x: .0666666701, y: .200000003, z: .466666669} + shadowNearPlaneOffset: 2 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} blendWeights: 2 textureQuality: 0 anisotropicTextures: 1 @@ -71,9 +78,11 @@ QualitySettings: realtimeReflectionProbes: 0 billboardsFaceCameraPosition: 0 vSyncCount: 0 - lodBias: .699999988 + lodBias: 0.7 maximumLODLevel: 0 particleRaycastBudget: 64 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 4 excludedTargetPlatforms: [] - serializedVersion: 2 name: Good @@ -83,8 +92,9 @@ QualitySettings: shadowProjection: 1 shadowCascades: 2 shadowDistance: 40 - shadowCascade2Split: .333333343 - shadowCascade4Split: {x: .0666666701, y: .200000003, z: .466666669} + shadowNearPlaneOffset: 2 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} blendWeights: 2 textureQuality: 0 anisotropicTextures: 1 @@ -97,6 +107,8 @@ QualitySettings: lodBias: 1 maximumLODLevel: 0 particleRaycastBudget: 256 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 4 excludedTargetPlatforms: [] - serializedVersion: 2 name: Beautiful @@ -106,8 +118,9 @@ QualitySettings: shadowProjection: 1 shadowCascades: 2 shadowDistance: 70 - shadowCascade2Split: .333333343 - shadowCascade4Split: {x: .0666666701, y: .200000003, z: .466666669} + shadowNearPlaneOffset: 2 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} blendWeights: 4 textureQuality: 0 anisotropicTextures: 2 @@ -120,6 +133,8 @@ QualitySettings: lodBias: 1.5 maximumLODLevel: 0 particleRaycastBudget: 1024 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 4 excludedTargetPlatforms: [] - serializedVersion: 2 name: Fantastic @@ -129,8 +144,9 @@ QualitySettings: shadowProjection: 1 shadowCascades: 4 shadowDistance: 150 - shadowCascade2Split: .333333343 - shadowCascade4Split: {x: .0666666701, y: .200000003, z: .466666669} + shadowNearPlaneOffset: 2 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} blendWeights: 4 textureQuality: 0 anisotropicTextures: 2 @@ -143,5 +159,7 @@ QualitySettings: lodBias: 2 maximumLODLevel: 0 particleRaycastBudget: 4096 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 4 excludedTargetPlatforms: [] m_PerPlatformDefaultQuality: {} From 3130cdb979f7cd342c26429cd50036311c77b9cc Mon Sep 17 00:00:00 2001 From: ren19890419 <302842818@qq.com> Date: Fri, 17 Jun 2016 09:17:29 +0800 Subject: [PATCH 03/12] =?UTF-8?q?=E5=90=8C=E6=AD=A5=E5=AE=98=E7=BD=91?= =?UTF-8?q?=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/StriveGame/ToLua/Lua/math/Vector3.lua | 65 ++++++++++---------- 1 file changed, 32 insertions(+), 33 deletions(-) diff --git a/Assets/StriveGame/ToLua/Lua/math/Vector3.lua b/Assets/StriveGame/ToLua/Lua/math/Vector3.lua index f7ddfd3..06c48b6 100644 --- a/Assets/StriveGame/ToLua/Lua/math/Vector3.lua +++ b/Assets/StriveGame/ToLua/Lua/math/Vector3.lua @@ -3,7 +3,7 @@ -- All rights reserved. -- Use, modification and distribution are subject to the "MIT License" -------------------------------------------------------------------------------- - +local math = math local acos = math.acos local sqrt = math.sqrt local max = math.max @@ -16,14 +16,12 @@ local sign = Mathf.Sign local setmetatable = setmetatable local rawset = rawset local rawget = rawget +local type = type local rad2Deg = Mathf.Rad2Deg local deg2Rad = Mathf.Deg2Rad -local Vector3 = -{ -} - +local Vector3 = {} local get = tolua.initget(Vector3) Vector3.__index = function(t,k) @@ -40,17 +38,17 @@ Vector3.__index = function(t,k) return var end -Vector3.__call = function(t,x,y,z) - return Vector3.New(x,y,z) -end - function Vector3.New(x, y, z) local v = {x = x or 0, y = y or 0, z = z or 0} setmetatable(v, Vector3) return v end -local new = Vector3.New +local _new = Vector3.New + +Vector3.__call = function(t,x,y,z) + return _new(x,y,z) +end function Vector3:Set(x,y,z) self.x = x or 0 @@ -63,7 +61,7 @@ function Vector3:Get() end function Vector3:Clone() - return new(self.x, self.y, self.z) + return _new(self.x, self.y, self.z) end function Vector3.Distance(va, vb) @@ -76,7 +74,7 @@ end function Vector3.Lerp(from, to, t) t = clamp(t, 0, 1) - return new(from.x + (to.x - from.x) * t, from.y + (to.y - from.y) * t, from.z + (to.z - from.z) * t) + return _new(from.x + (to.x - from.x) * t, from.y + (to.y - from.y) * t, from.z + (to.z - from.z) * t) end function Vector3:Magnitude() @@ -84,11 +82,11 @@ function Vector3:Magnitude() end function Vector3.Max(lhs, rhs) - return new(max(lhs.x, rhs.x), max(lhs.y, rhs.y), max(lhs.z, rhs.z)) + return _new(max(lhs.x, rhs.x), max(lhs.y, rhs.y), max(lhs.z, rhs.z)) end function Vector3.Min(lhs, rhs) - return new(min(lhs.x, rhs.x), min(lhs.y, rhs.y), min(lhs.z, rhs.z)) + return _new(min(lhs.x, rhs.x), min(lhs.y, rhs.y), min(lhs.z, rhs.z)) end function Vector3.Normalize(v) @@ -96,10 +94,10 @@ function Vector3.Normalize(v) local num = sqrt(x * x + y * y + z * z) if num > 1e-5 then - return new(x/num, y/num, z/num) + return _new(x/num, y/num, z/num) end - return new(0, 0, 0) + return _new(0, 0, 0) end function Vector3:SetNormalize() @@ -254,7 +252,7 @@ end local overSqrt2 = 0.7071067811865475244008443621048490 local function OrthoNormalVector(vec) - local res = Vector3.New() + local res = _new() if abs(vec.z) > overSqrt2 then local a = vec.y * vec.y + vec.z * vec.z @@ -334,14 +332,14 @@ function Vector3.Scale(a, b) local x = a.x * b.x local y = a.y * b.y local z = a.z * b.z - return new(x, y, z) + return _new(x, y, z) end function Vector3.Cross(lhs, rhs) local x = lhs.y * rhs.z - lhs.z * rhs.y local y = lhs.z * rhs.x - lhs.x * rhs.z local z = lhs.x * rhs.y - lhs.y * rhs.x - return Vector3.New(x,y,z) + return _new(x,y,z) end function Vector3:Equals(other) @@ -360,7 +358,7 @@ function Vector3.Project(vector, onNormal) local num = onNormal:SqrMagnitude() if num < 1.175494e-38 then - return Vector3.New(0,0,0) + return _new(0,0,0) end local num2 = dot(vector, onNormal) @@ -484,12 +482,12 @@ Vector3.__tostring = function(self) end Vector3.__div = function(va, d) - return Vector3.New(va.x / d, va.y / d, va.z / d) + return _new(va.x / d, va.y / d, va.z / d) end Vector3.__mul = function(va, d) if type(d) == "number" then - return Vector3.New(va.x * d, va.y * d, va.z * d) + return _new(va.x * d, va.y * d, va.z * d) else local vec = va:Clone() vec:MulQuat(d) @@ -498,15 +496,15 @@ Vector3.__mul = function(va, d) end Vector3.__add = function(va, vb) - return Vector3.New(va.x + vb.x, va.y + vb.y, va.z + vb.z) + return _new(va.x + vb.x, va.y + vb.y, va.z + vb.z) end Vector3.__sub = function(va, vb) - return Vector3.New(va.x - vb.x, va.y - vb.y, va.z - vb.z) + return _new(va.x - vb.x, va.y - vb.y, va.z - vb.z) end Vector3.__unm = function(va) - return Vector3.New(-va.x, -va.y, -va.z) + return _new(-va.x, -va.y, -va.z) end Vector3.__eq = function(a,b) @@ -515,18 +513,19 @@ Vector3.__eq = function(a,b) return delta < 1e-10 end -get.up = function() return Vector3.New(0,1,0) end -get.down = function() return Vector3.New(0,-1,0) end -get.right = function() return Vector3.New(1,0,0) end -get.left = function() return Vector3.New(-1,0,0) end -get.forward = function() return Vector3.New(0,0,1) end -get.back = function() return Vector3.New(0,0,-1) end -get.zero = function() return Vector3.New(0,0,0) end -get.one = function() return Vector3.New(1,1,1) end +get.up = function() return _new(0,1,0) end +get.down = function() return _new(0,-1,0) end +get.right = function() return _new(1,0,0) end +get.left = function() return _new(-1,0,0) end +get.forward = function() return _new(0,0,1) end +get.back = function() return _new(0,0,-1) end +get.zero = function() return _new(0,0,0) end +get.one = function() return _new(1,1,1) end get.magnitude = Vector3.Magnitude get.normalized = Vector3.Normalize get.sqrMagnitude= Vector3.SqrMagnitude +UnityEngine.Vector3 = Vector3 setmetatable(Vector3, Vector3) return Vector3 From efdeabc71c88f38379b27c85f01d2156ea39730e Mon Sep 17 00:00:00 2001 From: ren19890419 <302842818@qq.com> Date: Fri, 17 Jun 2016 09:21:07 +0800 Subject: [PATCH 04/12] =?UTF-8?q?=E5=8F=96=E6=B6=88=E5=A4=9A=E4=BD=99?= =?UTF-8?q?=E7=9A=84=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/StriveGame/Lua/Logic/Character.lua | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Assets/StriveGame/Lua/Logic/Character.lua b/Assets/StriveGame/Lua/Logic/Character.lua index 062482a..9472273 100644 --- a/Assets/StriveGame/Lua/Logic/Character.lua +++ b/Assets/StriveGame/Lua/Logic/Character.lua @@ -52,19 +52,8 @@ function Character:SetName( name ) end function Character:recvDamage( receiver, attacker, skillID, damageType, damage ) --- local HUDText = bl_HUDText.New(); --- if HUDText == nil then --- print("rensiwei recvDamage: "..tostring(damage)); --- else --- print("rensiwei recvDamage not nil : "..tostring(damage)); --- end local objHUDText = find("HUDText"); local HUDText = objHUDText:GetComponent("bl_HUDText"); - if HUDText == nil then - print("rensiwei recvDamage: "..tostring(damage)); - else - print("rensiwei recvDamage not nil : "..tostring(damage)); - end HUDText:NewText(tostring(damage),self.entity.renderObj.transform,Color.red,10,20,-1,2.5,0);--, 8, 20, -1, 2.2); -- bl_HUDText.NewText(tostring(damage),self.entity.renderObj.transform,Color.green0, 8, 20, -1, 2.2, 0); end From 86e3da4762caa20e505d3b5985e7ab3719b62484 Mon Sep 17 00:00:00 2001 From: ren19890419 <302842818@qq.com> Date: Fri, 17 Jun 2016 10:20:58 +0800 Subject: [PATCH 05/12] =?UTF-8?q?=E4=BF=AE=E6=94=B9MessageBox=E7=9A=84?= =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E4=BD=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/StriveGame/Lua/Logic/Game.lua | 2 ++ Assets/StriveGame/Lua/Logic/World.lua | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Assets/StriveGame/Lua/Logic/Game.lua b/Assets/StriveGame/Lua/Logic/Game.lua index 85b2522..40af310 100644 --- a/Assets/StriveGame/Lua/Logic/Game.lua +++ b/Assets/StriveGame/Lua/Logic/Game.lua @@ -2,6 +2,7 @@ Event = require 'events' require "Logic/CtrlManager" require "Common/functions" require "Controller/LoginCtrl" +require "Controller/MessageBoxCtrl" require "KbePlugins/KBEngine" require "Kbe/Account" require "Logic/World" @@ -28,6 +29,7 @@ function Game.OnInitOK() --注册LuaView-- this.InitViewPanels(); + MessageBoxCtrl.Awake(); CtrlManager.Init(); local ctrl = CtrlManager.GetCtrl(CtrlNames.Login); if ctrl ~= nil then diff --git a/Assets/StriveGame/Lua/Logic/World.lua b/Assets/StriveGame/Lua/Logic/World.lua index 60be48e..65919ae 100644 --- a/Assets/StriveGame/Lua/Logic/World.lua +++ b/Assets/StriveGame/Lua/Logic/World.lua @@ -53,7 +53,6 @@ function World.onAvatarEnterWorld( avatar ) GameWorldCtrl.Awake(); end SelectAvatarCtrl.Close(); - MessageBoxCtrl.Awake(); end function World.onEnterWorld( entity ) From 27a988c2c453ed2d181ced0017ccec3df28f4753 Mon Sep 17 00:00:00 2001 From: ren19890419 <302842818@qq.com> Date: Fri, 17 Jun 2016 12:07:41 +0800 Subject: [PATCH 06/12] =?UTF-8?q?=E6=98=BE=E7=A4=BA=E4=B8=BB=E8=A7=92?= =?UTF-8?q?=E4=BD=8D=E7=BD=AE=20HudText=E5=8F=AA=E5=88=9D=E5=A7=8B?= =?UTF-8?q?=E5=8C=96=E4=B8=80=E6=AC=A1=20=E4=BF=AE=E6=94=B9Canvas=E7=9A=84?= =?UTF-8?q?=E5=88=86=E8=BE=A8=E7=8E=87=E5=92=8CGameWorldPanel=E7=9A=84?= =?UTF-8?q?=E4=B8=80=E8=87=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/StriveGame/Lua/Logic/Character.lua | 4 +- Assets/StriveGame/Lua/Logic/Game.lua | 2 + Assets/StriveGame/Lua/View/GameWorldPanel.lua | 5 +- Assets/StriveGame/Lua/kbe/Avatar.lua | 5 +- .../StriveGame/Res/View/GameWorldPanel.prefab | 50 +++++++++---------- Assets/StriveGame/Scenes/main.unity | 2 +- 6 files changed, 37 insertions(+), 31 deletions(-) diff --git a/Assets/StriveGame/Lua/Logic/Character.lua b/Assets/StriveGame/Lua/Logic/Character.lua index 9472273..ec22648 100644 --- a/Assets/StriveGame/Lua/Logic/Character.lua +++ b/Assets/StriveGame/Lua/Logic/Character.lua @@ -52,8 +52,8 @@ function Character:SetName( name ) end function Character:recvDamage( receiver, attacker, skillID, damageType, damage ) - local objHUDText = find("HUDText"); - local HUDText = objHUDText:GetComponent("bl_HUDText"); +-- local objHUDText = find("HUDText"); + local HUDText = Game.objHUDText:GetComponent("bl_HUDText"); HUDText:NewText(tostring(damage),self.entity.renderObj.transform,Color.red,10,20,-1,2.5,0);--, 8, 20, -1, 2.2); -- bl_HUDText.NewText(tostring(damage),self.entity.renderObj.transform,Color.green0, 8, 20, -1, 2.2, 0); end diff --git a/Assets/StriveGame/Lua/Logic/Game.lua b/Assets/StriveGame/Lua/Logic/Game.lua index 40af310..ffc7ac9 100644 --- a/Assets/StriveGame/Lua/Logic/Game.lua +++ b/Assets/StriveGame/Lua/Logic/Game.lua @@ -30,6 +30,8 @@ function Game.OnInitOK() this.InitViewPanels(); MessageBoxCtrl.Awake(); + this.objHUDText = find("HUDText"); + CtrlManager.Init(); local ctrl = CtrlManager.GetCtrl(CtrlNames.Login); if ctrl ~= nil then diff --git a/Assets/StriveGame/Lua/View/GameWorldPanel.lua b/Assets/StriveGame/Lua/View/GameWorldPanel.lua index 4a582f2..7e736c8 100644 --- a/Assets/StriveGame/Lua/View/GameWorldPanel.lua +++ b/Assets/StriveGame/Lua/View/GameWorldPanel.lua @@ -20,8 +20,9 @@ function GameWorldPanel.InitPanel() this.PanelDie = transform:FindChild("Panel_die").gameObject; this.btnRelive = transform:FindChild("Panel_die/Button_relive").gameObject; this.btnClose = transform:FindChild("Button_close").gameObject; - this.textContent = transform:FindChild("Scroll View/Viewport/trans_content").gameObject; - this.sb_vertical = transform:FindChild("Scroll View/Scrollbar Vertical"):GetComponent("Scrollbar"); + this.textContent = transform:FindChild("Scroll View/Viewport/trans_content").gameObject; + this.textPos = transform:FindChild("Text_pos").gameObject; + this.sb_vertical = transform:FindChild("Scroll View/Scrollbar Vertical"):GetComponent("Scrollbar"); this.input_content = transform:FindChild("InputField_content"):GetComponent("InputField"); this.Panel_PlayerHead = transform:FindChild("Panel_PalyerHead").gameObject; -- local name_text = GameWorldPanel.Panel_PlayerHead:FindChild("Text_PlayerName"); diff --git a/Assets/StriveGame/Lua/kbe/Avatar.lua b/Assets/StriveGame/Lua/kbe/Avatar.lua index 1a48ec8..83d7368 100644 --- a/Assets/StriveGame/Lua/kbe/Avatar.lua +++ b/Assets/StriveGame/Lua/kbe/Avatar.lua @@ -27,7 +27,10 @@ function KBEngineLua.Avatar:updatePlayer(x, y, z, yaw) self.position.y = y; self.position.z = z; - self.direction.z = yaw; + self.direction.z = yaw; + if(GameWorldPanel.textPos ~= nil) then + GameWorldPanel.textPos:GetComponent('Text').text = string.format("%.1f", self.position.x) ..","..string.format("%.1f", self.position.z); + end end function KBEngineLua.Avatar:onEnterWorld() diff --git a/Assets/StriveGame/Res/View/GameWorldPanel.prefab b/Assets/StriveGame/Res/View/GameWorldPanel.prefab index 8f7d090..9bfc325 100644 --- a/Assets/StriveGame/Res/View/GameWorldPanel.prefab +++ b/Assets/StriveGame/Res/View/GameWorldPanel.prefab @@ -942,10 +942,10 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_FontData: m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 24 + m_FontSize: 12 m_FontStyle: 0 m_BestFit: 0 - m_MinSize: 10 + m_MinSize: 1 m_MaxSize: 40 m_Alignment: 4 m_AlignByGeometry: 0 @@ -1270,10 +1270,10 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_FontData: m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 24 + m_FontSize: 12 m_FontStyle: 0 m_BestFit: 0 - m_MinSize: 10 + m_MinSize: 1 m_MaxSize: 40 m_Alignment: 4 m_AlignByGeometry: 0 @@ -1417,10 +1417,10 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_FontData: m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 24 + m_FontSize: 12 m_FontStyle: 0 m_BestFit: 0 - m_MinSize: 10 + m_MinSize: 1 m_MaxSize: 40 m_Alignment: 4 m_AlignByGeometry: 0 @@ -1626,10 +1626,10 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_FontData: m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 24 + m_FontSize: 12 m_FontStyle: 0 m_BestFit: 0 - m_MinSize: 10 + m_MinSize: 1 m_MaxSize: 40 m_Alignment: 4 m_AlignByGeometry: 0 @@ -2128,10 +2128,10 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_FontData: m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 24 + m_FontSize: 12 m_FontStyle: 0 m_BestFit: 0 - m_MinSize: 10 + m_MinSize: 1 m_MaxSize: 40 m_Alignment: 4 m_AlignByGeometry: 0 @@ -3243,8 +3243,8 @@ RectTransform: m_RootOrder: 8 m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 175, y: 172} - m_SizeDelta: {x: 50, y: 50} + m_AnchoredPosition: {x: 132, y: 180} + m_SizeDelta: {x: 30, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22407814 RectTransform: @@ -3366,8 +3366,8 @@ RectTransform: m_RootOrder: 10 m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 74, y: 172} - m_SizeDelta: {x: 50, y: 50} + m_AnchoredPosition: {x: 72, y: 180} + m_SizeDelta: {x: 30, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22426174 RectTransform: @@ -3456,8 +3456,8 @@ RectTransform: m_RootOrder: 9 m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 124, y: 172} - m_SizeDelta: {x: 50, y: 50} + m_AnchoredPosition: {x: 102, y: 180} + m_SizeDelta: {x: 30, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22435984 RectTransform: @@ -3537,7 +3537,7 @@ RectTransform: m_GameObject: {fileID: 113692} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 22482538} - {fileID: 22491164} @@ -3560,9 +3560,9 @@ RectTransform: m_RootOrder: 0 m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0, y: 0} + m_AnchoredPosition: {x: 355.50003, y: 199.91336} + m_SizeDelta: {x: 711.00006, y: 399.8267} + m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22453724 RectTransform: m_ObjectHideFlags: 1 @@ -3613,8 +3613,8 @@ RectTransform: m_RootOrder: 7 m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 225, y: 172} - m_SizeDelta: {x: 50, y: 50} + m_AnchoredPosition: {x: 162, y: 180.8} + m_SizeDelta: {x: 30, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22469648 RectTransform: @@ -3710,7 +3710,7 @@ RectTransform: m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 133558} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalPosition: {x: 0, y: 0, z: 1} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 22427760} @@ -3718,8 +3718,8 @@ RectTransform: m_RootOrder: 3 m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 275, y: 172} - m_SizeDelta: {x: 50, y: 50} + m_AnchoredPosition: {x: 192, y: 180} + m_SizeDelta: {x: 30, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!224 &22482252 RectTransform: diff --git a/Assets/StriveGame/Scenes/main.unity b/Assets/StriveGame/Scenes/main.unity index 699d659..5fd8e7a 100644 --- a/Assets/StriveGame/Scenes/main.unity +++ b/Assets/StriveGame/Scenes/main.unity @@ -282,7 +282,7 @@ MonoBehaviour: m_UiScaleMode: 1 m_ReferencePixelsPerUnit: 100 m_ScaleFactor: 1 - m_ReferenceResolution: {x: 800, y: 600} + m_ReferenceResolution: {x: 711, y: 400} m_ScreenMatchMode: 0 m_MatchWidthOrHeight: 0 m_PhysicalUnit: 3 From b1d2edf715d7b207c5622edcd49cb3c1bf053ad7 Mon Sep 17 00:00:00 2001 From: ren19890419 <302842818@qq.com> Date: Fri, 17 Jun 2016 19:24:29 +0800 Subject: [PATCH 07/12] =?UTF-8?q?=E7=BB=84=E4=BB=B6=E5=88=A4=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/StriveGame/Lua/Logic/Character.lua | 18 +++++++++--------- Assets/Terrain.asset.meta | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Assets/StriveGame/Lua/Logic/Character.lua b/Assets/StriveGame/Lua/Logic/Character.lua index ec22648..7d87df3 100644 --- a/Assets/StriveGame/Lua/Logic/Character.lua +++ b/Assets/StriveGame/Lua/Logic/Character.lua @@ -106,15 +106,15 @@ function Character:Update() flag = true; end end - - if flag then - self.animator.speed = 2.0; - self.animator:SetFloat("Speed", 1.0); - else - self.animator.speed = 1.0; - self.animator:SetFloat("Speed", 0.0); - end - + if self.animator ~= nil then + if flag then + self.animator.speed = 2.0; + self.animator:SetFloat("Speed", 1.0); + else + self.animator.speed = 1.0; + self.animator:SetFloat("Speed", 0.0); + end + end end function Character:FixedUpdate() diff --git a/Assets/Terrain.asset.meta b/Assets/Terrain.asset.meta index d84a251..b70af39 100644 --- a/Assets/Terrain.asset.meta +++ b/Assets/Terrain.asset.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 42f2caa1031618d4cbe468a7600d484c +guid: 0e7ddac740cdf4642b3e67f0fbd1163e timeCreated: 1450865000 licenseType: Free NativeFormatImporter: From 66584212e392b946f1dfa14b32f64d5c0945aaf8 Mon Sep 17 00:00:00 2001 From: ren19890419 <302842818@qq.com> Date: Fri, 17 Jun 2016 19:55:43 +0800 Subject: [PATCH 08/12] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=89=A9=E5=93=81?= =?UTF-8?q?=E8=B5=84=E6=BA=90=EF=BC=8C=E4=BC=A0=E9=80=81=E9=97=A8=E8=B5=84?= =?UTF-8?q?=E6=BA=90=EF=BC=9B=E5=8A=A0=E8=A7=86=E8=A7=92=E9=87=8D=E7=BD=AE?= =?UTF-8?q?=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/StriveGame/Editor/Packager.cs | 1 + .../Lua/Controller/GameWorldCtrl.lua | 8 +- Assets/StriveGame/Lua/KbePlugins/Entity.lua | 2 +- Assets/StriveGame/Lua/Logic/Character.lua | 90 ++++++++------- Assets/StriveGame/Lua/Logic/GameEntity.lua | 105 ++++++++++++++++++ Assets/StriveGame/Lua/Logic/World.lua | 41 +++---- Assets/StriveGame/Lua/View/GameWorldPanel.lua | 1 + Assets/StriveGame/Res/Model/player.prefab | 22 +--- 8 files changed, 186 insertions(+), 84 deletions(-) create mode 100644 Assets/StriveGame/Lua/Logic/GameEntity.lua diff --git a/Assets/StriveGame/Editor/Packager.cs b/Assets/StriveGame/Editor/Packager.cs index 98c51ba..141208c 100644 --- a/Assets/StriveGame/Editor/Packager.cs +++ b/Assets/StriveGame/Editor/Packager.cs @@ -172,6 +172,7 @@ static void HandleResBundle() AddBuildMap("SelectAvatar" + AppConst.ExtName, "SelectAvatarPanel.prefab", "Assets/StriveGame/Res/View"); AddBuildMap("GameWorld" + AppConst.ExtName, "GameWorldPanel.prefab", "Assets/StriveGame/Res/View"); AddBuildMap("Model" + AppConst.ExtName, "*.prefab", "Assets/StriveGame/Res/Model"); + AddBuildMap("Skill" + AppConst.ExtName, "*.prefab", "Assets/StriveGame/Res/Skill"); AddBuildMap("Terrain" + AppConst.ExtName, "*.prefab", "Assets/StriveGame/Res/Terrain"); } diff --git a/Assets/StriveGame/Lua/Controller/GameWorldCtrl.lua b/Assets/StriveGame/Lua/Controller/GameWorldCtrl.lua index 48f2a03..54dd83d 100644 --- a/Assets/StriveGame/Lua/Controller/GameWorldCtrl.lua +++ b/Assets/StriveGame/Lua/Controller/GameWorldCtrl.lua @@ -30,8 +30,9 @@ function GameWorldCtrl.OnCreate(obj) GameWorld:AddClick(GameWorldPanel.btnRelive, this.OnRelive); GameWorld:AddClick(GameWorldPanel.btnClose, this.OnClose); GameWorld:AddClick(GameWorldPanel.btnSend, this.OnSendMessage); + GameWorld:AddClick(GameWorldPanel.btnResetView, this.OnResetView); - logWarn("Start lua--->>"..gameObject.name); + logWarn("Start lua--->>"..gameObject.name); Event.AddListener("OnDie", this.OnDie); Event.AddListener("Set_HP", this.Set_HP); Event.AddListener("Set_HP_Max", this.Set_HP_Max); @@ -72,6 +73,11 @@ function GameWorldCtrl.OnSendMessage(go) end end +--重置视角 +function GameWorldCtrl.OnResetView(go) + CameraFollow:ResetView(); +end + --关闭事件-- function GameWorldCtrl.Close() --panelMgr:ClosePanel(CtrlNames.Login); diff --git a/Assets/StriveGame/Lua/KbePlugins/Entity.lua b/Assets/StriveGame/Lua/KbePlugins/Entity.lua index 8367c0f..7dd0421 100644 --- a/Assets/StriveGame/Lua/KbePlugins/Entity.lua +++ b/Assets/StriveGame/Lua/KbePlugins/Entity.lua @@ -20,7 +20,7 @@ KBEngineLua.Entity = -- __init__调用之后设置为true inited = false, renderObj = nil, - character = nil, + gameEntity = nil, } KBEngineLua.Entity.New = function( self , me ) diff --git a/Assets/StriveGame/Lua/Logic/Character.lua b/Assets/StriveGame/Lua/Logic/Character.lua index 7d87df3..fe3d722 100644 --- a/Assets/StriveGame/Lua/Logic/Character.lua +++ b/Assets/StriveGame/Lua/Logic/Character.lua @@ -1,27 +1,31 @@ +require "Logic/GameEntity" + Character = { - entityName = nil, - entity = nil, - m_destDirection = nil, - m_destPosition = nil, - m_position = nil, - m_eulerAngles = nil, - - m_rotation = nil, +-- entityName = nil, +-- entity = nil, +-- m_destDirection = nil, +-- m_destPosition = nil, +-- m_position = nil, +-- m_eulerAngles = nil, + +-- m_rotation = nil, }; -function Character:SetPosition( pos ) - self.m_position = pos:Clone(); - if self.entity.renderObj then - self.entity.renderObj.transform.position = self.m_position; - end -end - -function Character:SetEulerAngles( angles ) - self.m_eulerAngles = angles:Clone(); - if self.entity.renderObj then - self.entity.renderObj.transform.eulerAngles = self.m_eulerAngles; - end -end +Character = GameEntity:New(Character);--继承 + +--function Character:SetPosition( pos ) +-- self.m_position = pos:Clone(); +-- if self.entity.renderObj then +-- self.entity.renderObj.transform.position = self.m_position; +-- end +--end + +--function Character:SetEulerAngles( angles ) +-- self.m_eulerAngles = angles:Clone(); +-- if self.entity.renderObj then +-- self.entity.renderObj.transform.eulerAngles = self.m_eulerAngles; +-- end +--end function Character:New( me ) me = me or {}; @@ -40,16 +44,16 @@ function Character:Init( entity ) self.cameraTransform = UnityEngine.Camera.main.transform; end -function Character:SetName( name ) - --绘制头顶文字 - self.entityName = name; - if self.headName ~= nil then - self.headName.text = self.entityName; - end - if self.entity:isPlayer() then - GameWorldCtrl.Set_PlayerName(name); - end -end +--function Character:SetName( name ) +-- --绘制头顶文字 +-- self.entityName = name; +-- if self.headName ~= nil then +-- self.headName.text = self.entityName; +-- end +-- if self.entity:isPlayer() then +-- GameWorldCtrl.Set_PlayerName(name); +-- end +--end function Character:recvDamage( receiver, attacker, skillID, damageType, damage ) -- local objHUDText = find("HUDText"); @@ -67,10 +71,10 @@ function Character:OnState( v ) end end -function Character:StartUpdate() - FixedUpdateBeat:Add(self.FixedUpdate, self); - UpdateBeat:Add(self.Update, self); -end +--function Character:StartUpdate() +-- FixedUpdateBeat:Add(self.FixedUpdate, self); +-- UpdateBeat:Add(self.Update, self); +--end function Character:Update() if self.headNameCanvasTrans then @@ -128,11 +132,11 @@ function Character:FixedUpdate() end end -function Character:Destroy() - FixedUpdateBeat:Remove(self.FixedUpdate, self); - UpdateBeat:Remove(self.Update, self); - self.entity = nil; - self.headName = nil; - self.headNameCanvasTrans = nil; - self.cameraTransform = nil; -end \ No newline at end of file +--function Character:Destroy() +-- FixedUpdateBeat:Remove(self.FixedUpdate, self); +-- UpdateBeat:Remove(self.Update, self); +-- self.entity = nil; +-- self.headName = nil; +-- self.headNameCanvasTrans = nil; +-- self.cameraTransform = nil; +--end \ No newline at end of file diff --git a/Assets/StriveGame/Lua/Logic/GameEntity.lua b/Assets/StriveGame/Lua/Logic/GameEntity.lua new file mode 100644 index 0000000..423c959 --- /dev/null +++ b/Assets/StriveGame/Lua/Logic/GameEntity.lua @@ -0,0 +1,105 @@ +GameEntity = { + entityName = nil, + entity = nil, + m_destDirection = nil, + m_destPosition = nil, + m_position = nil, + m_eulerAngles = nil, + + m_rotation = nil, + +}; + +function GameEntity:New( me ) + me = me or {}; + setmetatable(me, self); + self.__index = self; + return me; +end + +function GameEntity:SetPosition( pos ) + self.m_position = pos:Clone(); + if self.entity.renderObj then + self.entity.renderObj.transform.position = self.m_position; + end +end + +function GameEntity:SetEulerAngles( angles ) + self.m_eulerAngles = angles:Clone(); + if self.entity.renderObj then + self.entity.renderObj.transform.eulerAngles = self.m_eulerAngles; + end +end + + +function GameEntity:Init( entity ) + self.entity = entity; + self:StartUpdate(); + self.headName = entity.renderObj.transform:Find("Canvas/Text"):GetComponent("Text"); + self.headNameCanvasTrans = entity.renderObj.transform:Find("Canvas").transform; + self.cameraTransform = UnityEngine.Camera.main.transform; +end + +function GameEntity:SetName( name ) + --绘制头顶文字 + self.entityName = name; + if self.headName ~= nil then + self.headName.text = self.entityName; + end +end + +function GameEntity:OnState( v ) + --状态 +end + +function GameEntity:StartUpdate() + FixedUpdateBeat:Add(self.FixedUpdate, self); + UpdateBeat:Add(self.Update, self); +end + +function GameEntity:Update() + if self.headNameCanvasTrans then + self.headNameCanvasTrans.rotation = self.cameraTransform.rotation; + end + + if self.entity:isPlayer() then + return; + end + + --更新位置和方向 + if self.m_destDirection then + if not self.m_eulerAngles then + self:SetEulerAngles( self.m_destDirection ); + end + + if Vector3.Distance(self.m_eulerAngles, self.m_destDirection) > 0.0004 then + self:SetEulerAngles( self.m_destDirection ); + end + end + + if self.m_destPosition then + if not self.m_position then + self:SetPosition(self.m_destPosition); + end + + local dist = Vector3.Distance(self.m_position, self.m_destPosition) + if dist > 0.01 then + --self:SetPosition(Vector3.Lerp(self.m_position, self.m_destPosition, 1));--100 * UnityEngine.Time.deltaTime)); + self:SetPosition(self.m_destPosition); + end + end + +end + +function GameEntity:FixedUpdate() + +end + +function GameEntity:Destroy() + FixedUpdateBeat:Remove(self.FixedUpdate, self); + UpdateBeat:Remove(self.Update, self); + self.entity = nil; + self.headName = nil; + self.headNameCanvasTrans = nil; + self.cameraTransform = nil; +end \ No newline at end of file diff --git a/Assets/StriveGame/Lua/Logic/World.lua b/Assets/StriveGame/Lua/Logic/World.lua index 65919ae..5c47cd0 100644 --- a/Assets/StriveGame/Lua/Logic/World.lua +++ b/Assets/StriveGame/Lua/Logic/World.lua @@ -94,20 +94,23 @@ function World.onEnterWorld( entity ) end -function World.InitEntity( entity ) - --开始循环 - entity.character = Character:New(); - entity.character:Init(entity); - - if entity.name then - World.set_name( entity , entity.name ) - end +function World.InitEntity( entity ) + if entity.className == "Gate" or entity.className == "DroppedItem" then + entity.gameEntity = GameEntity:New(); + else + entity.gameEntity = Character:New(); + end + entity.gameEntity:Init(entity); + + if entity.name then + World.set_name( entity , entity.name ) + end end function World.onLeaveWorld(entity) - if entity.character ~= nil then - entity.character:Destroy(); - end + if entity.gameEntity ~= nil then + entity.gameEntity:Destroy(); + end if entity.renderObj ~= nil then destroy(entity.renderObj); entity.renderObj = nil; @@ -121,16 +124,16 @@ function World.addSpaceGeometryMapping( path ) end function World.set_position( entity ) - entity.character:SetPosition(entity.position); + entity.gameEntity:SetPosition(entity.position); end function World.set_direction( entity ) - entity.character.m_destDirection = Vector3.New(entity.direction.y, entity.direction.z, entity.direction.x); + entity.gameEntity.m_destDirection = Vector3.New(entity.direction.y, entity.direction.z, entity.direction.x); end function World.set_name( entity , v) - if entity.character then - entity.character:SetName(v); + if entity.gameEntity then + entity.gameEntity:SetName(v); end end @@ -148,8 +151,8 @@ function World.set_HP_Max( entity , v) end function World.set_state( entity , v) - if entity.character then - entity.character:OnState(v); + if entity.gameEntity then + entity.gameEntity:OnState(v); end if entity:isPlayer() then GameWorldCtrl.OnDie(v); @@ -157,7 +160,7 @@ function World.set_state( entity , v) end function World.updatePosition( entity ) - entity.character.m_destPosition = entity.position; + entity.gameEntity.m_destPosition = entity.position; end function World.recvDamage( receiver, attacker, skillID, damageType, damage ) @@ -171,6 +174,6 @@ function World.recvDamage( receiver, attacker, skillID, damageType, damage ) -- else -- print("rensiwei a nil enity00000"); -- end - receiver.character:recvDamage( receiver, attacker, skillID, damageType, damage ); + receiver.gameEntity:recvDamage( receiver, attacker, skillID, damageType, damage ); log("damage:"..damage); end \ No newline at end of file diff --git a/Assets/StriveGame/Lua/View/GameWorldPanel.lua b/Assets/StriveGame/Lua/View/GameWorldPanel.lua index 7e736c8..972b8d4 100644 --- a/Assets/StriveGame/Lua/View/GameWorldPanel.lua +++ b/Assets/StriveGame/Lua/View/GameWorldPanel.lua @@ -25,6 +25,7 @@ function GameWorldPanel.InitPanel() this.sb_vertical = transform:FindChild("Scroll View/Scrollbar Vertical"):GetComponent("Scrollbar"); this.input_content = transform:FindChild("InputField_content"):GetComponent("InputField"); this.Panel_PlayerHead = transform:FindChild("Panel_PalyerHead").gameObject; + this.btnResetView = transform:FindChild("Button_resetView").gameObject; -- local name_text = GameWorldPanel.Panel_PlayerHead:FindChild("Text_PlayerName"); end diff --git a/Assets/StriveGame/Res/Model/player.prefab b/Assets/StriveGame/Res/Model/player.prefab index 583f7da..01a7e15 100644 --- a/Assets/StriveGame/Res/Model/player.prefab +++ b/Assets/StriveGame/Res/Model/player.prefab @@ -4277,7 +4277,6 @@ GameObject: - 95: {fileID: 9580064} - 54: {fileID: 5412682} - 136: {fileID: 13647710} - - 114: {fileID: 11417524} m_Layer: 0 m_Name: player m_TagString: Player @@ -6432,7 +6431,7 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 114060} - m_LocalRotation: {x: 0.7057108, y: 0.70281136, z: 0.044410672, w: 0.0778221} + m_LocalRotation: {x: 0.70571077, y: 0.7028113, z: 0.04441067, w: 0.07782209} m_LocalPosition: {x: -0.036948025, y: 0.038000025, z: 0.08224521} m_LocalScale: {x: 0.9999997, y: 1, z: 1.0000001} m_Children: @@ -7999,7 +7998,7 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 151174} - m_LocalRotation: {x: 0.7655827, y: -0.16700299, z: 0.4033006, w: 0.47259063} + m_LocalRotation: {x: 0.76558256, y: -0.16700298, z: 0.40330055, w: 0.47259057} m_LocalPosition: {x: -0.13063581, y: -0.035674542, z: -0.20663574} m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 0.9999999} m_Children: @@ -12048,23 +12047,6 @@ MonoBehaviour: m_BlockingMask: serializedVersion: 2 m_Bits: 4294967295 ---- !u!114 &11417524 -MonoBehaviour: - m_ObjectHideFlags: 1 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 100100000} - m_GameObject: {fileID: 167604} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f65255fa7b687e347a71383a6cc713d5, type: 3} - m_Name: - m_EditorClassIdentifier: - HUDRoot: {fileID: 0} - enemy: 0 - friendly: 0 - player: 0 - Other: 0 - Other2: 0 --- !u!114 &11425076 MonoBehaviour: m_ObjectHideFlags: 1 From db6fbc3fe4f29d493ba727bf1d8e014b96b4c544 Mon Sep 17 00:00:00 2001 From: ren19890419 <302842818@qq.com> Date: Sat, 18 Jun 2016 14:18:36 +0800 Subject: [PATCH 09/12] =?UTF-8?q?=E5=8A=A0=E5=85=A5=E6=8A=80=E8=83=BD?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/StriveGame/Editor/Packager.cs | 2 + Assets/StriveGame/Lua/Common/define.lua | 4 + .../Lua/Controller/GameWorldCtrl.lua | 85 +- .../Lua/Controller/PlayerHeadCtrl.lua | 71 + .../Lua/Controller/TargetHeadCtrl.lua | 63 + Assets/StriveGame/Lua/Logic/CameraFollow.lua | 58 +- Assets/StriveGame/Lua/Logic/CtrlManager.lua | 5 +- Assets/StriveGame/Lua/Logic/InputControl.lua | 4 +- Assets/StriveGame/Lua/Logic/SelectControl.lua | 32 + Assets/StriveGame/Lua/Logic/Skill.lua | 66 + Assets/StriveGame/Lua/Logic/SkillBox.lua | 46 + Assets/StriveGame/Lua/Logic/SkillControl.lua | 50 + Assets/StriveGame/Lua/Logic/World.lua | 125 +- Assets/StriveGame/Lua/View/GameWorldPanel.lua | 4 + .../StriveGame/Lua/View/PlayerHeadPanel.lua | 28 + .../StriveGame/Lua/View/TargetHeadPanel.lua | 27 + Assets/StriveGame/Lua/kbe/Avatar.lua | 91 +- .../Lua/kbe/Interface/GameObject.lua | 10 + Assets/StriveGame/Res/Model/player.prefab | 3360 ++++++++--------- .../StriveGame/Res/View/GameWorldPanel.prefab | 12 +- Assets/StriveGame/Scripts/EquipWeapon.cs | 48 + .../ToLua/Source/Generate/LuaBinder.cs | 1 + ProjectSettings/TagManager.asset | 2 +- 23 files changed, 2384 insertions(+), 1810 deletions(-) create mode 100644 Assets/StriveGame/Lua/Controller/PlayerHeadCtrl.lua create mode 100644 Assets/StriveGame/Lua/Controller/TargetHeadCtrl.lua create mode 100644 Assets/StriveGame/Lua/Logic/SelectControl.lua create mode 100644 Assets/StriveGame/Lua/Logic/Skill.lua create mode 100644 Assets/StriveGame/Lua/Logic/SkillBox.lua create mode 100644 Assets/StriveGame/Lua/Logic/SkillControl.lua create mode 100644 Assets/StriveGame/Lua/View/PlayerHeadPanel.lua create mode 100644 Assets/StriveGame/Lua/View/TargetHeadPanel.lua create mode 100644 Assets/StriveGame/Scripts/EquipWeapon.cs diff --git a/Assets/StriveGame/Editor/Packager.cs b/Assets/StriveGame/Editor/Packager.cs index 141208c..c464009 100644 --- a/Assets/StriveGame/Editor/Packager.cs +++ b/Assets/StriveGame/Editor/Packager.cs @@ -171,6 +171,8 @@ static void HandleResBundle() AddBuildMap("MessageBox" + AppConst.ExtName, "MessageBoxPanel.prefab", "Assets/StriveGame/Res/View"); AddBuildMap("SelectAvatar" + AppConst.ExtName, "SelectAvatarPanel.prefab", "Assets/StriveGame/Res/View"); AddBuildMap("GameWorld" + AppConst.ExtName, "GameWorldPanel.prefab", "Assets/StriveGame/Res/View"); + AddBuildMap("PlayerHead" + AppConst.ExtName, "PlayerHeadPanel.prefab", "Assets/StriveGame/Res/View"); + AddBuildMap("TargetHead" + AppConst.ExtName, "TargetHeadPanel.prefab", "Assets/StriveGame/Res/View"); AddBuildMap("Model" + AppConst.ExtName, "*.prefab", "Assets/StriveGame/Res/Model"); AddBuildMap("Skill" + AppConst.ExtName, "*.prefab", "Assets/StriveGame/Res/Skill"); AddBuildMap("Terrain" + AppConst.ExtName, "*.prefab", "Assets/StriveGame/Res/Terrain"); diff --git a/Assets/StriveGame/Lua/Common/define.lua b/Assets/StriveGame/Lua/Common/define.lua index 7fea179..9f9360d 100644 --- a/Assets/StriveGame/Lua/Common/define.lua +++ b/Assets/StriveGame/Lua/Common/define.lua @@ -5,6 +5,8 @@ CtrlNames = { CreateAvatar = "CreateAvatarCtrl", GameWorld = "GameWorldCtrl", MsgBox = "MessageBoxCtrl", + PlayerHead = "PlayerHeadCtrl", + TargetHead = "TargetHeadCtrl", } PanelNames = { @@ -13,6 +15,8 @@ PanelNames = { "CreateAvatarPanel", "GameWorldPanel", "MessageBoxPanel", + "PlayerHeadPanel", + "TargetHeadPanel", } --协议类型-- diff --git a/Assets/StriveGame/Lua/Controller/GameWorldCtrl.lua b/Assets/StriveGame/Lua/Controller/GameWorldCtrl.lua index 54dd83d..af94210 100644 --- a/Assets/StriveGame/Lua/Controller/GameWorldCtrl.lua +++ b/Assets/StriveGame/Lua/Controller/GameWorldCtrl.lua @@ -31,6 +31,10 @@ function GameWorldCtrl.OnCreate(obj) GameWorld:AddClick(GameWorldPanel.btnClose, this.OnClose); GameWorld:AddClick(GameWorldPanel.btnSend, this.OnSendMessage); GameWorld:AddClick(GameWorldPanel.btnResetView, this.OnResetView); + GameWorld:AddClick(GameWorldPanel.btnSkill1, this.OnAttackSkill1); + GameWorld:AddClick(GameWorldPanel.btnSkill2, this.OnAttackSkill2); + GameWorld:AddClick(GameWorldPanel.btnSkill3, this.OnAttackSkill3); + GameWorld:AddClick(GameWorldPanel.btnTabTarget, this.OnTabTarget); logWarn("Start lua--->>"..gameObject.name); Event.AddListener("OnDie", this.OnDie); @@ -39,10 +43,42 @@ function GameWorldCtrl.OnCreate(obj) Event.AddListener("Set_PlayerName", this.Set_PlayerName); Event.AddListener("ReceiveChatMessage", this.ReceiveChatMessage); - if p ~= nil then + Event.AddListener("OnDie", this.OnDie); + Event.AddListener("ReceiveChatMessage", this.ReceiveChatMessage); + + --做一些初始化工作 + local p = KBEngineLua.player(); + if p ~= nil then this.OnDie(p.state); end + this.SetSkillButton(); +end +--切换选择对象 +function GameWorldCtrl.OnTabTarget( ) + local player = KBEngineLua.player(); + if (player == nil) then + return; + end + + local target = TargetHeadCtrl.target; + + local mindis = 10000; + local minEntity = nil; + for i, entity in pairs(KBEngineLua.entities) do + local obj = entity.renderObj; + if (obj ~= nil and obj.layer == LayerMask.NameToLayer("CanAttack") and entity.className == "Monster" and entity.HP > 0) then + local dis = Vector3.Distance(player.position, obj.transform.position); + if (mindis > dis and (target == nil or target ~= nil and target ~= entity)) then + mindis = dis; + minEntity = entity; + end + end + end + if minEntity ~= nil then + TargetHeadCtrl.target = minEntity; + TargetHeadCtrl.UpdateTargetUI(); + end end function GameWorldCtrl.onclick() @@ -75,7 +111,7 @@ end --重置视角 function GameWorldCtrl.OnResetView(go) - CameraFollow:ResetView(); + CameraFollow:ResetView(); end --关闭事件-- @@ -85,6 +121,49 @@ function GameWorldCtrl.Close() Event.RemoveListener("onConnectStatus", this.onConnectStatus); end +--设置技能按钮-- +function GameWorldCtrl.SetSkillButton() + if #SkillBox.skills == 3 then + GameWorldPanel.btnSkill1.transform:FindChild("Text"):GetComponent("Text").text = SkillBox.skills[1].name; + GameWorldPanel.btnSkill2.transform:FindChild("Text"):GetComponent("Text").text = SkillBox.skills[2].name; + GameWorldPanel.btnSkill3.transform:FindChild("Text"):GetComponent("Text").text = SkillBox.skills[3].name; + end +end + +function GameWorldCtrl.AttackSkill(skillID ) + local player = KBEngineLua.player(); + + if (player == nil) then + return; + end + + local target = TargetHeadCtrl.target; + if (player ~= nil) then + local errorCode = player:useTargetSkill(skillID, target); + if (errorCode == 1) then + log("目标太远"); + --逼近目标 + SkillControl.MoveTo(target.renderObj.transform, SkillBox.Get(skillID).canUseDistMax-1, skillID); + end + if (errorCode == 2) then + log("技能冷却"); + end + if (errorCode == 3) then + log("目标已死亡"); + end + end +end + +function GameWorldCtrl.OnAttackSkill1( ) + this.AttackSkill(SkillBox.skills[1].id); +end +function GameWorldCtrl.OnAttackSkill2( ) + this.AttackSkill(SkillBox.skills[2].id); +end +function GameWorldCtrl.OnAttackSkill3( ) + this.AttackSkill(SkillBox.skills[3].id); +end + ------------事件-- --死亡-- function GameWorldCtrl.OnDie(v) @@ -138,3 +217,5 @@ function GameWorldCtrl.ReceiveChatMessage(msg) GameWorldPanel.sb_vertical.value = 0; GameWorldPanel.input_content.text = ""; end + + diff --git a/Assets/StriveGame/Lua/Controller/PlayerHeadCtrl.lua b/Assets/StriveGame/Lua/Controller/PlayerHeadCtrl.lua new file mode 100644 index 0000000..4fa4ca0 --- /dev/null +++ b/Assets/StriveGame/Lua/Controller/PlayerHeadCtrl.lua @@ -0,0 +1,71 @@ +require "Common/define" + +PlayerHeadCtrl = {}; +local this = PlayerHeadCtrl; + +local PlayerHead; +local transform; +local gameObject; + +--构建函数-- +function PlayerHeadCtrl.New() + logWarn("PlayerHeadCtrl.New--->>"); + return this; +end + +function PlayerHeadCtrl.Awake() + logWarn("PlayerHeadCtrl.Awake--->>"); + panelMgr:CreatePanel('PlayerHead', this.OnCreate); + + --Event.AddListener("onPlayerHeadResult", this.onPlayerHeadResult); +end + +--启动事件-- +function PlayerHeadCtrl.OnCreate(obj) + gameObject = obj; + gameObject.transform.position = Vector3.New(87.5, 385, 0); + PlayerHead = gameObject:GetComponent('LuaBehaviour'); + --PlayerHead:AddClick(PlayerHeadPanel.btnPlayerHead, this.OnPlayerHead); + --PlayerHead:AddClick(PlayerHeadPanel.btnCancel, this.OnCancel); + logWarn("Start lua--->>"..gameObject.name); + + this.target = KBEngineLua.player(); + this.UpdateTargetUI(); +end + + +function PlayerHeadCtrl.SetHPMax(v) + PlayerHeadPanel.sliderHp.maxValue = v; + PlayerHeadPanel.textHpDetail.text = PlayerHeadPanel.sliderHp.value .. "/" .. PlayerHeadPanel.sliderHp.maxValue; + +end + +function PlayerHeadCtrl.SetHP(v) + PlayerHeadPanel.sliderHp.value = v; + PlayerHeadPanel.textHpDetail.text = PlayerHeadPanel.sliderHp.value .. "/" .. PlayerHeadPanel.sliderHp.maxValue; +end + +function PlayerHeadCtrl.SetName(v) + PlayerHeadPanel.textTargetName.text = v; +end + +function PlayerHeadCtrl.Deactivate() + gameObject:SetActive(false); +end + +function PlayerHeadCtrl.Activate() + gameObject:SetActive(true); +end + +function PlayerHeadCtrl.UpdateTargetUI() + this.Activate(); + this.SetHPMax(this.target.HP_Max); + this.SetHP(this.target.HP); + this.SetName(this.target.name); +end + +--关闭事件-- +function PlayerHeadCtrl.Close() + --panelMgr:ClosePanel(CtrlNames.CreateAvatar); + destroy(gameObject); +end \ No newline at end of file diff --git a/Assets/StriveGame/Lua/Controller/TargetHeadCtrl.lua b/Assets/StriveGame/Lua/Controller/TargetHeadCtrl.lua new file mode 100644 index 0000000..05ae091 --- /dev/null +++ b/Assets/StriveGame/Lua/Controller/TargetHeadCtrl.lua @@ -0,0 +1,63 @@ +require "Common/define" + +TargetHeadCtrl = {}; +local this = TargetHeadCtrl; + +local TargetHead; +local transform; +local gameObject; + +--构建函数-- +function TargetHeadCtrl.New() + logWarn("TargetHeadCtrl.New--->>"); + return this; +end + +function TargetHeadCtrl.Awake() + logWarn("TargetHeadCtrl.Awake--->>"); + panelMgr:CreatePanel('TargetHead', this.OnCreate); + +end + +--启动事件-- +function TargetHeadCtrl.OnCreate(obj) + gameObject = obj; + gameObject.transform.position = Vector3.New(87.5, 337, 0); + TargetHead = gameObject:GetComponent('LuaBehaviour'); + + this.Deactivate(); + + logWarn("Start lua--->>"..gameObject.name); +end + +function TargetHeadCtrl.SetHPMax(v) + TargetHeadPanel.sliderHp.maxValue = v; +end + +function TargetHeadCtrl.SetHP(v) + TargetHeadPanel.sliderHp.value = v; +end + +function TargetHeadCtrl.SetName(v) + TargetHeadPanel.textTargetName.text = v; +end + +function TargetHeadCtrl.Deactivate() + gameObject:SetActive(false); +end + +function TargetHeadCtrl.Activate() + gameObject:SetActive(true); +end + +function TargetHeadCtrl.UpdateTargetUI() + this.Activate(); + this.SetHPMax(this.target.HP_Max); + this.SetHP(this.target.HP); + this.SetName(this.target.name); +end + +--关闭事件-- +function TargetHeadCtrl.Close() + destroy(gameObject); +end \ No newline at end of file diff --git a/Assets/StriveGame/Lua/Logic/CameraFollow.lua b/Assets/StriveGame/Lua/Logic/CameraFollow.lua index 3f36444..97bcee2 100644 --- a/Assets/StriveGame/Lua/Logic/CameraFollow.lua +++ b/Assets/StriveGame/Lua/Logic/CameraFollow.lua @@ -1,5 +1,5 @@ CameraFollow = { - -- The target we are following + -- The target we are following target = nil, -- The distance in the x-z plane to the target distance = 15.0, @@ -13,21 +13,23 @@ CameraFollow = { transform = nil; }; -function CameraFollow:ResetView( ) +local this = CameraFollow; + +function CameraFollow.ResetView( ) -- Early out if we don't have a target - if (self.target == nil) then + if (this.target == nil) then return; end - self.transform = UnityEngine.Camera.main.transform; + this.transform = UnityEngine.Camera.main.transform; -- Calculate the current rotation angles - local wantedRotationAngle = self.target.eulerAngles.y; - local wantedHeight = self.target.position.y + self.height; + local wantedRotationAngle = this.target.eulerAngles.y; + local wantedHeight = this.target.position.y + this.height; - local currentHeight = self.transform.position.y; + local currentHeight = this.transform.position.y; currentHeight = wantedHeight; -- Damp the height - --currentHeight = Mathf.Lerp(currentHeight, wantedHeight, self.heightDamping * UnityEngine.Time.deltaTime); + --currentHeight = Mathf.Lerp(currentHeight, wantedHeight, this.heightDamping * UnityEngine.Time.deltaTime); -- Convert the angle into a rotation local currentRotation = Quaternion.Euler(0, wantedRotationAngle, 0); @@ -35,31 +37,31 @@ function CameraFollow:ResetView( ) --local currentRotation = 1; -- Set the position of the camera on the x-z plane to: - -- distance meters behind the self.target - self.transform.position = self.target.position; + -- distance meters behind the this.target + this.transform.position = this.target.position; - self.transform.position = self.transform.position - currentRotation * Vector3.forward * self.distance; + this.transform.position = this.transform.position - currentRotation * Vector3.forward * this.distance; -- Set the height of the camera - self.transform.position = Vector3.New(self.transform.position.x, currentHeight, self.transform.position.z); + this.transform.position = Vector3.New(this.transform.position.x, currentHeight, this.transform.position.z); - -- Always look at the self.target - self.transform:LookAt(self.target); + -- Always look at the this.target + this.transform:LookAt(this.target); UnityEngine.Camera.main.active = true; end -function CameraFollow:FollowUpdate() +function CameraFollow.FollowUpdate() -- Early out if we don't have a target - if (not self.target) then + if (not this.target) then return; end -- Calculate the current rotation angles - local wantedRotationAngle = self.target.eulerAngles.y; - local wantedHeight = self.target.position.y + self.height; + local wantedRotationAngle = this.target.eulerAngles.y; + local wantedHeight = this.target.position.y + this.height; - local currentRotationAngle = self.transform.eulerAngles.y; - local currentHeight = self.transform.position.y; + local currentRotationAngle = this.transform.eulerAngles.y; + local currentHeight = this.transform.position.y; local deltaAngle = wantedRotationAngle - currentRotationAngle; if (deltaAngle > 180.0) then deltaAngle = deltaAngle - 360; @@ -69,10 +71,10 @@ function CameraFollow:FollowUpdate() if (deltaAngle < -90) then deltaAngle = -180 - deltaAngle; end -- Damp the rotation around the y-axis - currentRotationAngle = Mathf.LerpAngle(currentRotationAngle, currentRotationAngle+deltaAngle, self.rotationDamping * Time.deltaTime); + currentRotationAngle = Mathf.LerpAngle(currentRotationAngle, currentRotationAngle+deltaAngle, this.rotationDamping * Time.deltaTime); -- Damp the height - currentHeight = Mathf.Lerp(currentHeight, wantedHeight, self.heightDamping * UnityEngine.Time.deltaTime); + currentHeight = Mathf.Lerp(currentHeight, wantedHeight, this.heightDamping * UnityEngine.Time.deltaTime); -- Convert the angle into a rotation local currentRotation = Quaternion.Euler(0, currentRotationAngle, 0); @@ -80,14 +82,14 @@ function CameraFollow:FollowUpdate() --local currentRotation = 1; -- Set the position of the camera on the x-z plane to: - -- distance meters behind the self.target - self.transform.position = self.target.position; + -- distance meters behind the this.target + this.transform.position = this.target.position; - self.transform.position = self.transform.position - currentRotation * Vector3.forward * self.distance; + this.transform.position = this.transform.position - currentRotation * Vector3.forward * this.distance; -- Set the height of the camera - self.transform.position = Vector3.New(self.transform.position.x,currentHeight,self.transform.position.z); + this.transform.position = Vector3.New(this.transform.position.x,currentHeight,this.transform.position.z); - -- Always look at the self.target - self.transform:LookAt(self.target); + -- Always look at the this.target + this.transform:LookAt(this.target); end \ No newline at end of file diff --git a/Assets/StriveGame/Lua/Logic/CtrlManager.lua b/Assets/StriveGame/Lua/Logic/CtrlManager.lua index e1cc7e7..397f492 100644 --- a/Assets/StriveGame/Lua/Logic/CtrlManager.lua +++ b/Assets/StriveGame/Lua/Logic/CtrlManager.lua @@ -3,6 +3,8 @@ require "Controller/LoginCtrl" require "Controller/SelectAvatarCtrl" require "Controller/CreateAvatarCtrl" require "Controller/GameWorldCtrl" +require "Controller/PlayerHeadCtrl" +require "Controller/TargetHeadCtrl" CtrlManager = {}; local this = CtrlManager; @@ -11,11 +13,12 @@ local ctrlList = {}; --控制器列表-- function CtrlManager.Init() logWarn("CtrlManager.Init----->>>"); - ctrlList[CtrlNames.Login] = LoginCtrl.New(); ctrlList[CtrlNames.SelectAvatar] = SelectAvatarCtrl.New(); ctrlList[CtrlNames.CreateAvatar] = CreateAvatarCtrl.New(); ctrlList[CtrlNames.GameWorld] = GameWorldCtrl.New(); + ctrlList[CtrlNames.PlayerHead] = PlayerHeadCtrl.New(); + ctrlList[CtrlNames.TargetHead] = TargetHeadCtrl.New(); return this; end diff --git a/Assets/StriveGame/Lua/Logic/InputControl.lua b/Assets/StriveGame/Lua/Logic/InputControl.lua index a84bf70..2c9d320 100644 --- a/Assets/StriveGame/Lua/Logic/InputControl.lua +++ b/Assets/StriveGame/Lua/Logic/InputControl.lua @@ -37,6 +37,8 @@ function InputControl.OnDisable( ) end function InputControl.OnJoystickMove( move ) + + SkillControl.Stop(); local joyPositionX = move.joystickAxis.x; local joyPositionY = move.joystickAxis.y; @@ -54,7 +56,7 @@ function InputControl.OnJoystickMove( move ) this.headNameCanvasTrans.rotation = rotation; --移动摄像机 - CameraFollow:FollowUpdate(); + CameraFollow.FollowUpdate(); --播放奔跑动画 this.animator.speed = 2.0; this.animator:SetFloat("Speed", 1.0); diff --git a/Assets/StriveGame/Lua/Logic/SelectControl.lua b/Assets/StriveGame/Lua/Logic/SelectControl.lua new file mode 100644 index 0000000..984f0c9 --- /dev/null +++ b/Assets/StriveGame/Lua/Logic/SelectControl.lua @@ -0,0 +1,32 @@ + +SelectControl = {}; + +function SelectControl.Update() + if UnityEngine.Input.GetMouseButtonDown(0) then + local ray = UnityEngine.Camera.main:ScreenPointToRay(UnityEngine.Input.mousePosition); + + local isHit, hit = UnityEngine.Physics.Raycast(ray, nil, 100.0, bit.lshift(1,LayerMask.NameToLayer("CanAttack"))); + if isHit then + for i,v in pairs(KBEngineLua.entities) do + if v.renderObj == hit.collider.gameObject then + TargetHeadCtrl.target = v; + TargetHeadCtrl.UpdateTargetUI(); + end + end + -- UI_Target ui_target = World.instance.getUITarget(); + -- ui_target.GE_target = hit.collider.GetComponent(); + -- ui_target.UpdateTargetUI(); + + -- string name = Utility.getPreString(ui_target.GE_target.name); + -- if (name == "NPC" && !MenuBox.hasMenu()) then + -- Int32 id = Utility.getPostInt(ui_target.GE_target.name); + -- NPC _npc = (NPC)KBEngineApp.app.findEntity(id); + + -- if _npc != null then + -- UInt32 dialogID = (UInt32)_npc.getDefinedProperty("dialogID"); + -- avatar.dialog(id, dialogID); + -- end + -- end + end + end +end \ No newline at end of file diff --git a/Assets/StriveGame/Lua/Logic/Skill.lua b/Assets/StriveGame/Lua/Logic/Skill.lua new file mode 100644 index 0000000..0670665 --- /dev/null +++ b/Assets/StriveGame/Lua/Logic/Skill.lua @@ -0,0 +1,66 @@ + +Skill = { + name = "", + descr = "", + id = 0, + canUseDistMin = 0, + canUseDistMax = 3, + coolTime = 0.5, + + -- SkillDisplay_Event_Effect = 0 + -- SkillDisplay_Event_Bullet = 1 + displayType = 1, + + skillEffect = "", + restCoolTimer = 0, + +}; + +function Skill:New( me ) + me = me or {}; + setmetatable(me, self); + self.__index = self; + return me; +end + +--1: 太远, 2:冷却,3:已死亡 +function Skill:validCast(caster, target) + local dist = Vector3.Distance(target.position, caster.position); + if dist > self.canUseDistMax then + return 1; + elseif self.restCoolTimer < self.coolTime then + return 2; + elseif caster.state == 1 then + return 3; + end + return 0; +end + +function Skill:updateTimer(second) + self.restCoolTimer = self.restCoolTimer + second; +end + +function Skill:use(caster, target) + caster:cellCall({"useTargetSkill", self.id, target.id}); + self.restCoolTimer = 0; +end + +function Skill:displaySkill(caster, target) + if (self.displayType == 1) then + resMgr:LoadPrefab('Skill', { self.skillEffect }, function(objs) + local renderObj = newObject(objs[0]); + local fly = renderObj:GetComponent("NcEffectFlying"); + fly.FromPos = Vector3.New(caster.position.x, caster.position.y+1, caster.position.z); + fly.ToPos = Vector3.New(target.position.x, target.position.y+1, target.position.z); + --fly.Speed = 5.0f; + --fly.HWRate = 0; + end); + + + elseif (self.displayType == 0) then + resMgr:LoadPrefab('Skill', { self.skillEffect }, function(objs) + local renderObj = newObject(objs[0]); + renderObj.transform.position = Vector3.New(target.position.x, target.position.y+1, target.position.z); + end); + end +end \ No newline at end of file diff --git a/Assets/StriveGame/Lua/Logic/SkillBox.lua b/Assets/StriveGame/Lua/Logic/SkillBox.lua new file mode 100644 index 0000000..0a030ec --- /dev/null +++ b/Assets/StriveGame/Lua/Logic/SkillBox.lua @@ -0,0 +1,46 @@ + +SkillBox = { + skills = {}, + dictSkillDisplay = {}, +}; + +local this = SkillBox; + +function SkillBox.Pull( ) + this.Clear(); + local player = KBEngineLua.player(); + if player ~= nil then + player:cellCall({"requestPull"}); + end +end + +function SkillBox.Clear( ) + this.skills = {}; +end + +function SkillBox.Add( skill ) + for i = 1, #this.skills do + if this.skills[i].id == skill.id then + log("SkillBox::add: " .. skill.id .. " is exist!") + end + end + table.insert(this.skills, skill); +end + +function SkillBox.Remove( skillId ) + for i = 1, #this.skills do + if this.skills[i].id == skillId then + table.remove(this.skills, i); + break; + end + end +end + +function SkillBox.Get( skillId ) + for i = 1, #this.skills do + if this.skills[i].id == skillId then + return this.skills[i]; + end + end + return nil; +end \ No newline at end of file diff --git a/Assets/StriveGame/Lua/Logic/SkillControl.lua b/Assets/StriveGame/Lua/Logic/SkillControl.lua new file mode 100644 index 0000000..bd4b44d --- /dev/null +++ b/Assets/StriveGame/Lua/Logic/SkillControl.lua @@ -0,0 +1,50 @@ + +SkillControl = {}; + +local this = SkillControl; + +function SkillControl.Init(player) + if player == nil then + return; + end + + this.hasDes = false; + this.transform = player.renderObj.transform; + this.animator = player.renderObj:GetComponent("Animator"); + +end +function SkillControl.Update() + --更新技能的冷却时间 + for i, sk in ipairs(SkillBox.skills) do + sk:updateTimer(Time.deltaTime); + end + + --自动追击 + if (this.hasDes) then + if (Vector3.Distance(this.transform.position, this.moveDes.position) < this.minLen) then + this.hasDes = false; + this.animator.speed = 1.0; + this.animator:SetFloat("Speed", 0.0); + GameWorldCtrl.AttackSkill(this.skillId); + else + this.transform:LookAt(this.moveDes); + this.transform:Translate(Vector3.forward * Time.deltaTime * 5); + --移动摄像机 + CameraFollow.FollowUpdate(); + --播放奔跑动画 + this.animator.speed = 2.0; + this.animator:SetFloat("Speed", 1.0); + end + end +end + +function SkillControl.Stop() + this.hasDes = false; +end + +function SkillControl.MoveTo(des, minLen, skillId) + this.hasDes = true; + this.moveDes = des; + this.minLen = minLen; + this.skillId = skillId; +end \ No newline at end of file diff --git a/Assets/StriveGame/Lua/Logic/World.lua b/Assets/StriveGame/Lua/Logic/World.lua index 5c47cd0..a274b19 100644 --- a/Assets/StriveGame/Lua/Logic/World.lua +++ b/Assets/StriveGame/Lua/Logic/World.lua @@ -1,10 +1,14 @@ require "Logic/CameraFollow" require "Logic/InputControl" require "Logic/Character" +require "Logic/SelectControl" +require "Logic/SkillControl" require "Controller/GameWorldCtrl" require "Controller/MessageBoxCtrl" World = {}; +World = { +}; function World.init() Event.AddListener("onAvatarEnterWorld", World.onAvatarEnterWorld); @@ -34,8 +38,8 @@ function World.onAvatarEnterWorld( avatar ) go.transform.position = avatar.position; --go.transform.direction = avatar.direction; CameraFollow.target = go.transform; - CameraFollow:ResetView(); - CameraFollow:FollowUpdate(); + CameraFollow.ResetView(); + CameraFollow.FollowUpdate(); InputControl.Init(avatar); InputControl.OnEnable(); @@ -47,12 +51,22 @@ function World.onAvatarEnterWorld( avatar ) if joystick then joystick.gameObject:SetActive(true); end + + --初始化角色技能控制 + SkillControl.Init(avatar); end); - if(0 == GameWorldCtrl.hasAwake) then + if(0 == GameWorldCtrl.hasAwake) then GameWorldCtrl.Awake(); end - SelectAvatarCtrl.Close(); + PlayerHeadCtrl.Awake(); + TargetHeadCtrl.Awake(); + + SelectAvatarCtrl.Close(); + + UpdateBeat:Add(SelectControl.Update); + UpdateBeat:Add(SkillControl.Update); + end function World.onEnterWorld( entity ) @@ -67,13 +81,13 @@ function World.onEnterWorld( entity ) World.InitEntity(entity); end); elseif entity.className == "Monster" then - resMgr:LoadPrefab('Model', { 'player' }, function(objs) + resMgr:LoadPrefab('Model', { 'player' }, function(objs) entity.renderObj = newObject(objs[0]); entity.renderObj.transform.position = entity.position; World.InitEntity(entity); end); elseif entity.className == "DroppedItem" then - resMgr:LoadPrefab('Model', { 'droppedItem' }, function(objs) + resMgr:LoadPrefab('Model', { 'droppedItem' }, function(objs) entity.renderObj = newObject(objs[0]); entity.renderObj.transform.position = entity.position; World.InitEntity(entity); @@ -85,7 +99,7 @@ function World.onEnterWorld( entity ) World.InitEntity(entity); end); elseif entity.className == "NPC" then - resMgr:LoadPrefab('Model', { 'entity' }, function(objs) + resMgr:LoadPrefab('Model', { 'player' }, function(objs) entity.renderObj = newObject(objs[0]); entity.renderObj.transform.position = entity.position; World.InitEntity(entity); @@ -94,23 +108,23 @@ function World.onEnterWorld( entity ) end -function World.InitEntity( entity ) - if entity.className == "Gate" or entity.className == "DroppedItem" then - entity.gameEntity = GameEntity:New(); - else - entity.gameEntity = Character:New(); - end - entity.gameEntity:Init(entity); - - if entity.name then - World.set_name( entity , entity.name ) - end +function World.InitEntity( entity ) + if entity.className == "Gate" or entity.className == "DroppedItem" then + entity.gameEntity = GameEntity:New(); + else + entity.gameEntity = Character:New(); + end + entity.gameEntity:Init(entity); + + if entity.name then + World.set_name( entity , entity.name ) + end end function World.onLeaveWorld(entity) - if entity.gameEntity ~= nil then - entity.gameEntity:Destroy(); - end + if entity.gameEntity ~= nil then + entity.gameEntity:Destroy(); + end if entity.renderObj ~= nil then destroy(entity.renderObj); entity.renderObj = nil; @@ -124,17 +138,17 @@ function World.addSpaceGeometryMapping( path ) end function World.set_position( entity ) - entity.gameEntity:SetPosition(entity.position); + entity.gameEntity:SetPosition(entity.position); end function World.set_direction( entity ) - entity.gameEntity.m_destDirection = Vector3.New(entity.direction.y, entity.direction.z, entity.direction.x); + entity.gameEntity.m_destDirection = Vector3.New(entity.direction.y, entity.direction.z, entity.direction.x); end function World.set_name( entity , v) - if entity.gameEntity then - entity.gameEntity:SetName(v); - end + if entity.gameEntity then + entity.gameEntity:SetName(v); + end end function World.set_HP( entity , v) @@ -151,28 +165,63 @@ function World.set_HP_Max( entity , v) end function World.set_state( entity , v) - if entity.gameEntity then - entity.gameEntity:OnState(v); + if entity.gameEntity then + entity.gameEntity:OnState(v); end if entity:isPlayer() then GameWorldCtrl.OnDie(v); end end +function World.set_HP( entity , v) + if entity.renderObj ~= nil then + if PlayerHeadCtrl.target == entity then + PlayerHeadCtrl.UpdateTargetUI(); + end + if TargetHeadCtrl.target == entity then + TargetHeadCtrl.UpdateTargetUI(); + end + end +end + +function World.set_HP_Max( entity , v) + if entity.renderObj ~= nil then + if PlayerHeadCtrl.target == entity then + PlayerHeadCtrl.UpdateTargetUI(); + end + if TargetHeadCtrl.target == entity then + TargetHeadCtrl.UpdateTargetUI(); + end + end +end + function World.updatePosition( entity ) - entity.gameEntity.m_destPosition = entity.position; + entity.gameEntity.m_destPosition = entity.position; end function World.recvDamage( receiver, attacker, skillID, damageType, damage ) --- print("rensiwei a nil enity : receiver"..receiver.."KBEngineLua.Avatar.id:"..KBEngineLua.Avatar.id1); --- local entity = KBEngineLua.findEntity(receiver); --- if(entity == nil) then --- print("rensiwei a nil enity : receiver"..receiver.."KBEngineLua.Avatar.id:"..KBEngineLua.Avatar.id); --- end --- if(receiver == KBEngineLua.Avatar.id) then--受伤的是主角 --- receiver.character:recvDamage( receiver, attacker, skillID, damageType, damage ); --- else --- print("rensiwei a nil enity00000"); + local sk = SkillBox.Get(skillID); + if (sk ~= nil) then + local renderObj = attacker.renderObj; + renderObj:GetComponent("Animator"):Play("Punch"); + + if attacker:isPlayer() then + local dir = receiver.position - attacker.position; + renderObj.transform:LookAt(Vector3.New(renderObj.transform.position.x + dir.x, renderObj.transform.position.y, renderObj.transform.position.z + dir.z)); + end + + --显示技能效果 + sk:displaySkill(attacker, receiver); + end +-- print("rensiwei a nil enity : receiver"..receiver.."KBEngineLua.Avatar.id:"..KBEngineLua.Avatar.id1); +-- local entity = KBEngineLua.findEntity(receiver); +-- if(entity == nil) then +-- print("rensiwei a nil enity : receiver"..receiver.."KBEngineLua.Avatar.id:"..KBEngineLua.Avatar.id); +-- end +-- if(receiver == KBEngineLua.Avatar.id) then--受伤的是主角 +-- receiver.character:recvDamage( receiver, attacker, skillID, damageType, damage ); +-- else +-- print("rensiwei a nil enity00000"); -- end receiver.gameEntity:recvDamage( receiver, attacker, skillID, damageType, damage ); log("damage:"..damage); diff --git a/Assets/StriveGame/Lua/View/GameWorldPanel.lua b/Assets/StriveGame/Lua/View/GameWorldPanel.lua index 972b8d4..c008ad4 100644 --- a/Assets/StriveGame/Lua/View/GameWorldPanel.lua +++ b/Assets/StriveGame/Lua/View/GameWorldPanel.lua @@ -26,6 +26,10 @@ function GameWorldPanel.InitPanel() this.input_content = transform:FindChild("InputField_content"):GetComponent("InputField"); this.Panel_PlayerHead = transform:FindChild("Panel_PalyerHead").gameObject; this.btnResetView = transform:FindChild("Button_resetView").gameObject; + this.btnSkill1 = transform:FindChild("Button_skill1").gameObject; + this.btnSkill2 = transform:FindChild("Button_skill2").gameObject; + this.btnSkill3 = transform:FindChild("Button_skill3").gameObject; + this.btnTabTarget = transform:FindChild("Button_tabTarget").gameObject; -- local name_text = GameWorldPanel.Panel_PlayerHead:FindChild("Text_PlayerName"); end diff --git a/Assets/StriveGame/Lua/View/PlayerHeadPanel.lua b/Assets/StriveGame/Lua/View/PlayerHeadPanel.lua new file mode 100644 index 0000000..cff5527 --- /dev/null +++ b/Assets/StriveGame/Lua/View/PlayerHeadPanel.lua @@ -0,0 +1,28 @@ +local transform; +local gameObject; + +PlayerHeadPanel = {}; +local this = PlayerHeadPanel; + +--启动事件-- +function PlayerHeadPanel.Awake(obj) + + gameObject = obj; + transform = obj.transform; + + this.InitPanel(); + logWarn("Awake lua--->>"..gameObject.name); +end + +--初始化面板-- +function PlayerHeadPanel.InitPanel() + this.sliderHp = transform:FindChild("Slider_targetHP"):GetComponent("Slider"); + this.textTargetName = transform:FindChild("Text_targetName"):GetComponent("Text"); + this.textHpDetail = transform:FindChild("Text_hp"):GetComponent("Text"); +end + +--单击事件-- +function PlayerHeadPanel.OnDestroy() + logWarn("OnDestroy---->>>"); +end + diff --git a/Assets/StriveGame/Lua/View/TargetHeadPanel.lua b/Assets/StriveGame/Lua/View/TargetHeadPanel.lua new file mode 100644 index 0000000..e661d54 --- /dev/null +++ b/Assets/StriveGame/Lua/View/TargetHeadPanel.lua @@ -0,0 +1,27 @@ +local transform; +local gameObject; + +TargetHeadPanel = {}; +local this = TargetHeadPanel; + +--启动事件-- +function TargetHeadPanel.Awake(obj) + + gameObject = obj; + transform = obj.transform; + + this.InitPanel(); + logWarn("Awake lua--->>"..gameObject.name); +end + +--初始化面板-- +function TargetHeadPanel.InitPanel() + this.sliderHp = transform:FindChild("Slider_targetHP"):GetComponent("Slider"); + this.textTargetName = transform:FindChild("Text_targetName"):GetComponent("Text"); +end + +--单击事件-- +function TargetHeadPanel.OnDestroy() + logWarn("OnDestroy---->>>"); +end + diff --git a/Assets/StriveGame/Lua/kbe/Avatar.lua b/Assets/StriveGame/Lua/kbe/Avatar.lua index 83d7368..1592a4b 100644 --- a/Assets/StriveGame/Lua/kbe/Avatar.lua +++ b/Assets/StriveGame/Lua/kbe/Avatar.lua @@ -1,4 +1,6 @@ require "Kbe/Interface/GameObject" +require "Logic/SkillBox" +require "Logic/Skill" KBEngineLua.Avatar = { itemDict = {}, @@ -36,6 +38,7 @@ end function KBEngineLua.Avatar:onEnterWorld() if self:isPlayer() then Event.Brocast("onAvatarEnterWorld", self); + SkillBox.Pull(); end end @@ -47,17 +50,87 @@ function KBEngineLua.Avatar:sendChatMessage(msg) self:baseCall({"sendChatMessage", self.name .. ": " .. msg}); end +function KBEngineLua.Avatar:useTargetSkill(skillID, target) + local skill = SkillBox.Get(skillID); + if (skill == nil) then + return 4; + end + + if target == nil then + return 4; + end + local errorCode = skill:validCast(self, target); + if (errorCode == 0) then + skill:use(self, target); + return errorCode; + end + return errorCode; +end + -------client method----------------------------------- + function KBEngineLua.Avatar:ReceiveChatMessage(msg) Event.Brocast("ReceiveChatMessage", msg); end -function KBEngineLua.Avatar:set_HP_Max(old) - local v = self.HP_Max; - Event.Brocast("set_HP_Max", self, v); -end - -function KBEngineLua.Avatar:set_MP_Max(old) - local v = self.MP_Max; --- Event.Brocast("set_MP_Max", self, v); -end \ No newline at end of file +function KBEngineLua.Avatar:onAddSkill(skillID) + log(self.className .. "::onAddSkill(" .. skillID .. ")"); + + local skill = Skill:New(); + skill.id = skillID; + skill.name = skillID .. " "; + if skillID == 1 then + skill.displayType = 1; + skill.canUseDistMax = 30; + skill.skillEffect = "skill1"; + skill.name = "魔法球"; + elseif skillID == 2 then + skill.displayType = 1; + skill.canUseDistMax = 30; + skill.skillEffect = "skill2"; + skill.name = "火球"; + elseif skillID == 3 then + skill.displayType = 1; + skill.canUseDistMax = 20; + skill.skillEffect = "skill3"; + skill.name = "治疗"; + elseif skillID == 4 then + skill.displayType = 0; + skill.canUseDistMax = 5; + skill.skillEffect = "skill4"; + skill.name = "斩击"; + elseif skillID == 5 then + skill.displayType = 0; + skill.canUseDistMax = 5; + skill.skillEffect = "skill5"; + skill.name = "挥击"; + elseif skillID == 6 then + skill.displayType = 0; + skill.canUseDistMax = 5; + skill.skillEffect = "skill6"; + skill.name = "吸血"; + else + skill.displayType = 0; + skill.canUseDistMax = 5; + skill.skillEffect = "skill6"; + skill.name = "未知"; + end; + + SkillBox.Add(skill); + +end + +function KBEngineLua.Avatar:onRemoveSkill(skillID) + log(className .. "::onRemoveSkill(" .. skillID .. ")"); + SkillBox.Remove(skillID); +end + +function KBEngineLua.Avatar:set_HP_Max(old) + local v = self.HP_Max; + Event.Brocast("set_HP_Max", self, v); +end + +function KBEngineLua.Avatar:set_MP_Max(old) + local v = self.MP_Max; +-- Event.Brocast("set_MP_Max", self, v);endendend +end diff --git a/Assets/StriveGame/Lua/kbe/Interface/GameObject.lua b/Assets/StriveGame/Lua/kbe/Interface/GameObject.lua index f910f35..4766afb 100644 --- a/Assets/StriveGame/Lua/kbe/Interface/GameObject.lua +++ b/Assets/StriveGame/Lua/kbe/Interface/GameObject.lua @@ -52,6 +52,16 @@ function KBEngineLua.Entity:set_state(old) Event.Brocast("set_state", self, v); end +function KBEngineLua.Entity:set_HP(old) + local v = self.HP; + Event.Brocast("set_HP", self, v); +end + +function KBEngineLua.Entity:set_HP_Max(old) + local v = self.HP_Max; + Event.Brocast("set_HP_Max", self, v); +end + function KBEngineLua.Entity:recvDamage(attackerID, skillID, damageType, damage) --Dbg.DEBUG_MSG(className + "::recvDamage: attackerID=" + attackerID + ", skillID=" + skillID + ", damageType=" + damageType + ", damage=" + damage); diff --git a/Assets/StriveGame/Res/Model/player.prefab b/Assets/StriveGame/Res/Model/player.prefab index 01a7e15..3b90b17 100644 --- a/Assets/StriveGame/Res/Model/player.prefab +++ b/Assets/StriveGame/Res/Model/player.prefab @@ -8,7 +8,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 419050} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-sub_hips m_TagString: Untagged m_Icon: {fileID: 0} @@ -23,7 +23,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 447482} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shoulder_fk_ns_ch_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -38,7 +38,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 485198} - m_Layer: 0 + m_Layer: 9 m_Name: f_pinky_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -53,7 +53,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 450740} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_middle_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -68,7 +68,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 416624} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_middle_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -83,7 +83,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 497338} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-thigh_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -98,7 +98,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 401474} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-shin_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -113,7 +113,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 465770} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shin_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -128,7 +128,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 415260} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thigh_fk_R_socket2 m_TagString: Untagged m_Icon: {fileID: 0} @@ -143,7 +143,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 433904} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shoulder_ik_ns_intr_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -158,7 +158,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 407560} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-thigh_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -173,7 +173,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 489366} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_ring_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -188,7 +188,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 431342} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_pinky_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -221,7 +221,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 417958} - m_Layer: 0 + m_Layer: 9 m_Name: f_pinky_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -236,7 +236,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 436868} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_index_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -251,7 +251,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 482734} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-spine_flex m_TagString: Untagged m_Icon: {fileID: 0} @@ -266,7 +266,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 475750} - m_Layer: 0 + m_Layer: 9 m_Name: shin_hose_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -281,7 +281,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 435298} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shoulder_rh_ns_ch_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -296,7 +296,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 405780} - m_Layer: 0 + m_Layer: 9 m_Name: VIS-hand_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -311,7 +311,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 456860} - m_Layer: 0 + m_Layer: 9 m_Name: shoulder_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -326,7 +326,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 459746} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-thumb_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -341,7 +341,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 407636} - m_Layer: 0 + m_Layer: 9 m_Name: torso m_TagString: Untagged m_Icon: {fileID: 0} @@ -356,7 +356,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 459634} - m_Layer: 0 + m_Layer: 9 m_Name: VIS-hand_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -371,7 +371,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 497744} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-hand_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -386,7 +386,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 446118} - m_Layer: 0 + m_Layer: 9 m_Name: knee_hose_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -401,7 +401,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 477384} - m_Layer: 0 + m_Layer: 9 m_Name: foot_roll_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -416,7 +416,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 463792} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_middle_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -431,7 +431,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 447076} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_ring_01_L_01 m_TagString: Untagged m_Icon: {fileID: 0} @@ -446,7 +446,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 405078} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-palm_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -461,7 +461,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 435076} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-forearm_stretch_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -476,7 +476,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 463592} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-neck_follow m_TagString: Untagged m_Icon: {fileID: 0} @@ -491,7 +491,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 406848} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-spine_flex_s m_TagString: Untagged m_Icon: {fileID: 0} @@ -506,7 +506,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 444440} - m_Layer: 0 + m_Layer: 9 m_Name: VIS-foot_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -521,7 +521,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 476392} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_index_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -536,7 +536,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 447748} - m_Layer: 0 + m_Layer: 9 m_Name: elbow_hose_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -551,7 +551,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 459124} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-toe_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -566,7 +566,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 485204} - m_Layer: 0 + m_Layer: 9 m_Name: thigh_hose_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -581,7 +581,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 417088} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_ring_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -596,7 +596,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 425614} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_middle_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -611,7 +611,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 460424} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-thumb_01_L_02 m_TagString: Untagged m_Icon: {fileID: 0} @@ -626,7 +626,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 458592} - m_Layer: 0 + m_Layer: 9 m_Name: upper_arm_fk_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -641,7 +641,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 456208} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-palm_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -656,7 +656,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 484398} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-upper_arm_fk_R_socket2 m_TagString: Untagged m_Icon: {fileID: 0} @@ -671,7 +671,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 432012} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-palm_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -686,7 +686,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 413470} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-thigh_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -701,7 +701,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 404186} - m_Layer: 0 + m_Layer: 9 m_Name: upper_arm_hose_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -716,7 +716,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 433394} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-neck m_TagString: Untagged m_Icon: {fileID: 0} @@ -731,7 +731,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 470564} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-foot_R_roll_02 m_TagString: Untagged m_Icon: {fileID: 0} @@ -746,7 +746,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 407950} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shin_stretch_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -761,7 +761,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 486510} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-forearm_stretch_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -776,7 +776,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 410026} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-neck m_TagString: Untagged m_Icon: {fileID: 0} @@ -791,7 +791,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 495908} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-shoulder_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -806,7 +806,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 416532} - m_Layer: 0 + m_Layer: 9 m_Name: root m_TagString: Untagged m_Icon: {fileID: 0} @@ -821,7 +821,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 486042} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-foot_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -836,7 +836,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 470518} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_index_01_R_02 m_TagString: Untagged m_Icon: {fileID: 0} @@ -851,7 +851,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 447772} - m_Layer: 0 + m_Layer: 9 m_Name: f_middle_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -866,7 +866,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 420618} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-par_spine m_TagString: Untagged m_Icon: {fileID: 0} @@ -881,7 +881,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 400936} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-foot_L_rocker_01 m_TagString: Untagged m_Icon: {fileID: 0} @@ -896,7 +896,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 474682} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-hips m_TagString: Untagged m_Icon: {fileID: 0} @@ -911,7 +911,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 480430} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-forearm_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -926,7 +926,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 405062} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_index_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -941,7 +941,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 419364} - m_Layer: 0 + m_Layer: 9 m_Name: elbow_hose_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -956,7 +956,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 476366} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-chest m_TagString: Untagged m_Icon: {fileID: 0} @@ -971,7 +971,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 432318} - m_Layer: 0 + m_Layer: 9 m_Name: thumb_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -986,7 +986,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 497656} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thigh_smth_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1001,7 +1001,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 432066} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-hand_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1016,7 +1016,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 462762} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_index_01_L_01 m_TagString: Untagged m_Icon: {fileID: 0} @@ -1031,7 +1031,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 494576} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-palm_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1046,7 +1046,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 485286} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-hand_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1061,7 +1061,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 410054} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-upper_arm_antistr_fk_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1076,7 +1076,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 405686} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hips_rh_ns_intr m_TagString: Untagged m_Icon: {fileID: 0} @@ -1091,7 +1091,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 464134} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_index_01_R_tip m_TagString: Untagged m_Icon: {fileID: 0} @@ -1106,7 +1106,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 416886} - m_Layer: 0 + m_Layer: 9 m_Name: forearm_fk_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1121,7 +1121,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 408570} - m_Layer: 0 + m_Layer: 9 m_Name: f_pinky_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1136,7 +1136,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 405524} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shin_smth_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1151,7 +1151,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 489820} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-forearm_nostr_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1166,7 +1166,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 472574} - m_Layer: 0 + m_Layer: 9 m_Name: hips m_TagString: Untagged m_Icon: {fileID: 0} @@ -1181,7 +1181,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 438632} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-head_02 m_TagString: Untagged m_Icon: {fileID: 0} @@ -1196,7 +1196,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 466826} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-chest_flex m_TagString: Untagged m_Icon: {fileID: 0} @@ -1211,7 +1211,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 403188} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_middle_01_R_01 m_TagString: Untagged m_Icon: {fileID: 0} @@ -1226,7 +1226,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 442856} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-palm_04_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1241,7 +1241,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 403770} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-thigh_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1256,7 +1256,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 475116} - m_Layer: 0 + m_Layer: 9 m_Name: f_middle_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1271,7 +1271,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 488510} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_pinky_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1286,7 +1286,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 442664} - m_Layer: 0 + m_Layer: 9 m_Name: f_pinky_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1301,7 +1301,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 499694} - m_Layer: 0 + m_Layer: 9 m_Name: toe_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1316,7 +1316,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 486886} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_pinky_01_R_01 m_TagString: Untagged m_Icon: {fileID: 0} @@ -1331,7 +1331,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 419024} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-upper_arm_nostr_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1346,7 +1346,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 432864} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-forearm_junc_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1361,7 +1361,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 448370} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_ring_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1376,7 +1376,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 469836} - m_Layer: 0 + m_Layer: 9 m_Name: foot_fk_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1391,7 +1391,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 402414} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-thumb_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1406,7 +1406,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 403916} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-thumb_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1421,7 +1421,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 435386} - m_Layer: 0 + m_Layer: 9 m_Name: thumb_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1436,7 +1436,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 446812} - m_Layer: 0 + m_Layer: 9 m_Name: knee_target_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1451,7 +1451,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 499532} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_ring_01_L_02 m_TagString: Untagged m_Icon: {fileID: 0} @@ -1466,7 +1466,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 488020} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_ring_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1481,7 +1481,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 479370} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_middle_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1496,7 +1496,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 414508} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shin_hose_parent_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1511,7 +1511,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 490724} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_ring_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1526,7 +1526,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 468046} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-shoulder_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1541,7 +1541,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 427234} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-palm_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1556,7 +1556,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 426302} - m_Layer: 0 + m_Layer: 9 m_Name: thigh_hose_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1571,7 +1571,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 405408} - m_Layer: 0 + m_Layer: 9 m_Name: palm_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1586,7 +1586,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 453642} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-head_003 m_TagString: Untagged m_Icon: {fileID: 0} @@ -1601,7 +1601,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 440554} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_ring_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1616,7 +1616,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 423768} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_middle_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1648,7 +1648,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 450460} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-upper_arm_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1663,7 +1663,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 402568} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-head_004 m_TagString: Untagged m_Icon: {fileID: 0} @@ -1678,7 +1678,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 449392} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_pinky_01_R_tip m_TagString: Untagged m_Icon: {fileID: 0} @@ -1693,7 +1693,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 433898} - m_Layer: 0 + m_Layer: 9 m_Name: f_ring_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1708,7 +1708,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 437036} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thumb_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1723,7 +1723,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 420340} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-forearm_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1738,7 +1738,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 448832} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-thumb_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1753,7 +1753,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 447564} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hips_ik_ns_ch m_TagString: Untagged m_Icon: {fileID: 0} @@ -1768,7 +1768,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 486982} - m_Layer: 0 + m_Layer: 9 m_Name: chest m_TagString: Untagged m_Icon: {fileID: 0} @@ -1783,7 +1783,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 462546} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-sub_spine m_TagString: Untagged m_Icon: {fileID: 0} @@ -1798,7 +1798,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 475314} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-shoulder_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1813,7 +1813,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 424620} - m_Layer: 0 + m_Layer: 9 m_Name: f_index_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1828,7 +1828,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 424834} - m_Layer: 0 + m_Layer: 9 m_Name: thumb_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1843,7 +1843,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 418098} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-upper_arm_smth_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1858,7 +1858,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 443796} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_middle_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1873,7 +1873,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 481704} - m_Layer: 0 + m_Layer: 9 m_Name: head_001 m_TagString: Untagged m_Icon: {fileID: 0} @@ -1888,7 +1888,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 423428} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-upper_arm_smth_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1903,7 +1903,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 456566} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_ring_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1918,7 +1918,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 459784} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_index_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -1933,7 +1933,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 437084} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hand_L_001 m_TagString: Untagged m_Icon: {fileID: 0} @@ -1948,7 +1948,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 430802} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-thumb_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1963,7 +1963,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 425698} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-heel_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -1978,7 +1978,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 463130} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-hips m_TagString: Untagged m_Icon: {fileID: 0} @@ -1993,7 +1993,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 414260} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-foot_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2008,7 +2008,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 442378} - m_Layer: 0 + m_Layer: 9 m_Name: forearm_hose_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2023,7 +2023,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 476318} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hips_rh_ns_ch m_TagString: Untagged m_Icon: {fileID: 0} @@ -2038,7 +2038,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 409544} - m_Layer: 0 + m_Layer: 9 m_Name: shin_fk_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2053,7 +2053,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 431906} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_pinky_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2068,7 +2068,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 400238} - m_Layer: 0 + m_Layer: 9 m_Name: f_ring_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2083,7 +2083,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 475278} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shoulder_fk_ns_intr_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2098,7 +2098,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 440072} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-upper_arm_fk_L_socket1 m_TagString: Untagged m_Icon: {fileID: 0} @@ -2113,7 +2113,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 404228} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thigh_fk_L_socket1 m_TagString: Untagged m_Icon: {fileID: 0} @@ -2128,7 +2128,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 445448} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-upper_arm_stretch_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2143,7 +2143,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 464532} - m_Layer: 0 + m_Layer: 9 m_Name: VIS-upper_arm_pole_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2158,7 +2158,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 493586} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-upper_arm_nostr_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2173,7 +2173,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 482832} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_index_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2188,7 +2188,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 427186} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_pinky_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2203,7 +2203,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 404542} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_ring_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2218,7 +2218,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 450940} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-shin_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2233,7 +2233,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 486980} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-spine m_TagString: Untagged m_Icon: {fileID: 0} @@ -2248,7 +2248,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 416636} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_index_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2263,7 +2263,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 495852} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_pinky_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2278,7 +2278,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 448076} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_index_01_L_tip m_TagString: Untagged m_Icon: {fileID: 0} @@ -2293,7 +2293,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 438878} - m_Layer: 0 + m_Layer: 9 m_Name: palm_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2308,7 +2308,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 418492} - m_Layer: 0 + m_Layer: 9 m_Name: f_ring_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2323,7 +2323,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 485498} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-head_001 m_TagString: Untagged m_Icon: {fileID: 0} @@ -2338,7 +2338,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 452382} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shin_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2353,7 +2353,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 447500} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_pinky_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2368,7 +2368,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 408752} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-thumb_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2383,7 +2383,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 488858} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-head_001 m_TagString: Untagged m_Icon: {fileID: 0} @@ -2398,7 +2398,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 402816} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-palm_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2413,7 +2413,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 420124} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-forearm_nostr_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2428,7 +2428,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 485390} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-upper_arm_fk_R_socket1 m_TagString: Untagged m_Icon: {fileID: 0} @@ -2443,7 +2443,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 471388} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_middle_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2458,7 +2458,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 467020} - m_Layer: 0 + m_Layer: 9 m_Name: elbow_target_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2473,7 +2473,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 445470} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_middle_01_L_01 m_TagString: Untagged m_Icon: {fileID: 0} @@ -2488,7 +2488,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 404202} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-toe_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2503,7 +2503,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 429732} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_pinky_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2518,7 +2518,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 427588} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_middle_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2533,7 +2533,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 421732} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shin_junc_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2548,7 +2548,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 424830} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thigh_fk_R_socket1 m_TagString: Untagged m_Icon: {fileID: 0} @@ -2563,7 +2563,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 448938} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-palm_04_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2578,7 +2578,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 476944} - m_Layer: 0 + m_Layer: 9 m_Name: shoulder_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2593,7 +2593,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 486100} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-thumb_01_R_01 m_TagString: Untagged m_Icon: {fileID: 0} @@ -2608,7 +2608,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 417690} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-foot_L_001 m_TagString: Untagged m_Icon: {fileID: 0} @@ -2623,7 +2623,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 431054} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-spine_reverse m_TagString: Untagged m_Icon: {fileID: 0} @@ -2638,7 +2638,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 438954} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thigh_smth_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2653,7 +2653,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 449400} - m_Layer: 0 + m_Layer: 9 m_Name: knee_target_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2668,7 +2668,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 415788} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-toe_R_socket1 m_TagString: Untagged m_Icon: {fileID: 0} @@ -2683,7 +2683,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 473404} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-heel_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2698,7 +2698,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 468536} - m_Layer: 0 + m_Layer: 9 m_Name: f_index_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2713,7 +2713,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 440094} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_index_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2728,7 +2728,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 416056} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-head_001_02 m_TagString: Untagged m_Icon: {fileID: 0} @@ -2743,7 +2743,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 413244} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-palm_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2758,7 +2758,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 438156} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-upper_arm_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2773,7 +2773,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 407690} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-shin_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2788,7 +2788,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 444336} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shin_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2803,7 +2803,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 406300} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-upper_arm_hose_parent_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2818,7 +2818,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 458390} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shin_antistr_fk_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2833,7 +2833,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 430326} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thumb_01_L_tip m_TagString: Untagged m_Icon: {fileID: 0} @@ -2848,7 +2848,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 404928} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-forearm_smth_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2863,7 +2863,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 426704} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shoulder_rh_ns_ch_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2879,7 +2879,7 @@ GameObject: m_Component: - 4: {fileID: 418190} - 137: {fileID: 13776172} - m_Layer: 0 + m_Layer: 9 m_Name: rabbit m_TagString: Untagged m_Icon: {fileID: 0} @@ -2894,7 +2894,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 498190} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-toe_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2909,7 +2909,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 482898} - m_Layer: 0 + m_Layer: 9 m_Name: f_pinky_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2924,7 +2924,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 430614} - m_Layer: 0 + m_Layer: 9 m_Name: foot_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2939,7 +2939,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 418680} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hips_fk_ns_intr_001 m_TagString: Untagged m_Icon: {fileID: 0} @@ -2954,7 +2954,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 463706} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-forearm_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -2969,7 +2969,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 487578} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-upper_arm_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2984,7 +2984,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 463912} - m_Layer: 0 + m_Layer: 9 m_Name: thumb_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -2999,7 +2999,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 478078} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_middle_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3014,7 +3014,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 434950} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hips_fk_ns_ch m_TagString: Untagged m_Icon: {fileID: 0} @@ -3029,7 +3029,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 454418} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thumb_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3044,7 +3044,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 458136} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_middle_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3059,7 +3059,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 458896} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-forearm_antistr_fk_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3074,7 +3074,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 456036} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-forearm_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3089,7 +3089,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 492242} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hips_fk_ns_ch_001 m_TagString: Untagged m_Icon: {fileID: 0} @@ -3104,7 +3104,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 418534} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shin_stretch_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3119,7 +3119,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 482018} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thigh_fk_L_socket2 m_TagString: Untagged m_Icon: {fileID: 0} @@ -3134,7 +3134,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 497362} - m_Layer: 0 + m_Layer: 9 m_Name: thigh_fk_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3149,7 +3149,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 497040} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-head m_TagString: Untagged m_Icon: {fileID: 0} @@ -3164,7 +3164,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 469096} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-toe_L_parent m_TagString: Untagged m_Icon: {fileID: 0} @@ -3179,7 +3179,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 481516} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_index_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3194,7 +3194,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 444204} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-upper_arm_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3209,7 +3209,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 401660} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_pinky_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3224,7 +3224,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 444872} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-forearm_hose_parent_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3239,7 +3239,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 441232} - m_Layer: 0 + m_Layer: 9 m_Name: knee_hose_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3254,7 +3254,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 475994} - m_Layer: 0 + m_Layer: 9 m_Name: shin_fk_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3269,7 +3269,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 498964} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-upper_arm_stretch_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3284,7 +3284,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 428848} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-elbow_hose_parent_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3299,7 +3299,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 494944} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thigh_hose_parent_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3314,7 +3314,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 487724} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-sub_chest m_TagString: Untagged m_Icon: {fileID: 0} @@ -3329,7 +3329,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 425880} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_ring_01_R_tip m_TagString: Untagged m_Icon: {fileID: 0} @@ -3344,7 +3344,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 488258} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-palm_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3359,7 +3359,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 486774} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_pinky_01_R_02 m_TagString: Untagged m_Icon: {fileID: 0} @@ -3374,7 +3374,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 469546} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-foot_R_roll_01 m_TagString: Untagged m_Icon: {fileID: 0} @@ -3389,7 +3389,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 459826} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-palm_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3404,7 +3404,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 416778} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thigh_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3419,7 +3419,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 458972} - m_Layer: 0 + m_Layer: 9 m_Name: hand_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3434,7 +3434,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 412736} - m_Layer: 0 + m_Layer: 9 m_Name: VIS-foot_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3449,7 +3449,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 424952} - m_Layer: 0 + m_Layer: 9 m_Name: f_ring_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3464,7 +3464,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 496684} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-thumb_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3479,7 +3479,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 445702} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shoulder_rh_ns_intr_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3494,7 +3494,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 477270} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_ring_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3509,7 +3509,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 454338} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-foot_L_roll_02 m_TagString: Untagged m_Icon: {fileID: 0} @@ -3524,7 +3524,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 461538} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shoulder_rh_ns_intr_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3539,7 +3539,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 439106} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-hand_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3554,7 +3554,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 423494} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-toe_R_parent m_TagString: Untagged m_Icon: {fileID: 0} @@ -3569,7 +3569,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 491788} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_pinky_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3584,7 +3584,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 472362} - m_Layer: 0 + m_Layer: 9 m_Name: f_ring_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3599,7 +3599,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 478636} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hand_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3614,7 +3614,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 405902} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-shoulder_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3629,7 +3629,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 437030} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-forearm_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3644,7 +3644,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 474724} - m_Layer: 0 + m_Layer: 9 m_Name: foot_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3659,7 +3659,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 453910} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-palm_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3674,7 +3674,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 491422} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shin_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3689,7 +3689,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 458850} - m_Layer: 0 + m_Layer: 9 m_Name: forearm_fk_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3704,7 +3704,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 443100} - m_Layer: 0 + m_Layer: 9 m_Name: f_index_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3719,7 +3719,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 465524} - m_Layer: 0 + m_Layer: 9 m_Name: f_ring_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3734,7 +3734,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 484200} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-upper_arm_hose_parent_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3749,7 +3749,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 408624} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-heel_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3764,7 +3764,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 497196} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_middle_01_R_02 m_TagString: Untagged m_Icon: {fileID: 0} @@ -3779,7 +3779,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 489554} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-forearm_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3794,7 +3794,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 479226} - m_Layer: 0 + m_Layer: 9 m_Name: VIS-upper_arm_pole_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3809,7 +3809,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 415154} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-head_001_socket2 m_TagString: Untagged m_Icon: {fileID: 0} @@ -3824,7 +3824,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 455430} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-thumb_01_L_01 m_TagString: Untagged m_Icon: {fileID: 0} @@ -3839,7 +3839,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 444636} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-foot_L_roll_01 m_TagString: Untagged m_Icon: {fileID: 0} @@ -3854,7 +3854,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 444524} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_index_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3869,7 +3869,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 437754} - m_Layer: 0 + m_Layer: 9 m_Name: f_ring_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3884,7 +3884,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 429044} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_pinky_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -3899,7 +3899,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 486168} - m_Layer: 0 + m_Layer: 9 m_Name: f_index_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3914,7 +3914,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 462224} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-neck_child m_TagString: Untagged m_Icon: {fileID: 0} @@ -3929,7 +3929,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 486504} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_middle_01_L_02 m_TagString: Untagged m_Icon: {fileID: 0} @@ -3944,7 +3944,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 499498} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hips_ik_ns_intr m_TagString: Untagged m_Icon: {fileID: 0} @@ -3959,7 +3959,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 415538} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shoulder_fk_ns_ch_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3974,7 +3974,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 406398} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_ring_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -3989,7 +3989,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 400782} - m_Layer: 0 + m_Layer: 9 m_Name: upper_arm_hose_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4004,7 +4004,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 481160} - m_Layer: 0 + m_Layer: 9 m_Name: hand_fk_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4019,7 +4019,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 422148} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-knee_hose_parent_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4034,7 +4034,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 472606} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-head_002 m_TagString: Untagged m_Icon: {fileID: 0} @@ -4049,7 +4049,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 409420} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shoulder_ik_ns_intr_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4064,7 +4064,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 477260} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hips_rh_ns_ch_001 m_TagString: Untagged m_Icon: {fileID: 0} @@ -4079,7 +4079,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 413674} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shin_antistr_fk_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4094,7 +4094,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 492750} - m_Layer: 0 + m_Layer: 9 m_Name: thumb_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4109,7 +4109,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 482052} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shin_junc_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4124,7 +4124,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 402014} - m_Layer: 0 + m_Layer: 9 m_Name: f_pinky_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4139,7 +4139,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 464892} - m_Layer: 0 + m_Layer: 9 m_Name: f_middle_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4154,7 +4154,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 482966} - m_Layer: 0 + m_Layer: 9 m_Name: foot_fk_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4169,7 +4169,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 466040} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_pinky_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4184,7 +4184,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 472310} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thumb_01_R_tip m_TagString: Untagged m_Icon: {fileID: 0} @@ -4199,7 +4199,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 483464} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-upper_arm_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4214,7 +4214,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 469756} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-shin_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4229,7 +4229,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 497248} - m_Layer: 0 + m_Layer: 9 m_Name: spine m_TagString: Untagged m_Icon: {fileID: 0} @@ -4244,7 +4244,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 451914} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_index_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4259,7 +4259,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 482514} - m_Layer: 0 + m_Layer: 9 m_Name: f_index_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4277,7 +4277,7 @@ GameObject: - 95: {fileID: 9580064} - 54: {fileID: 5412682} - 136: {fileID: 13647710} - m_Layer: 0 + m_Layer: 9 m_Name: player m_TagString: Player m_Icon: {fileID: 0} @@ -4292,7 +4292,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 439036} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-foot_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4307,7 +4307,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 451502} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_middle_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4322,7 +4322,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 405668} - m_Layer: 0 + m_Layer: 9 m_Name: f_index_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4337,7 +4337,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 444556} - m_Layer: 0 + m_Layer: 9 m_Name: VIS-thigh_pole_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4352,7 +4352,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 403768} - m_Layer: 0 + m_Layer: 9 m_Name: f_middle_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4367,7 +4367,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 464000} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_pinky_01_L_02 m_TagString: Untagged m_Icon: {fileID: 0} @@ -4382,7 +4382,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 478276} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shoulder_ik_ns_ch_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4397,7 +4397,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 453044} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hips_ik_ns_intr_001 m_TagString: Untagged m_Icon: {fileID: 0} @@ -4412,7 +4412,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 452596} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-forearm_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4427,7 +4427,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 430012} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_middle_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4442,7 +4442,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 429696} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-palm_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4457,7 +4457,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 493052} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-neck_02 m_TagString: Untagged m_Icon: {fileID: 0} @@ -4472,7 +4472,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 422598} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-forearm_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4487,7 +4487,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 463874} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hand_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4502,7 +4502,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 484850} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-toe_R_socket2 m_TagString: Untagged m_Icon: {fileID: 0} @@ -4517,7 +4517,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 474630} - m_Layer: 0 + m_Layer: 9 m_Name: thumb_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4532,7 +4532,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 419444} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hand_R_001 m_TagString: Untagged m_Icon: {fileID: 0} @@ -4547,7 +4547,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 459988} - m_Layer: 0 + m_Layer: 9 m_Name: hand_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4562,7 +4562,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 493594} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thigh_hose_parent_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4577,7 +4577,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 417960} - m_Layer: 0 + m_Layer: 9 m_Name: f_middle_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4592,7 +4592,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 428940} - m_Layer: 0 + m_Layer: 9 m_Name: VIS-thigh_pole_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4607,7 +4607,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 450846} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-palm_04_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4622,7 +4622,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 401484} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_pinky_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4637,7 +4637,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 480000} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thigh_antistr_fk_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4652,7 +4652,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 471384} - m_Layer: 0 + m_Layer: 9 m_Name: f_pinky_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4667,7 +4667,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 454302} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_ring_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4682,7 +4682,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 474632} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-forearm_hose_parent_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4697,7 +4697,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 413212} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hips_ik_ns_ch_001 m_TagString: Untagged m_Icon: {fileID: 0} @@ -4712,7 +4712,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 468828} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thigh_stretch_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4727,7 +4727,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 405990} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shoulder_ik_ns_ch_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4742,7 +4742,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 492470} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_index_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4757,7 +4757,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 406108} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-head_001_socket1 m_TagString: Untagged m_Icon: {fileID: 0} @@ -4772,7 +4772,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 415998} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_index_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4787,7 +4787,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 440204} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-thumb_01_R_02 m_TagString: Untagged m_Icon: {fileID: 0} @@ -4802,7 +4802,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 494336} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_ring_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4817,7 +4817,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 426506} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-upper_arm_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4832,7 +4832,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 428904} - m_Layer: 0 + m_Layer: 9 m_Name: f_middle_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4847,7 +4847,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 457018} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thigh_antistr_fk_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4862,7 +4862,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 435070} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-palm_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4877,7 +4877,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 428152} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-foot_R_rocker_01 m_TagString: Untagged m_Icon: {fileID: 0} @@ -4892,7 +4892,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 482948} - m_Layer: 0 + m_Layer: 9 m_Name: hand_fk_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -4907,7 +4907,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 485624} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-elbow_hose_parent_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4922,7 +4922,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 438686} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_pinky_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4937,7 +4937,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 414250} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-neck m_TagString: Untagged m_Icon: {fileID: 0} @@ -4952,7 +4952,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 453168} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_ring_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4967,7 +4967,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 459190} - m_Layer: 0 + m_Layer: 9 m_Name: f_index_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4982,7 +4982,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 426402} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-foot_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -4997,7 +4997,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 414718} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_index_01_L_02 m_TagString: Untagged m_Icon: {fileID: 0} @@ -5012,7 +5012,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 479922} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shin_nostr_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5027,7 +5027,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 444782} - m_Layer: 0 + m_Layer: 9 m_Name: upper_arm_fk_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5042,7 +5042,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 438734} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_ring_01_L_tip m_TagString: Untagged m_Icon: {fileID: 0} @@ -5057,7 +5057,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 411958} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-forearm_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5072,7 +5072,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 443836} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hips_flex m_TagString: Untagged m_Icon: {fileID: 0} @@ -5087,7 +5087,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 478810} - m_Layer: 0 + m_Layer: 9 m_Name: thumb_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5102,7 +5102,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 492696} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_ring_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5117,7 +5117,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 482492} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thumb_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5132,7 +5132,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 485838} - m_Layer: 0 + m_Layer: 9 m_Name: elbow_target_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5147,7 +5147,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 452294} - m_Layer: 0 + m_Layer: 9 m_Name: neck m_TagString: Untagged m_Icon: {fileID: 0} @@ -5162,7 +5162,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 441062} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-upper_arm_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5177,7 +5177,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 456878} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_ring_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5192,7 +5192,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 434184} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hips_rh_ns_intr_001 m_TagString: Untagged m_Icon: {fileID: 0} @@ -5207,7 +5207,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 459782} - m_Layer: 0 + m_Layer: 9 m_Name: f_pinky_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5222,7 +5222,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 407876} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-upper_arm_antistr_fk_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5237,7 +5237,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 481372} - m_Layer: 0 + m_Layer: 9 m_Name: f_middle_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5252,7 +5252,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 446316} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_index_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5267,7 +5267,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 437590} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thumb_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5282,7 +5282,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 430982} - m_Layer: 0 + m_Layer: 9 m_Name: f_middle_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5297,7 +5297,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 424218} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_ring_01_R_01 m_TagString: Untagged m_Icon: {fileID: 0} @@ -5312,7 +5312,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 467362} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-forearm_antistr_fk_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5327,7 +5327,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 476554} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_index_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5342,7 +5342,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 464838} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thigh_nostr_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5357,7 +5357,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 417862} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_middle_01_R_tip m_TagString: Untagged m_Icon: {fileID: 0} @@ -5372,7 +5372,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 449308} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_pinky_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5387,7 +5387,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 448278} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-toe_L_socket1 m_TagString: Untagged m_Icon: {fileID: 0} @@ -5402,7 +5402,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 475460} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-upper_arm_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5417,7 +5417,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 426732} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-toe_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5432,7 +5432,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 497564} - m_Layer: 0 + m_Layer: 9 m_Name: f_ring_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5447,7 +5447,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 473128} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-forearm_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5462,7 +5462,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 499668} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-chest_reverse m_TagString: Untagged m_Icon: {fileID: 0} @@ -5477,7 +5477,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 485066} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-head_002 m_TagString: Untagged m_Icon: {fileID: 0} @@ -5492,7 +5492,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 435808} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thumb_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5507,7 +5507,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 483204} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shoulder_fk_ns_intr_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5522,7 +5522,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 419458} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-thigh_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5537,7 +5537,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 477174} - m_Layer: 0 + m_Layer: 9 m_Name: toe_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5552,7 +5552,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 458284} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shin_nostr_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5567,7 +5567,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 485160} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thigh_stretch_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5582,7 +5582,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 441826} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_ring_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5597,7 +5597,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 492472} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thigh_nostr_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5612,7 +5612,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 483520} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-shin_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5627,7 +5627,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 405252} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_pinky_01_L_tip m_TagString: Untagged m_Icon: {fileID: 0} @@ -5642,7 +5642,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 489116} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-shin_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5657,7 +5657,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 470478} - m_Layer: 0 + m_Layer: 9 m_Name: foot_roll_ik_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5672,7 +5672,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 417182} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-head m_TagString: Untagged m_Icon: {fileID: 0} @@ -5687,7 +5687,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 464270} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thigh_ik_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5702,7 +5702,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 491084} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_index_01_R_01 m_TagString: Untagged m_Icon: {fileID: 0} @@ -5717,7 +5717,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 463652} - m_Layer: 0 + m_Layer: 9 m_Name: f_index_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5732,7 +5732,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 450346} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-foot_L_rocker_02 m_TagString: Untagged m_Icon: {fileID: 0} @@ -5747,7 +5747,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 420858} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hips_flex_s m_TagString: Untagged m_Icon: {fileID: 0} @@ -5762,7 +5762,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 458802} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-thumb_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5777,7 +5777,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 427408} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_pinky_01_L_01 m_TagString: Untagged m_Icon: {fileID: 0} @@ -5792,7 +5792,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 491260} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_ring_01_R_02 m_TagString: Untagged m_Icon: {fileID: 0} @@ -5807,7 +5807,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 481166} - m_Layer: 0 + m_Layer: 9 m_Name: thigh_fk_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5822,7 +5822,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 460328} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shin_hose_parent_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5837,7 +5837,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 462202} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-thumb_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5869,7 +5869,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 499488} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-knee_hose_parent_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -5884,7 +5884,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 415086} - m_Layer: 0 + m_Layer: 9 m_Name: forearm_hose_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5899,7 +5899,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 484482} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-palm_04_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5914,7 +5914,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 460862} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-f_pinky_03_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5929,7 +5929,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 468784} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hips_fk_ns_intr m_TagString: Untagged m_Icon: {fileID: 0} @@ -5944,7 +5944,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 490920} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-spine m_TagString: Untagged m_Icon: {fileID: 0} @@ -5959,7 +5959,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 454864} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-foot_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5974,7 +5974,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 409520} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-forearm_smth_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -5989,7 +5989,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 431062} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-upper_arm_fk_L_socket2 m_TagString: Untagged m_Icon: {fileID: 0} @@ -6004,7 +6004,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 462708} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-toe_L_socket2 m_TagString: Untagged m_Icon: {fileID: 0} @@ -6019,7 +6019,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 400302} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_middle_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -6034,7 +6034,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 469692} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-chest_flex_s m_TagString: Untagged m_Icon: {fileID: 0} @@ -6049,7 +6049,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 435726} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_index_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -6064,7 +6064,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 431602} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-head m_TagString: Untagged m_Icon: {fileID: 0} @@ -6079,7 +6079,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 431964} - m_Layer: 0 + m_Layer: 9 m_Name: shin_hose_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -6094,7 +6094,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 434304} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-shin_smth_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -6109,7 +6109,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 471278} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-head_001 m_TagString: Untagged m_Icon: {fileID: 0} @@ -6124,7 +6124,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 421856} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-foot_R_001 m_TagString: Untagged m_Icon: {fileID: 0} @@ -6139,7 +6139,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 441900} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-foot_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -6154,7 +6154,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 478000} - m_Layer: 0 + m_Layer: 9 m_Name: thumb_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -6169,7 +6169,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 406650} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_middle_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -6184,7 +6184,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 463036} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-foot_R_rocker_02 m_TagString: Untagged m_Icon: {fileID: 0} @@ -6199,7 +6199,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 432270} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-thigh_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -6214,7 +6214,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 421558} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-hips_reverse m_TagString: Untagged m_Icon: {fileID: 0} @@ -6229,7 +6229,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 409728} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-head_005 m_TagString: Untagged m_Icon: {fileID: 0} @@ -6244,7 +6244,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 467730} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_middle_01_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -6259,7 +6259,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 477750} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-chest m_TagString: Untagged m_Icon: {fileID: 0} @@ -6274,7 +6274,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 432900} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_index_03_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -6289,7 +6289,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 481158} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-thumb_01_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -6304,7 +6304,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 406688} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-forearm_junc_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -6319,7 +6319,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 470312} - m_Layer: 0 + m_Layer: 9 m_Name: MCH-f_middle_01_L_tip m_TagString: Untagged m_Icon: {fileID: 0} @@ -6334,7 +6334,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 419384} - m_Layer: 0 + m_Layer: 9 m_Name: DEF-thumb_02_R m_TagString: Untagged m_Icon: {fileID: 0} @@ -6349,7 +6349,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 480688} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-heel_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -6364,7 +6364,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 414326} - m_Layer: 0 + m_Layer: 9 m_Name: ORG-f_pinky_02_L m_TagString: Untagged m_Icon: {fileID: 0} @@ -6379,7 +6379,7 @@ GameObject: serializedVersion: 4 m_Component: - 4: {fileID: 448378} - m_Layer: 0 + m_Layer: 9 m_Name: rig m_TagString: Untagged m_Icon: {fileID: 0} @@ -6392,9 +6392,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 132144} - m_LocalRotation: {x: -0.0000025380868, y: 0.00000002235176, z: -0.0000000066356165, - w: 1} - m_LocalPosition: {x: -0, y: -0.000000004656613, z: -0.000000037252903} + m_LocalRotation: {x: -2.53808685e-06, y: 2.23517596e-08, z: -6.6356165e-09, w: 1} + m_LocalPosition: {x: -0, y: -4.65661287e-09, z: -3.7252903e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 456566} @@ -6406,9 +6405,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 192276} - m_LocalRotation: {x: 0.006945212, y: 0.28691703, z: -0.03837593, w: 0.95716125} - m_LocalPosition: {x: -0.024342597, y: 0.00000014156103, z: -0.000000014901161} - m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.99999994} + m_LocalRotation: {x: .00694521191, y: .286917031, z: -.038375929, w: .957161248} + m_LocalPosition: {x: -.0243425965, y: 1.41561031e-07, z: -1.49011612e-08} + m_LocalScale: {x: .999999881, y: .999999881, z: .99999994} m_Children: - {fileID: 475116} m_Father: {fileID: 481372} @@ -6419,8 +6418,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 163962} - m_LocalRotation: {x: 0.7071073, y: 0.0000002824707, z: 0.7071063, w: -0.0000002824711} - m_LocalPosition: {x: 0.000000024912879, y: -0.00000003632158, z: 0} + m_LocalRotation: {x: .707107306, y: 2.82470694e-07, z: .707106292, w: -2.82471092e-07} + m_LocalPosition: {x: 2.49128789e-08, y: -3.63215804e-08, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 484200} @@ -6431,9 +6430,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 114060} - m_LocalRotation: {x: 0.70571077, y: 0.7028113, z: 0.04441067, w: 0.07782209} - m_LocalPosition: {x: -0.036948025, y: 0.038000025, z: 0.08224521} - m_LocalScale: {x: 0.9999997, y: 1, z: 1.0000001} + m_LocalRotation: {x: .705710828, y: .70281136, z: .044410672, w: .0778220966} + m_LocalPosition: {x: -.0369480252, y: .0380000249, z: .0822452083} + m_LocalScale: {x: .999999702, y: 1, z: 1.00000012} m_Children: - {fileID: 450346} m_Father: {fileID: 430614} @@ -6444,9 +6443,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 101422} - m_LocalRotation: {x: 0.079604045, y: 0.04734107, z: -0.06802647, w: 0.9933753} - m_LocalPosition: {x: -0.1175445, y: -0.000000001280569, z: -9.31323e-10} - m_LocalScale: {x: 1, y: 0.99999946, z: 0.99999946} + m_LocalRotation: {x: .0796040446, y: .0473410711, z: -.0680264682, w: .993375301} + m_LocalPosition: {x: -.117544502, y: -1.28056898e-09, z: -9.31323019e-10} + m_LocalScale: {x: 1, y: .999999464, z: .999999464} m_Children: - {fileID: 489116} - {fileID: 444336} @@ -6460,9 +6459,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 171868} - m_LocalRotation: {x: 0.000000007450581, y: 0.000000007450581, z: -0.000000007450581, - w: 1} - m_LocalPosition: {x: -0.000000074505806, y: 0.000000074505806, z: 0.000000018626451} + m_LocalRotation: {x: 7.4505806e-09, y: 7.4505806e-09, z: -7.4505806e-09, w: 1} + m_LocalPosition: {x: -7.4505806e-08, y: 7.4505806e-08, z: 1.86264515e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 466040} @@ -6473,9 +6471,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 149898} - m_LocalRotation: {x: -0.07185845, y: 0.08021875, z: -0.011156845, w: 0.99412113} - m_LocalPosition: {x: -0.059235804, y: 0.000000029802322, z: -0.000000005122274} - m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_LocalRotation: {x: -.0718584508, y: .0802187473, z: -.0111568449, w: .994121134} + m_LocalPosition: {x: -.0592358038, y: 2.98023224e-08, z: -5.12227416e-09} + m_LocalScale: {x: 1, y: 1, z: 1.00000012} m_Children: - {fileID: 482898} m_Father: {fileID: 484482} @@ -6486,9 +6484,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 165434} - m_LocalRotation: {x: 0.071858466, y: 0.080218635, z: 0.011156904, w: 0.99412113} - m_LocalPosition: {x: -0.05923578, y: 0.00000008940697, z: -0.00000006938353} - m_LocalScale: {x: 0.87391835, y: 1, z: 1.0000001} + m_LocalRotation: {x: .0718584657, y: .0802186355, z: .0111569036, w: .994121134} + m_LocalPosition: {x: -.0592357814, y: 8.94069672e-08, z: -6.93835318e-08} + m_LocalScale: {x: .873918355, y: 1, z: 1.00000012} m_Children: [] m_Father: {fileID: 448938} m_RootOrder: 2 @@ -6498,9 +6496,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 123374} - m_LocalRotation: {x: -0.6060068, y: -0.13031115, z: 0.30583838, w: 0.7226601} - m_LocalPosition: {x: 0.0065164715, y: -0.028591014, z: 0.017791549} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} + m_LocalRotation: {x: -.606006801, y: -.130311146, z: .305838376, w: .722660124} + m_LocalPosition: {x: .00651647151, y: -.0285910144, z: .0177915487} + m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} m_Children: - {fileID: 440204} - {fileID: 472310} @@ -6513,9 +6511,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 127516} - m_LocalRotation: {x: 0.8915207, y: -0.31746182, z: 0.24262424, w: 0.21340674} - m_LocalPosition: {x: -0.45368126, y: 0.000000033727254, z: -0.000000002351421} - m_LocalScale: {x: 0.9999998, y: 1, z: 0.99999976} + m_LocalRotation: {x: .891520679, y: -.317461818, z: .242624238, w: .213406742} + m_LocalPosition: {x: -.45368126, y: 3.37272539e-08, z: -2.35142106e-09} + m_LocalScale: {x: .999999821, y: 1, z: .999999762} m_Children: - {fileID: 409728} m_Father: {fileID: 417182} @@ -6526,9 +6524,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 137344} - m_LocalRotation: {x: -0.06034435, y: 0.014429683, z: -0.10882332, w: 0.9921229} - m_LocalPosition: {x: -0.0722057, y: 0.017476454, z: 0.0033913152} - m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_LocalRotation: {x: -.0603443496, y: .0144296829, z: -.108823322, w: .992122889} + m_LocalPosition: {x: -.0722057, y: .0174764544, z: .00339131523} + m_LocalScale: {x: 1, y: .99999994, z: 1} m_Children: - {fileID: 462762} - {fileID: 405078} @@ -6547,9 +6545,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 120238} - m_LocalRotation: {x: -0.061952572, y: -0.00045513248, z: -0.004574312, w: 0.9980685} - m_LocalPosition: {x: -0.051810946, y: -0.00000010617077, z: 0.00000002561137} - m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999999} + m_LocalRotation: {x: -.0619525723, y: -.000455132482, z: -.0045743119, w: .998068511} + m_LocalPosition: {x: -.0518109463, y: -1.06170774e-07, z: 2.56113708e-08} + m_LocalScale: {x: 1, y: .99999994, z: .999999881} m_Children: [] m_Father: {fileID: 456208} m_RootOrder: 0 @@ -6559,9 +6557,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 168726} - m_LocalRotation: {x: 0.061952844, y: -0.00021233964, z: 0.0045715272, w: 0.9980686} - m_LocalPosition: {x: -0.051810987, y: 0.000000006984919, z: 0.00000006426126} - m_LocalScale: {x: 0.8739184, y: 0.9999999, z: 0.99999994} + m_LocalRotation: {x: .0619528443, y: -.000212339641, z: .00457152724, w: .998068571} + m_LocalPosition: {x: -.0518109873, y: 6.98491887e-09, z: 6.42612576e-08} + m_LocalScale: {x: .873918414, y: .999999881, z: .99999994} m_Children: [] m_Father: {fileID: 429696} m_RootOrder: 2 @@ -6571,10 +6569,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 120832} - m_LocalRotation: {x: -0.0000041630124, y: 0.000000037252683, z: 0.000000052387044, - w: 1} - m_LocalPosition: {x: -0.058772244, y: 0.00000001094304, z: -0.000000006984919} - m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 1.0000001} + m_LocalRotation: {x: -4.16301236e-06, y: 3.72526827e-08, z: 5.2387044e-08, w: 1} + m_LocalPosition: {x: -.0587722436, y: 1.09430403e-08, z: -6.98491887e-09} + m_LocalScale: {x: 1.00000012, y: .99999994, z: 1.00000012} m_Children: - {fileID: 497656} m_Father: {fileID: 497338} @@ -6585,9 +6582,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 123774} - m_LocalRotation: {x: -0.0000000037252903, y: 0.0000000018626451, z: -0.0000000027939677, - w: 1} - m_LocalPosition: {x: -0.000000052154064, y: -0.000000024214387, z: 0.000000014901161} + m_LocalRotation: {x: -3.7252903e-09, y: 1.86264515e-09, z: -2.79396772e-09, w: 1} + m_LocalPosition: {x: -5.21540642e-08, y: -2.42143869e-08, z: 1.49011612e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 408752} @@ -6598,9 +6594,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 111172} - m_LocalRotation: {x: 0.70710737, y: -0.00000037662753, z: 0.7071062, w: 0.00000037662818} - m_LocalPosition: {x: 6.98492e-10, y: 0.000000045634806, z: -0.000000001862645} - m_LocalScale: {x: 1, y: 0.9999999, z: 0.99999994} + m_LocalRotation: {x: .707107365, y: -3.76627526e-07, z: .707106173, w: 3.76628179e-07} + m_LocalPosition: {x: 6.98491986e-10, y: 4.56348062e-08, z: -1.86264504e-09} + m_LocalScale: {x: 1, y: .999999881, z: .99999994} m_Children: [] m_Father: {fileID: 406300} m_RootOrder: 0 @@ -6610,9 +6606,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 138886} - m_LocalRotation: {x: 0.00000009753923, y: -0.048460227, z: 0.00000006954792, w: 0.99882513} - m_LocalPosition: {x: -0.1959242, y: 0.00000004696067, z: -0.000000001218751} - m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_LocalRotation: {x: 9.75392282e-08, y: -.0484602265, z: 6.9547923e-08, w: .998825133} + m_LocalPosition: {x: -.195924193, y: 4.69606682e-08, z: -1.21875099e-09} + m_LocalScale: {x: 1, y: 1.00000012, z: 1} m_Children: - {fileID: 459124} m_Father: {fileID: 486042} @@ -6623,9 +6619,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 132622} - m_LocalRotation: {x: 0.33440578, y: 0.9406432, z: 0.057279646, w: 0.009071337} - m_LocalPosition: {x: 0.000000005348681, y: -0.000000003936433, z: -0.000000004371008} - m_LocalScale: {x: 0.99999976, y: 1.0000002, z: 0.99999964} + m_LocalRotation: {x: .33440578, y: .940643191, z: .0572796464, w: .00907133706} + m_LocalPosition: {x: 5.34868105e-09, y: -3.93643296e-09, z: -4.371008e-09} + m_LocalScale: {x: .999999762, y: 1.00000024, z: .999999642} m_Children: [] m_Father: {fileID: 434950} m_RootOrder: 0 @@ -6635,10 +6631,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 133876} - m_LocalRotation: {x: 0.0000000013969836, y: -2.7972413e-17, z: -0.000000020023435, - w: 1} - m_LocalPosition: {x: 0.000000022351742, y: 0.000000031432137, z: 0.000000037252903} - m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: 1.39698364e-09, y: -2.79724127e-17, z: -2.00234354e-08, w: 1} + m_LocalPosition: {x: 2.23517418e-08, y: 3.14321369e-08, z: 3.7252903e-08} + m_LocalScale: {x: 1, y: 1.00000012, z: 1.00000012} m_Children: [] m_Father: {fileID: 441826} m_RootOrder: 0 @@ -6648,9 +6643,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146110} - m_LocalRotation: {x: -0.06441737, y: 0.07665148, z: -0.03695347, w: 0.9942884} - m_LocalPosition: {x: 0.11564887, y: -0.009782193, z: -0.017328449} - m_LocalScale: {x: 0.9999997, y: 1.0000556, z: 1.0003425} + m_LocalRotation: {x: -.0644173697, y: .0766514763, z: -.0369534716, w: .994288385} + m_LocalPosition: {x: .115648873, y: -.00978219323, z: -.0173284486} + m_LocalScale: {x: .999999702, y: 1.00005555, z: 1.00034249} m_Children: - {fileID: 452596} m_Father: {fileID: 422598} @@ -6661,9 +6656,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 114748} - m_LocalRotation: {x: 0.030083263, y: 0.308216, z: 0.05537427, w: 0.94922686} - m_LocalPosition: {x: -0.025013432, y: 0, z: 0.000000007916242} - m_LocalScale: {x: 1, y: 0.9999998, z: 1} + m_LocalRotation: {x: .0300832633, y: .308216006, z: .0553742684, w: .949226856} + m_LocalPosition: {x: -.0250134319, y: 0, z: 7.91624188e-09} + m_LocalScale: {x: 1, y: .999999821, z: 1} m_Children: - {fileID: 476554} m_Father: {fileID: 446316} @@ -6674,10 +6669,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 106690} - m_LocalRotation: {x: -0.000000007916243, y: 9.031407e-17, z: -0.000000011408703, - w: 1} - m_LocalPosition: {x: -0.000000026077032, y: -0.000000020489097, z: 0.000000001862645} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} + m_LocalRotation: {x: -7.91624277e-09, y: 9.03140674e-17, z: -1.14087033e-08, w: 1} + m_LocalPosition: {x: -2.60770321e-08, y: -2.04890966e-08, z: 1.86264504e-09} + m_LocalScale: {x: .99999994, y: .999999881, z: .999999881} m_Children: [] m_Father: {fileID: 402816} m_RootOrder: 1 @@ -6687,9 +6681,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 187624} - m_LocalRotation: {x: 0.061815843, y: -0.06313499, z: -0.14023964, w: 0.98616713} - m_LocalPosition: {x: -0.028720835, y: 0.000000027008355, z: 0.000000014901161} - m_LocalScale: {x: 1, y: 1.0000001, z: 0.9999999} + m_LocalRotation: {x: .061815843, y: -.0631349906, z: -.140239641, w: .986167133} + m_LocalPosition: {x: -.0287208352, y: 2.70083547e-08, z: 1.49011612e-08} + m_LocalScale: {x: 1, y: 1.00000012, z: .999999881} m_Children: [] m_Father: {fileID: 495852} m_RootOrder: 1 @@ -6699,9 +6693,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 126488} - m_LocalRotation: {x: 0.036794975, y: -0.044579078, z: 0.121722564, w: 0.99087965} - m_LocalPosition: {x: -0.075720064, y: -0.032747604, z: -0.00405076} - m_LocalScale: {x: 1.0000001, y: 0.9999998, z: 0.9999998} + m_LocalRotation: {x: .0367949754, y: -.0445790775, z: .121722564, w: .990879655} + m_LocalPosition: {x: -.0757200643, y: -.032747604, z: -.00405076006} + m_LocalScale: {x: 1.00000012, y: .999999821, z: .999999821} m_Children: [] m_Father: {fileID: 497744} m_RootOrder: 5 @@ -6711,9 +6705,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 119236} - m_LocalRotation: {x: 0.07360084, y: 0.036371496, z: -0.07448038, w: 0.99383736} - m_LocalPosition: {x: 0.057964686, y: -0.008386152, z: -0.004893278} - m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: .0736008435, y: .0363714956, z: -.0744803771, w: .993837357} + m_LocalPosition: {x: .0579646863, y: -.00838615187, z: -.00489327777} + m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1.00000012} m_Children: - {fileID: 483520} m_Father: {fileID: 465770} @@ -6724,10 +6718,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 168550} - m_LocalRotation: {x: -0.0000033266847, y: -0.0000000111758585, z: -0.0000000037253276, - w: 1} - m_LocalPosition: {x: 0.000000022351742, y: -0.000000007450581, z: 0.000000014901161} - m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_LocalRotation: {x: -3.32668469e-06, y: -1.11758585e-08, z: -3.7253276e-09, w: 1} + m_LocalPosition: {x: 2.23517418e-08, y: -7.4505806e-09, z: 1.49011612e-08} + m_LocalScale: {x: 1, y: .99999994, z: 1} m_Children: [] m_Father: {fileID: 432900} m_RootOrder: 0 @@ -6737,8 +6730,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 118802} - m_LocalRotation: {x: -3.604105e-15, y: 7.10349e-15, z: -1.3351769e-15, w: 1} - m_LocalPosition: {x: 0.023440277, y: -0.098000005, z: -0.0014273685} + m_LocalRotation: {x: -3.60410486e-15, y: 7.10349019e-15, z: -1.33517687e-15, w: 1} + m_LocalPosition: {x: .0234402772, y: -.0980000049, z: -.00142736849} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 474682} @@ -6749,9 +6742,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 103190} - m_LocalRotation: {x: 0.69987184, y: 0.2726148, z: -0.6058337, w: -0.2623473} - m_LocalPosition: {x: 0.055486012, y: -0.5216702, z: 0.70525074} - m_LocalScale: {x: 0.000019357625, y: 1.0000001, z: 1} + m_LocalRotation: {x: .699871838, y: .272614807, z: -.605833709, w: -.262347311} + m_LocalPosition: {x: .0554860123, y: -.521670222, z: .70525074} + m_LocalScale: {x: 1.93576252e-05, y: 1.00000012, z: 1} m_Children: [] m_Father: {fileID: 416532} m_RootOrder: 26 @@ -6761,10 +6754,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 157824} - m_LocalRotation: {x: -0.000000035390254, y: 0.000000004190951, z: 0.0000000051222746, - w: 1} - m_LocalPosition: {x: 0.000000014901161, y: -0.00000001816079, z: -0.000000055413693} - m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_LocalRotation: {x: -3.53902543e-08, y: 4.19095114e-09, z: 5.1222746e-09, w: 1} + m_LocalPosition: {x: 1.49011612e-08, y: -1.81607902e-08, z: -5.54136932e-08} + m_LocalScale: {x: 1, y: 1, z: .99999994} m_Children: [] m_Father: {fileID: 475314} m_RootOrder: 0 @@ -6774,9 +6766,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 172964} - m_LocalRotation: {x: -0.05607326, y: -0.09941884, z: -0.6524154, w: 0.7492168} - m_LocalPosition: {x: -0.01291426, y: 0.3805294, z: 1.1099358} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} + m_LocalRotation: {x: -.0560732596, y: -.0994188413, z: -.652415395, w: .749216795} + m_LocalPosition: {x: -.0129142599, y: .380529404, z: 1.10993576} + m_LocalScale: {x: .99999994, y: .999999881, z: .999999881} m_Children: - {fileID: 467020} - {fileID: 435076} @@ -6791,9 +6783,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 173042} - m_LocalRotation: {x: 0.00000013235105, y: 0.7947926, z: -0.000000094746646, w: 0.60688126} - m_LocalPosition: {x: -0.37726596, y: 0.000000028432245, z: 0.022689048} - m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: 1.32351047e-07, y: .794792593, z: -9.47466461e-08, w: .606881261} + m_LocalPosition: {x: -.37726596, y: 2.8432245e-08, z: .0226890482} + m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1.00000012} m_Children: [] m_Father: {fileID: 477750} m_RootOrder: 2 @@ -6803,9 +6795,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 145820} - m_LocalRotation: {x: 0.7584569, y: 0.16397157, z: 0.4922459, w: -0.39439884} - m_LocalPosition: {x: -0.06444421, y: -0.010850057, z: -0.10104522} - m_LocalScale: {x: 1, y: 0.9999997, z: 0.9999999} + m_LocalRotation: {x: .758456886, y: .163971573, z: .492245913, w: -.394398838} + m_LocalPosition: {x: -.0644442067, y: -.010850057, z: -.101045221} + m_LocalScale: {x: 1, y: .999999702, z: .999999881} m_Children: - {fileID: 404186} m_Father: {fileID: 426704} @@ -6816,9 +6808,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 163772} - m_LocalRotation: {x: -0.038730286, y: 0.25753757, z: 0.012408862, w: 0.965412} - m_LocalPosition: {x: -0.02327177, y: 0.000000027008355, z: 0} - m_LocalScale: {x: 1.0000002, y: 1.0000002, z: 1.0000002} + m_LocalRotation: {x: -.0387302861, y: .257537574, z: .0124088619, w: .965412021} + m_LocalPosition: {x: -.0232717693, y: 2.70083547e-08, z: 0} + m_LocalScale: {x: 1.00000024, y: 1.00000024, z: 1.00000024} m_Children: - {fileID: 454302} m_Father: {fileID: 441826} @@ -6829,9 +6821,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 194524} - m_LocalRotation: {x: -0.061954245, y: -0.00021264672, z: -0.004571532, w: 0.9980685} - m_LocalPosition: {x: -0.051810946, y: -0.00000010617077, z: 0.00000002561137} - m_LocalScale: {x: 0.9999999, y: 1, z: 0.99999994} + m_LocalRotation: {x: -.061954245, y: -.000212646715, z: -.0045715319, w: .998068511} + m_LocalPosition: {x: -.0518109463, y: -1.06170774e-07, z: 2.56113708e-08} + m_LocalScale: {x: .999999881, y: 1, z: .99999994} m_Children: - {fileID: 497196} - {fileID: 417862} @@ -6844,9 +6836,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 197438} - m_LocalRotation: {x: 0.06397129, y: -0.038842496, z: 0.03968391, w: 0.9964056} - m_LocalPosition: {x: -0.2346971, y: 0.000000037252903, z: -0.000000009313226} - m_LocalScale: {x: 0.9999827, y: 0.99997354, z: 1.0000482} + m_LocalRotation: {x: .0639712885, y: -.0388424955, z: .0396839082, w: .996405602} + m_LocalPosition: {x: -.234697104, y: 3.7252903e-08, z: -9.31322575e-09} + m_LocalScale: {x: .999982715, y: .999973536, z: 1.00004816} m_Children: [] m_Father: {fileID: 441062} m_RootOrder: 1 @@ -6856,9 +6848,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 106822} - m_LocalRotation: {x: -0.0020442968, y: -0.7562985, z: -0.02723754, w: 0.6536563} - m_LocalPosition: {x: -0.15145311, y: 0.000000011434391, z: -0.000000001862645} - m_LocalScale: {x: 1.0000144, y: 1.0000148, z: 1.0000145} + m_LocalRotation: {x: -.00204429682, y: -.756298482, z: -.0272375401, w: .653656304} + m_LocalPosition: {x: -.151453108, y: 1.14343912e-08, z: -1.86264504e-09} + m_LocalScale: {x: 1.00001442, y: 1.00001478, z: 1.00001454} m_Children: - {fileID: 482734} m_Father: {fileID: 443836} @@ -6869,9 +6861,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 102286} - m_LocalRotation: {x: 0.3301431, y: 0.94156617, z: 0.042090893, w: 0.05183788} - m_LocalPosition: {x: 0.000000005348681, y: -0.000000003936433, z: -0.000000004371008} - m_LocalScale: {x: 0.9999997, y: 1.0000006, z: 1.0000002} + m_LocalRotation: {x: .330143094, y: .941566169, z: .0420908928, w: .0518378802} + m_LocalPosition: {x: 5.34868105e-09, y: -3.93643296e-09, z: -4.371008e-09} + m_LocalScale: {x: .999999702, y: 1.0000006, z: 1.00000024} m_Children: [] m_Father: {fileID: 476318} m_RootOrder: 0 @@ -6882,7 +6874,7 @@ Transform: m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 104520} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: -0.017199993, y: 0.000000001298563, z: 0.4947409} + m_LocalPosition: {x: -.0171999931, y: 1.29856303e-09, z: .494740903} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 486982} @@ -6896,9 +6888,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 145360} - m_LocalRotation: {x: 0.073600836, y: -0.03637152, z: -0.07448047, w: 0.99383736} - m_LocalPosition: {x: -0.058772236, y: -0.00000001990702, z: -0.000000001164153} - m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: .0736008361, y: -.0363715217, z: -.0744804665, w: .993837357} + m_LocalPosition: {x: -.0587722361, y: -1.990702e-08, z: -1.164153e-09} + m_LocalScale: {x: 1, y: .99999994, z: .99999994} m_Children: [] m_Father: {fileID: 434304} m_RootOrder: 0 @@ -6908,8 +6900,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 181948} - m_LocalRotation: {x: 0.0000006931368, y: 2.561963e-15, z: 0.0000000036961865, w: 1} - m_LocalPosition: {x: -0.23469712, y: -0.000000034546247, z: 0.000000006519258} + m_LocalRotation: {x: 6.93136826e-07, y: 2.56196296e-15, z: 3.69618647e-09, w: 1} + m_LocalPosition: {x: -.234697118, y: -3.45462468e-08, z: 6.51925802e-09} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 416886} @@ -6921,9 +6913,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 111520} - m_LocalRotation: {x: 0.26591763, y: 0.96367145, z: -0.019394394, w: -0.015782077} - m_LocalPosition: {x: 0.09128941, y: -0.073590666, z: 0.008207578} - m_LocalScale: {x: 1, y: 0.9999998, z: 0.9999997} + m_LocalRotation: {x: .265917629, y: .963671446, z: -.019394394, w: -.0157820769} + m_LocalPosition: {x: .0912894085, y: -.0735906661, z: .00820757821} + m_LocalScale: {x: 1, y: .999999821, z: .999999702} m_Children: [] m_Father: {fileID: 447564} m_RootOrder: 1 @@ -6933,9 +6925,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 119082} - m_LocalRotation: {x: 0.0000014225953, y: 9.313321e-10, z: 0.0000000066938797, w: 1} - m_LocalPosition: {x: -0.000000033527613, y: -0.000000013038516, z: -0.000000002793968} - m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_LocalRotation: {x: 1.42259535e-06, y: 9.31332123e-10, z: 6.69387967e-09, w: 1} + m_LocalPosition: {x: -3.35276127e-08, y: -1.3038516e-08, z: -2.79396795e-09} + m_LocalScale: {x: 1, y: .99999994, z: 1} m_Children: - {fileID: 429044} m_Father: {fileID: 488510} @@ -6946,9 +6938,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 159862} - m_LocalRotation: {x: 0.6770385, y: 0.66660565, z: 0.20400216, w: 0.23587927} - m_LocalPosition: {x: -0.0337505, y: 0.038000617, z: 0.08360794} - m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: .677038491, y: .666605651, z: .204002157, w: .235879272} + m_LocalPosition: {x: -.0337505005, y: .0380006172, z: .0836079419} + m_LocalScale: {x: 1.00000012, y: .99999994, z: .99999994} m_Children: [] m_Father: {fileID: 473404} m_RootOrder: 0 @@ -6958,9 +6950,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 136802} - m_LocalRotation: {x: 0.0011606859, y: 0.30859375, z: 0.007008298, w: 0.95116746} - m_LocalPosition: {x: -0.043025136, y: -0.000000008381903, z: 0.00000008568168} - m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_LocalRotation: {x: .0011606859, y: .30859375, z: .00700829783, w: .951167464} + m_LocalPosition: {x: -.043025136, y: -8.38190317e-09, z: 8.56816769e-08} + m_LocalScale: {x: 1, y: .99999994, z: 1} m_Children: - {fileID: 403916} m_Father: {fileID: 430802} @@ -6971,10 +6963,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 164748} - m_LocalRotation: {x: -0.00000031478706, y: -0.0000000013969836, z: -9.31323e-10, - w: 1} - m_LocalPosition: {x: -0.35786107, y: -0.0067963516, z: 0.0041228263} - m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_LocalRotation: {x: -3.14787059e-07, y: -1.39698364e-09, z: -9.31323019e-10, w: 1} + m_LocalPosition: {x: -.357861072, y: -.00679635163, z: .00412282627} + m_LocalScale: {x: 1, y: .99999994, z: 1} m_Children: [] m_Father: {fileID: 468046} m_RootOrder: 2 @@ -6984,9 +6975,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 191906} - m_LocalRotation: {x: 0.06375219, y: 0.07662676, z: 0.037004758, w: 0.9943313} - m_LocalPosition: {x: 0.11564909, y: 0.009782217, z: -0.017328415} - m_LocalScale: {x: 0.9999998, y: 1.0002294, z: 1.0014113} + m_LocalRotation: {x: .0637521893, y: .0766267627, z: .0370047577, w: .9943313} + m_LocalPosition: {x: .115649089, y: .00978221744, z: -.0173284151} + m_LocalScale: {x: .999999821, y: 1.00022936, z: 1.00141132} m_Children: - {fileID: 456036} m_Father: {fileID: 480430} @@ -6997,9 +6988,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 131868} - m_LocalRotation: {x: 0.073600635, y: -0.036371477, z: -0.07448049, w: 0.9938374} - m_LocalPosition: {x: 0.00000000349246, y: 0.000000007450581, z: 0.000000002328306} - m_LocalScale: {x: 0.99999994, y: 1, z: 0.9999999} + m_LocalRotation: {x: .0736006349, y: -.0363714769, z: -.0744804889, w: .993837416} + m_LocalPosition: {x: 3.4924601e-09, y: 7.4505806e-09, z: 2.32830599e-09} + m_LocalScale: {x: .99999994, y: 1, z: .999999881} m_Children: - {fileID: 458390} m_Father: {fileID: 480000} @@ -7010,9 +7001,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 196606} - m_LocalRotation: {x: 0.9517154, y: -0.2101011, z: 0.22234294, w: -0.02566936} - m_LocalPosition: {x: -0.34045166, y: 0.000000052154064, z: -0.000000074505806} - m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 0.9999998} + m_LocalRotation: {x: .95171541, y: -.210101098, z: .222342938, w: -.0256693605} + m_LocalPosition: {x: -.340451658, y: 5.21540642e-08, z: -7.4505806e-08} + m_LocalScale: {x: 1.00000012, y: .99999994, z: .999999821} m_Children: [] m_Father: {fileID: 402568} m_RootOrder: 0 @@ -7022,9 +7013,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 112218} - m_LocalRotation: {x: 0.00000020318916, y: 0.7207312, z: -0.00000015468092, w: 0.6932147} - m_LocalPosition: {x: 0.000000001431567, y: 5.84484e-10, z: 0.00000011663454} - m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999999} + m_LocalRotation: {x: 2.0318916e-07, y: .720731199, z: -1.54680919e-07, w: .693214715} + m_LocalPosition: {x: 1.43156698e-09, y: 5.84484017e-10, z: 1.16634538e-07} + m_LocalScale: {x: .999999881, y: .999999881, z: .999999881} m_Children: [] m_Father: {fileID: 493052} m_RootOrder: 0 @@ -7034,9 +7025,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 118736} - m_LocalRotation: {x: -0.0000006919726, y: 2.3282587e-10, z: 0.000000006984921, w: 1} - m_LocalPosition: {x: -0.23469713, y: -0.000000031548552, z: -0.000000001862645} - m_LocalScale: {x: 0.99999976, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: -6.91972616e-07, y: 2.3282587e-10, z: 6.98492109e-09, w: 1} + m_LocalPosition: {x: -.234697133, y: -3.15485522e-08, z: -1.86264504e-09} + m_LocalScale: {x: .999999762, y: 1.00000012, z: 1.00000012} m_Children: - {fileID: 458850} m_Father: {fileID: 444782} @@ -7047,9 +7038,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 179464} - m_LocalRotation: {x: 0.062114313, y: -0.00033900145, z: 0.041776303, w: 0.9971943} - m_LocalPosition: {x: -0.23469718, y: -0.00000004004687, z: 0.000000020489097} - m_LocalScale: {x: 0.99999803, y: 0.999998, z: 0.9999981} + m_LocalRotation: {x: .0621143132, y: -.000339001446, z: .0417763032, w: .99719429} + m_LocalPosition: {x: -.234697178, y: -4.00468707e-08, z: 2.04890966e-08} + m_LocalScale: {x: .999998033, y: .999997973, z: .999998093} m_Children: [] m_Father: {fileID: 487578} m_RootOrder: 0 @@ -7059,9 +7050,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 153306} - m_LocalRotation: {x: -0.100399576, y: 0.6020466, z: -0.1279001, w: 0.78172976} - m_LocalPosition: {x: -0.022227619, y: 0.2424382, z: 0.11009497} - m_LocalScale: {x: 0.000034780776, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: -.100399576, y: .602046609, z: -.127900094, w: .781729758} + m_LocalPosition: {x: -.0222276188, y: .242438197, z: .110094972} + m_LocalScale: {x: 3.47807763e-05, y: 1.00000012, z: 1.00000012} m_Children: [] m_Father: {fileID: 416532} m_RootOrder: 25 @@ -7071,9 +7062,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 172712} - m_LocalRotation: {x: 0.00000011977104, y: 0.7153595, z: -0.00000006732547, w: 0.6987566} - m_LocalPosition: {x: -0.022733197, y: 0.09799998, z: 0.31992927} - m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 0.9999998} + m_LocalRotation: {x: 1.19771045e-07, y: .715359509, z: -6.73254732e-08, w: .698756576} + m_LocalPosition: {x: -.0227331966, y: .0979999825, z: .319929272} + m_LocalScale: {x: .999999821, y: .99999994, z: .999999821} m_Children: - {fileID: 449400} - {fileID: 418534} @@ -7088,10 +7079,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 144978} - m_LocalRotation: {x: -0.000000009313227, y: 0.0000000037252907, z: 0.0000000027939682, - w: 1} - m_LocalPosition: {x: 0.000000007450581, y: 0.000000052154064, z: -0.000000004656613} - m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_LocalRotation: {x: -9.31322663e-09, y: 3.72529074e-09, z: 2.79396817e-09, w: 1} + m_LocalPosition: {x: 7.4505806e-09, y: 5.21540642e-08, z: -4.65661287e-09} + m_LocalScale: {x: .99999994, y: 1, z: 1} m_Children: [] m_Father: {fileID: 488258} m_RootOrder: 1 @@ -7101,9 +7091,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 110510} - m_LocalRotation: {x: -0.33014256, y: 0.9415662, z: -0.042090733, w: 0.051838923} - m_LocalPosition: {x: 0.000000020146274, y: 0.000000010964729, z: -0.000000004010895} - m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999994} + m_LocalRotation: {x: -.330142558, y: .941566229, z: -.0420907326, w: .0518389232} + m_LocalPosition: {x: 2.0146274e-08, y: 1.09647287e-08, z: -4.01089517e-09} + m_LocalScale: {x: .99999994, y: 1, z: .99999994} m_Children: [] m_Father: {fileID: 477260} m_RootOrder: 0 @@ -7113,10 +7103,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 165164} - m_LocalRotation: {x: 0.00000013946557, y: -2.3282923e-10, z: 0.000000010186341, - w: 1} - m_LocalPosition: {x: -0.1380704, y: 0.000000016880222, z: -0.000000001571607} - m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: 1.3946557e-07, y: -2.32829228e-10, z: 1.01863407e-08, w: 1} + m_LocalPosition: {x: -.138070405, y: 1.68802217e-08, z: -1.57160696e-09} + m_LocalScale: {x: 1, y: .99999994, z: .99999994} m_Children: - {fileID: 482966} m_Father: {fileID: 475994} @@ -7128,7 +7117,7 @@ Transform: m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 190352} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0.1, z: 0} + m_LocalPosition: {x: 0, y: .100000001, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 489884} @@ -7139,8 +7128,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 175442} - m_LocalRotation: {x: 0.00000021725157, y: 0.036826186, z: -0.000000007903437, w: 0.9993217} - m_LocalPosition: {x: -0.37726608, y: 0.000000028432252, z: 0.022689067} + m_LocalRotation: {x: 2.17251568e-07, y: .0368261859, z: -7.90343702e-09, w: .999321699} + m_LocalPosition: {x: -.377266079, y: 2.84322521e-08, z: .0226890668} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 477750} @@ -7151,10 +7140,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 131602} - m_LocalRotation: {x: 0.000000059388615, y: -0.000000014901122, z: -1.3767082e-14, - w: 1} - m_LocalPosition: {x: 7.90592e-10, y: 0.000000028483734, z: -0.000000027761473} - m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_LocalRotation: {x: 5.93886149e-08, y: -1.49011221e-08, z: -1.37670823e-14, w: 1} + m_LocalPosition: {x: 7.90591981e-10, y: 2.84837345e-08, z: -2.77614731e-08} + m_LocalScale: {x: 1, y: 1.00000012, z: 1} m_Children: [] m_Father: {fileID: 486042} m_RootOrder: 0 @@ -7164,9 +7152,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 199736} - m_LocalRotation: {x: -0.051517155, y: 0.23015569, z: -0.078927875, w: 0.96857876} - m_LocalPosition: {x: -0.028720835, y: 0.000000027008355, z: 0.000000014901161} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999998} + m_LocalRotation: {x: -.051517155, y: .230155692, z: -.0789278746, w: .968578756} + m_LocalPosition: {x: -.0287208352, y: 2.70083547e-08, z: 1.49011612e-08} + m_LocalScale: {x: .99999994, y: .999999881, z: .999999821} m_Children: - {fileID: 447500} - {fileID: 429732} @@ -7178,9 +7166,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 124676} - m_LocalRotation: {x: 0.26591805, y: 0.9636713, z: -0.01939436, w: -0.015782077} - m_LocalPosition: {x: 0.15052694, y: -0.10901449, z: 0.006819792} - m_LocalScale: {x: 0.99999976, y: 0.9999997, z: 1} + m_LocalRotation: {x: .265918046, y: .963671327, z: -.0193943605, w: -.0157820769} + m_LocalPosition: {x: .150526941, y: -.109014489, z: .00681979209} + m_LocalScale: {x: .999999762, y: .999999702, z: 1} m_Children: - {fileID: 475750} m_Father: {fileID: 476318} @@ -7191,10 +7179,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 178412} - m_LocalRotation: {x: -0.0000020917505, y: 0.0000000055879092, z: 0.000000012922114, - w: 1} - m_LocalPosition: {x: -0.017245973, y: 0.00000011175871, z: -0.000000059604645} - m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_LocalRotation: {x: -2.0917505e-06, y: 5.58790925e-09, z: 1.2922114e-08, w: 1} + m_LocalPosition: {x: -.0172459725, y: 1.11758709e-07, z: -5.96046448e-08} + m_LocalScale: {x: .99999994, y: 1, z: 1} m_Children: [] m_Father: {fileID: 415998} m_RootOrder: 0 @@ -7204,9 +7191,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 191218} - m_LocalRotation: {x: 0.7071071, y: -0.00000009415692, z: 0.7071065, w: 0.00000009415701} - m_LocalPosition: {x: -0.0031069568, y: -0.011232622, z: -0.025607798} - m_LocalScale: {x: 0.9999997, y: 1, z: 0.99999994} + m_LocalRotation: {x: .707107127, y: -9.41569169e-08, z: .707106471, w: 9.41570093e-08} + m_LocalPosition: {x: -.00310695684, y: -.011232622, z: -.0256077982} + m_LocalScale: {x: .999999702, y: 1, z: .99999994} m_Children: [] m_Father: {fileID: 474632} m_RootOrder: 0 @@ -7216,9 +7203,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 160292} - m_LocalRotation: {x: 0.00000006120703, y: 0.9932921, z: -0.00000011840962, w: -0.115632206} - m_LocalPosition: {x: -0.032412432, y: 0.014514183, z: 1.2150695} - m_LocalScale: {x: 1.0000288, y: 1.000029, z: 1.0000288} + m_LocalRotation: {x: 6.12070323e-08, y: .993292093, z: -1.18409623e-07, w: -.115632206} + m_LocalPosition: {x: -.0324124321, y: .0145141827, z: 1.21506953} + m_LocalScale: {x: 1.00002885, y: 1.00002897, z: 1.00002885} m_Children: - {fileID: 481704} m_Father: {fileID: 416532} @@ -7229,9 +7216,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 101558} - m_LocalRotation: {x: 0.2746437, y: -0.66376996, z: -0.19919576, w: 0.66655946} - m_LocalPosition: {x: -0.0227332, y: 0.09799998, z: 0.31992927} - m_LocalScale: {x: 0.9999999, y: 1, z: 0.9999998} + m_LocalRotation: {x: .274643689, y: -.66376996, z: -.199195758, w: .666559458} + m_LocalPosition: {x: -.0227332003, y: .0979999825, z: .319929272} + m_LocalScale: {x: .999999881, y: 1, z: .999999821} m_Children: - {fileID: 481166} m_Father: {fileID: 416532} @@ -7242,9 +7229,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 163550} - m_LocalRotation: {x: 0.056073245, y: -0.099418856, z: 0.6524154, w: 0.7492168} - m_LocalPosition: {x: -0.012914315, y: -0.35150105, z: 1.1099358} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} + m_LocalRotation: {x: .0560732447, y: -.0994188562, z: .652415395, w: .749216795} + m_LocalPosition: {x: -.0129143149, y: -.351501048, z: 1.10993576} + m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} m_Children: - {fileID: 440072} m_Father: {fileID: 416532} @@ -7255,9 +7242,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 143090} - m_LocalRotation: {x: -0.00017449434, y: -0.6854283, z: 0.0001639999, w: 0.72814006} - m_LocalPosition: {x: -0.28400356, y: -0.000000050956714, z: 0.00000022546737} - m_LocalScale: {x: 0.9999998, y: 1, z: 0.99999994} + m_LocalRotation: {x: -.000174494344, y: -.685428321, z: .000163999895, w: .728140056} + m_LocalPosition: {x: -.284003556, y: -5.09567144e-08, z: 2.25467375e-07} + m_LocalScale: {x: .999999821, y: 1, z: .99999994} m_Children: - {fileID: 423494} m_Father: {fileID: 469546} @@ -7268,9 +7255,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 173152} - m_LocalRotation: {x: 0.12750103, y: -0.020223571, z: -0.0109541975, w: 0.9915717} - m_LocalPosition: {x: -0.053260975, y: 0.000000016763806, z: 0.000000020023435} - m_LocalScale: {x: 0.9999997, y: 0.9999998, z: 0.99999976} + m_LocalRotation: {x: .127501026, y: -.020223571, z: -.0109541975, w: .991571724} + m_LocalPosition: {x: -.0532609746, y: 1.67638063e-08, z: 2.00234354e-08} + m_LocalScale: {x: .999999702, y: .999999821, z: .999999762} m_Children: - {fileID: 414718} - {fileID: 448076} @@ -7283,9 +7270,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 144638} - m_LocalRotation: {x: -0.00000005244964, y: -0.69471383, z: -4.5538833e-13, w: 0.71928626} - m_LocalPosition: {x: -0.9675639, y: 0.0000000729985, z: 0.044078924} - m_LocalScale: {x: 1, y: 0.9999999, z: 1} + m_LocalRotation: {x: -5.24496393e-08, y: -.694713831, z: -4.55388331e-13, w: .719286263} + m_LocalPosition: {x: -.967563927, y: 7.29985032e-08, z: .0440789238} + m_LocalScale: {x: 1, y: .999999881, z: 1} m_Children: - {fileID: 472606} m_Father: {fileID: 477750} @@ -7296,7 +7283,7 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 113334} - m_LocalRotation: {x: 0, y: -0, z: -0.7071067, w: 0.7071068} + m_LocalRotation: {x: 0, y: -0, z: -.707106709, w: .707106829} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: @@ -7340,9 +7327,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 101286} - m_LocalRotation: {x: 1.3877788e-17, y: -0.0000000037252903, z: 0.0000000037252903, - w: 1} - m_LocalPosition: {x: -0.000000044703484, y: -0.000000037252903, z: 0.000000007450581} + m_LocalRotation: {x: 1.38777878e-17, y: -3.7252903e-09, z: 3.7252903e-09, w: 1} + m_LocalPosition: {x: -4.47034836e-08, y: -3.7252903e-08, z: 7.4505806e-09} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 451502} @@ -7353,10 +7339,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 134864} - m_LocalRotation: {x: -0.0000000074505815, y: -0.000000011175872, z: 0.000000020489097, - w: 1} - m_LocalPosition: {x: -0.000000040978193, y: 0.000000007450581, z: 0.000000014901161} - m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: -7.45058149e-09, y: -1.11758718e-08, z: 2.04890966e-08, w: 1} + m_LocalPosition: {x: -4.09781933e-08, y: 7.4505806e-09, z: 1.49011612e-08} + m_LocalScale: {x: 1, y: .99999994, z: .99999994} m_Children: [] m_Father: {fileID: 459784} m_RootOrder: 0 @@ -7366,9 +7351,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 153270} - m_LocalRotation: {x: -0.33004904, y: 0.941489, z: -0.043783586, w: 0.052432302} - m_LocalPosition: {x: 0.000000020146274, y: 0.00000001096473, z: -0.00000000214825} - m_LocalScale: {x: 0.9999997, y: 1.0000001, z: 1.0000002} + m_LocalRotation: {x: -.330049038, y: .941488981, z: -.0437835865, w: .0524323024} + m_LocalPosition: {x: 2.0146274e-08, y: 1.09647296e-08, z: -2.14825002e-09} + m_LocalScale: {x: .999999702, y: 1.00000012, z: 1.00000024} m_Children: - {fileID: 452382} m_Father: {fileID: 413212} @@ -7379,9 +7364,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 118964} - m_LocalRotation: {x: 0.0651294, y: -0.07667786, z: 0.03689925, w: 0.994242} - m_LocalPosition: {x: -0.000000024359906, y: 0.000000057712896, z: -9.31323e-10} - m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1.0000001} + m_LocalRotation: {x: .0651293993, y: -.0766778588, z: .03689925, w: .994242013} + m_LocalPosition: {x: -2.43599061e-08, y: 5.77128958e-08, z: -9.31323019e-10} + m_LocalScale: {x: .99999994, y: .99999994, z: 1.00000012} m_Children: - {fileID: 458896} m_Father: {fileID: 407876} @@ -7392,9 +7377,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 109524} - m_LocalRotation: {x: 0.006886188, y: 0.10466416, z: 0.054565392, w: 0.9929857} - m_LocalPosition: {x: -0.053961888, y: 0.000000113621354, z: 0.000000008381903} - m_LocalScale: {x: 0.99999994, y: 1, z: 0.9999998} + m_LocalRotation: {x: .00688618794, y: .104664162, z: .0545653924, w: .992985725} + m_LocalPosition: {x: -.053961888, y: 1.13621354e-07, z: 8.38190317e-09} + m_LocalScale: {x: .99999994, y: 1, z: .999999821} m_Children: - {fileID: 437754} m_Father: {fileID: 488258} @@ -7405,10 +7390,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 188222} - m_LocalRotation: {x: -0.0000000071128556, y: -0.024380645, z: 0.000000010336413, - w: 0.99970275} - m_LocalPosition: {x: -0.13712919, y: 0.000000009054929, z: 0.000000001220786} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} + m_LocalRotation: {x: -7.11285564e-09, y: -.0243806448, z: 1.03364126e-08, w: .999702752} + m_LocalPosition: {x: -.137129188, y: 9.05492925e-09, z: 1.22078603e-09} + m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} m_Children: - {fileID: 485066} - {fileID: 402568} @@ -7420,9 +7404,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 142114} - m_LocalRotation: {x: 0.00004162455, y: 0.98637724, z: -0.00024971526, w: -0.16449876} - m_LocalPosition: {x: -0.18532082, y: 0.00003216207, z: 0.06358053} - m_LocalScale: {x: 1, y: 0.9999996, z: 1} + m_LocalRotation: {x: 4.16245493e-05, y: .986377239, z: -.00024971526, w: -.164498761} + m_LocalPosition: {x: -.185320824, y: 3.21620682e-05, z: .0635805279} + m_LocalScale: {x: 1, y: .999999583, z: 1} m_Children: [] m_Father: {fileID: 454338} m_RootOrder: 0 @@ -7432,9 +7416,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 183106} - m_LocalRotation: {x: 0.0009979259, y: 0.006766896, z: 0.9999428, w: 0.008228758} - m_LocalPosition: {x: -0.041616276, y: -0.000000067055225, z: -0.000000053551048} - m_LocalScale: {x: 1.0000001, y: 1.0000004, z: 1.0000004} + m_LocalRotation: {x: .000997925876, y: .00676689623, z: .99994278, w: .00822875835} + m_LocalPosition: {x: -.0416162759, y: -6.70552254e-08, z: -5.3551048e-08} + m_LocalScale: {x: 1.00000012, y: 1.00000036, z: 1.00000036} m_Children: [] m_Father: {fileID: 406650} m_RootOrder: 1 @@ -7444,9 +7428,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 102684} - m_LocalRotation: {x: -0.00000034645203, y: 0.00000003352761, z: 1.1615708e-14, w: 1} - m_LocalPosition: {x: 0.000000022351742, y: -0.000000044703484, z: -0.000000029802322} - m_LocalScale: {x: 1, y: 0.9999999, z: 0.9999999} + m_LocalRotation: {x: -3.46452026e-07, y: 3.35276091e-08, z: 1.16157084e-14, w: 1} + m_LocalPosition: {x: 2.23517418e-08, y: -4.47034836e-08, z: -2.98023224e-08} + m_LocalScale: {x: 1, y: .999999881, z: .999999881} m_Children: [] m_Father: {fileID: 427186} m_RootOrder: 0 @@ -7456,9 +7440,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 170802} - m_LocalRotation: {x: 0.0000014458785, y: 9.313317e-10, z: 0.000000006286426, w: 1} - m_LocalPosition: {x: 0.000000014901161, y: -0.000000067055225, z: -0.00000003585592} - m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: 1.44587852e-06, y: 9.31331678e-10, z: 6.28642605e-09, w: 1} + m_LocalPosition: {x: 1.49011612e-08, y: -6.70552254e-08, z: -3.58559191e-08} + m_LocalScale: {x: 1, y: .99999994, z: .99999994} m_Children: - {fileID: 450740} m_Father: {fileID: 478078} @@ -7469,9 +7453,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 129212} - m_LocalRotation: {x: 0.065130174, y: -0.07667797, z: 0.036898542, w: 0.99424195} - m_LocalPosition: {x: -0.117348455, y: 0.000000011175871, z: -0.000000005587935} - m_LocalScale: {x: 0.9999998, y: 0.9999998, z: 0.9999998} + m_LocalRotation: {x: .0651301742, y: -.0766779706, z: .0368985422, w: .994241953} + m_LocalPosition: {x: -.117348455, y: 1.11758709e-08, z: -5.587935e-09} + m_LocalScale: {x: .999999821, y: .999999821, z: .999999821} m_Children: [] m_Father: {fileID: 438156} m_RootOrder: 0 @@ -7481,7 +7465,7 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146310} - m_LocalRotation: {x: -0.000000053386675, y: 0.7071068, z: 0.7071067, w: -0.00000005338667} + m_LocalRotation: {x: -5.33866746e-08, y: .707106829, z: .707106709, w: -5.33866711e-08} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -7493,10 +7477,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 136048} - m_LocalRotation: {x: 0.0000017071145, y: -0.0000000037252619, z: 0.000000016996644, - w: 1} - m_LocalPosition: {x: -0.000000018626451, y: -0.000000016763806, z: 0.00000008754432} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} + m_LocalRotation: {x: 1.70711451e-06, y: -3.72526188e-09, z: 1.69966441e-08, w: 1} + m_LocalPosition: {x: -1.86264515e-08, y: -1.67638063e-08, z: 8.7544322e-08} + m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} m_Children: - {fileID: 490724} m_Father: {fileID: 477270} @@ -7507,9 +7490,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 148190} - m_LocalRotation: {x: -0.26591736, y: 0.9636715, z: 0.019394184, w: -0.01578284} - m_LocalPosition: {x: 0.091289416, y: 0.07359068, z: 0.00820782} - m_LocalScale: {x: 1.0000004, y: 0.9999992, z: 0.9999993} + m_LocalRotation: {x: -.265917361, y: .963671505, z: .0193941835, w: -.0157828405} + m_LocalPosition: {x: .091289416, y: .073590681, z: .00820782036} + m_LocalScale: {x: 1.00000036, y: .999999225, z: .999999285} m_Children: [] m_Father: {fileID: 413212} m_RootOrder: 1 @@ -7519,8 +7502,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146578} - m_LocalRotation: {x: -3.604105e-15, y: 7.10349e-15, z: -1.3351769e-15, w: 1} - m_LocalPosition: {x: 0.023440292, y: 0.098000005, z: -0.0014274053} + m_LocalRotation: {x: -3.60410486e-15, y: 7.10349019e-15, z: -1.33517687e-15, w: 1} + m_LocalPosition: {x: .0234402921, y: .0980000049, z: -.00142740528} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 474682} @@ -7531,9 +7514,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 121864} - m_LocalRotation: {x: 0.75845784, y: 0.16397241, z: 0.49224475, w: -0.39439812} - m_LocalPosition: {x: -0.000000029569492, y: 0.000000013969839, z: -0.00000022281893} - m_LocalScale: {x: 1.0000002, y: 0.99999994, z: 0.9999999} + m_LocalRotation: {x: .758457839, y: .163972408, z: .49224475, w: -.394398123} + m_LocalPosition: {x: -2.95694917e-08, y: 1.39698386e-08, z: -2.22818926e-07} + m_LocalScale: {x: 1.00000024, y: .99999994, z: .999999881} m_Children: - {fileID: 420124} m_Father: {fileID: 405990} @@ -7544,9 +7527,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 100054} - m_LocalRotation: {x: -0.0000001197713, y: -0.7153595, z: 0.000000067325246, w: 0.69875664} - m_LocalPosition: {x: 0.000000007421477, y: -2e-15, z: -0.000000008381903} - m_LocalScale: {x: 0.9999998, y: 1, z: 0.9999998} + m_LocalRotation: {x: -1.197713e-07, y: -.715359509, z: 6.73252458e-08, w: .698756635} + m_LocalPosition: {x: 7.42147721e-09, y: -2.00000001e-15, z: -8.38190317e-09} + m_LocalScale: {x: .999999821, y: 1, z: .999999821} m_Children: [] m_Father: {fileID: 472574} m_RootOrder: 1 @@ -7556,9 +7539,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 114940} - m_LocalRotation: {x: 0.74927247, y: -0.008363528, z: 0.66115403, w: -0.03736519} - m_LocalPosition: {x: -0.0005771003, y: -0.012716398, z: -0.056940477} - m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 1} + m_LocalRotation: {x: .749272466, y: -.00836352818, z: .661154032, w: -.0373651907} + m_LocalPosition: {x: -.00057710032, y: -.0127163976, z: -.0569404773} + m_LocalScale: {x: 1.00000012, y: .99999994, z: 1} m_Children: [] m_Father: {fileID: 428848} m_RootOrder: 0 @@ -7568,10 +7551,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 198526} - m_LocalRotation: {x: 0.000000006519259, y: -0.000000008381903, z: -0.000000015599653, - w: 1} - m_LocalPosition: {x: 0.000000022351742, y: -0.000000017695129, z: 0.000000029802322} - m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: 6.51925891e-09, y: -8.38190317e-09, z: -1.55996531e-08, w: 1} + m_LocalPosition: {x: 2.23517418e-08, y: -1.76951289e-08, z: 2.98023224e-08} + m_LocalScale: {x: 1, y: .99999994, z: .99999994} m_Children: [] m_Father: {fileID: 458802} m_RootOrder: 0 @@ -7581,10 +7563,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 170590} - m_LocalRotation: {x: 0.0000000018626454, y: -9.313226e-10, z: 0.000000016123522, - w: 1} - m_LocalPosition: {x: -0.0000000433065, y: 0.000000059604645, z: -0.000000053551048} - m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: 1.86264537e-09, y: -9.31322575e-10, z: 1.61235221e-08, w: 1} + m_LocalPosition: {x: -4.33064997e-08, y: 5.96046448e-08, z: -5.3551048e-08} + m_LocalScale: {x: 1, y: .99999994, z: .99999994} m_Children: [] m_Father: {fileID: 459988} m_RootOrder: 0 @@ -7594,10 +7575,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 186006} - m_LocalRotation: {x: 0.00000012852253, y: 0.000000026077021, z: -0.00000006286427, - w: 1} - m_LocalPosition: {x: -0.05877224, y: -0.000000005122274, z: -0.000000006984919} - m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: 1.2852253e-07, y: 2.60770214e-08, z: -6.28642667e-08, w: 1} + m_LocalPosition: {x: -.0587722398, y: -5.12227416e-09, z: -6.98491887e-09} + m_LocalScale: {x: 1.00000012, y: .99999994, z: .99999994} m_Children: - {fileID: 438954} m_Father: {fileID: 432270} @@ -7608,9 +7588,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 137852} - m_LocalRotation: {x: 0.06211427, y: -0.00033813628, z: 0.041776333, w: 0.9971943} - m_LocalPosition: {x: -0.2346971, y: 0.000000039115548, z: 0.000000014901161} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1} + m_LocalRotation: {x: .0621142685, y: -.000338136277, z: .041776333, w: .99719429} + m_LocalPosition: {x: -.234697104, y: 3.91155481e-08, z: 1.49011612e-08} + m_LocalScale: {x: .99999994, y: .999999881, z: 1} m_Children: [] m_Father: {fileID: 419024} m_RootOrder: 0 @@ -7620,9 +7600,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 128156} - m_LocalRotation: {x: 0.062118813, y: -0.00034150324, z: 0.042111702, w: 0.9971799} - m_LocalPosition: {x: -0.2346971, y: 0.000000037252903, z: -0.000000009313226} - m_LocalScale: {x: 1.0000545, y: 0.99994564, z: 1.0000012} + m_LocalRotation: {x: .0621188134, y: -.000341503241, z: .0421117023, w: .997179925} + m_LocalPosition: {x: -.234697104, y: 3.7252903e-08, z: -9.31322575e-09} + m_LocalScale: {x: 1.00005448, y: .999945641, z: 1.00000119} m_Children: - {fileID: 473128} - {fileID: 422598} @@ -7635,9 +7615,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 114058} - m_LocalRotation: {x: -4.703662e-15, y: -0.000000058671624, z: 3.5517449e-15, w: 1} + m_LocalRotation: {x: -4.70366205e-15, y: -5.8671624e-08, z: 3.55174488e-15, w: 1} m_LocalPosition: {x: -0, y: 1e-15, z: 0} - m_LocalScale: {x: 1.0000144, y: 1.0000144, z: 1.0000144} + m_LocalScale: {x: 1.00001442, y: 1.00001442, z: 1.00001442} m_Children: - {fileID: 497248} m_Father: {fileID: 407636} @@ -7648,9 +7628,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 189386} - m_LocalRotation: {x: -0.0000001197713, y: -0.7153595, z: 0.000000067325246, w: 0.69875664} - m_LocalPosition: {x: 0.000000007421477, y: -2e-15, z: -0.000000008381903} - m_LocalScale: {x: 0.9999998, y: 1, z: 0.9999998} + m_LocalRotation: {x: -1.197713e-07, y: -.715359509, z: 6.73252458e-08, w: .698756635} + m_LocalPosition: {x: 7.42147721e-09, y: -2.00000001e-15, z: -8.38190317e-09} + m_LocalScale: {x: .999999821, y: 1, z: .999999821} m_Children: - {fileID: 443836} m_Father: {fileID: 472574} @@ -7661,8 +7641,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 195894} - m_LocalRotation: {x: 0.000000075497915, y: 1, z: -0.00000019470721, w: 0.00000013315804} - m_LocalPosition: {x: 0.000000009313226, y: -1e-15, z: 0.000000009313226} + m_LocalRotation: {x: 7.54979155e-08, y: 1, z: -1.94707212e-07, w: 1.33158039e-07} + m_LocalPosition: {x: 9.31322575e-09, y: -1e-15, z: 9.31322575e-09} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 443836} @@ -7673,9 +7653,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 139356} - m_LocalRotation: {x: 0.07667011, y: 0.005489676, z: -0.07131632, w: 0.9944876} - m_LocalPosition: {x: -0.1175445, y: -0.000000001280569, z: -9.31323e-10} - m_LocalScale: {x: 0.9999998, y: 0.99999976, z: 0.9999996} + m_LocalRotation: {x: .0766701102, y: .00548967579, z: -.0713163167, w: .994487584} + m_LocalPosition: {x: -.117544502, y: -1.28056898e-09, z: -9.31323019e-10} + m_LocalScale: {x: .999999821, y: .999999762, z: .999999583} m_Children: [] m_Father: {fileID: 432270} m_RootOrder: 1 @@ -7685,9 +7665,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 193586} - m_LocalRotation: {x: 0.00004289662, y: 0.98637724, z: -0.00025625536, w: -0.16449903} - m_LocalPosition: {x: -0.18532081, y: 0.000033070723, z: 0.06358052} - m_LocalScale: {x: 1, y: 1, z: 0.9999998} + m_LocalRotation: {x: 4.28966196e-05, y: .986377239, z: -.000256255356, w: -.16449903} + m_LocalPosition: {x: -.185320809, y: 3.30707226e-05, z: .0635805205} + m_LocalScale: {x: 1, y: 1, z: .999999821} m_Children: [] m_Father: {fileID: 470564} m_RootOrder: 0 @@ -7697,9 +7677,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 164572} - m_LocalRotation: {x: 0.264866, y: 0.9634817, z: -0.03056902, w: 0.024791336} - m_LocalPosition: {x: 0.09128938, y: -0.07359068, z: 0.008207581} - m_LocalScale: {x: 0.9999998, y: 1, z: 1} + m_LocalRotation: {x: .264865994, y: .963481724, z: -.0305690207, w: .0247913357} + m_LocalPosition: {x: .0912893787, y: -.073590681, z: .00820758101} + m_LocalScale: {x: .999999821, y: 1, z: 1} m_Children: - {fileID: 441232} m_Father: {fileID: 476318} @@ -7710,9 +7690,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 169398} - m_LocalRotation: {x: 0.0000052834366, y: 0.014170598, z: -0.024612335, w: 0.99959666} - m_LocalPosition: {x: 0.0037643206, y: 0.01278236, z: -0.056962762} - m_LocalScale: {x: 1.0546714, y: 0.9999809, z: 0.99999374} + m_LocalRotation: {x: 5.28343662e-06, y: .0141705982, z: -.0246123355, w: .999596655} + m_LocalPosition: {x: .00376432063, y: .0127823604, z: -.056962762} + m_LocalScale: {x: 1.05467141, y: .999980927, z: .999993742} m_Children: - {fileID: 404928} m_Father: {fileID: 420340} @@ -7723,9 +7703,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 129510} - m_LocalRotation: {x: -0.0651302, y: -0.076677926, z: -0.03689851, w: 0.99424195} - m_LocalPosition: {x: -0.117348656, y: 0.000000063329935, z: -0.000000014901161} - m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 1.0000001} + m_LocalRotation: {x: -.0651301965, y: -.0766779259, z: -.0368985087, w: .994241953} + m_LocalPosition: {x: -.117348656, y: 6.33299351e-08, z: -1.49011612e-08} + m_LocalScale: {x: 1.00000012, y: .99999994, z: 1.00000012} m_Children: [] m_Father: {fileID: 444204} m_RootOrder: 0 @@ -7735,8 +7715,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 156432} - m_LocalRotation: {x: 0.00000009274503, y: 0.79586923, z: 0.00000036656346, w: 0.60546863} - m_LocalPosition: {x: -0.052275598, y: 0.00000010656623, z: -0.18882146} + m_LocalRotation: {x: 9.2745033e-08, y: .795869231, z: 3.66563455e-07, w: .605468631} + m_LocalPosition: {x: -.052275598, y: 1.06566233e-07, z: -.188821465} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 477174} @@ -7748,10 +7728,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 127132} - m_LocalRotation: {x: 0.000000011175872, y: -0.000000022351742, z: 0.000000014901161, - w: 1} - m_LocalPosition: {x: 0.000000059604645, y: 0.000000037252903, z: 0.000000059604645} - m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_LocalRotation: {x: 1.11758718e-08, y: -2.23517418e-08, z: 1.49011612e-08, w: 1} + m_LocalPosition: {x: 5.96046448e-08, y: 3.7252903e-08, z: 5.96046448e-08} + m_LocalScale: {x: 1, y: 1, z: .99999994} m_Children: [] m_Father: {fileID: 463792} m_RootOrder: 0 @@ -7761,9 +7740,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 182844} - m_LocalRotation: {x: 0.006900866, y: 0.10442321, z: 0.05456096, w: 0.99301124} - m_LocalPosition: {x: -0.053961888, y: 0.000000113621354, z: 0.000000008381903} - m_LocalScale: {x: 1, y: 1, z: 0.9999998} + m_LocalRotation: {x: .00690086605, y: .10442321, z: .0545609593, w: .993011236} + m_LocalPosition: {x: -.053961888, y: 1.13621354e-07, z: 8.38190317e-09} + m_LocalScale: {x: 1, y: 1, z: .999999821} m_Children: [] m_Father: {fileID: 488258} m_RootOrder: 0 @@ -7773,9 +7752,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 128932} - m_LocalRotation: {x: 0.12750311, y: -0.020223778, z: -0.010954138, w: 0.9915715} - m_LocalPosition: {x: -0.053260975, y: 0.000000016763806, z: 0.000000020023435} - m_LocalScale: {x: 0.8739184, y: 0.99999976, z: 1} + m_LocalRotation: {x: .127503112, y: -.0202237777, z: -.0109541379, w: .991571486} + m_LocalPosition: {x: -.0532609746, y: 1.67638063e-08, z: 2.00234354e-08} + m_LocalScale: {x: .873918414, y: .999999762, z: 1} m_Children: [] m_Father: {fileID: 402816} m_RootOrder: 3 @@ -7785,9 +7764,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 139964} - m_LocalRotation: {x: -0.3344056, y: 0.9406432, z: -0.057279743, w: 0.009071361} - m_LocalPosition: {x: 0.000000020146274, y: 0.000000010964729, z: -0.000000004010895} - m_LocalScale: {x: 0.9999998, y: 1.0000001, z: 0.9999997} + m_LocalRotation: {x: -.334405601, y: .940643191, z: -.0572797433, w: .00907136127} + m_LocalPosition: {x: 2.0146274e-08, y: 1.09647287e-08, z: -4.01089517e-09} + m_LocalScale: {x: .999999821, y: 1.00000012, z: .999999702} m_Children: [] m_Father: {fileID: 492242} m_RootOrder: 0 @@ -7797,9 +7776,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 129052} - m_LocalRotation: {x: 0.00000009685755, y: -0.0000000018626456, z: -0.00000000372529, - w: 1} - m_LocalPosition: {x: -0.000000014901161, y: 0.000000022351742, z: -0.00000004284084} + m_LocalRotation: {x: 9.68575478e-08, y: -1.86264559e-09, z: -3.72529008e-09, w: 1} + m_LocalPosition: {x: -1.49011612e-08, y: 2.23517418e-08, z: -4.28408384e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 482492} @@ -7811,10 +7789,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 153502} - m_LocalRotation: {x: -0.0000031422828, y: -0.000000007450607, z: 0.000000008381879, - w: 1} - m_LocalPosition: {x: -0.000000007450581, y: 0.000000001862645, z: -0.00000000372529} - m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_LocalRotation: {x: -3.14228282e-06, y: -7.45060724e-09, z: 8.38187919e-09, w: 1} + m_LocalPosition: {x: -7.4505806e-09, y: 1.86264504e-09, z: -3.72529008e-09} + m_LocalScale: {x: 1, y: .99999994, z: 1} m_Children: [] m_Father: {fileID: 456878} m_RootOrder: 0 @@ -7824,9 +7801,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 109550} - m_LocalRotation: {x: 0.0069429674, y: 0.28691715, z: -0.03837526, w: 0.9571613} - m_LocalPosition: {x: -0.024342597, y: 0.00000014156103, z: -0.000000014901161} - m_LocalScale: {x: 0.9999998, y: 0.9999998, z: 0.9999999} + m_LocalRotation: {x: .00694296742, y: .28691715, z: -.0383752584, w: .957161307} + m_LocalPosition: {x: -.0243425965, y: 1.41561031e-07, z: -1.49011612e-08} + m_LocalScale: {x: .999999821, y: .999999821, z: .999999881} m_Children: - {fileID: 430012} m_Father: {fileID: 443796} @@ -7837,9 +7814,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 131100} - m_LocalRotation: {x: 0.6770383, y: -0.6666058, z: 0.20400217, w: -0.23587924} - m_LocalPosition: {x: -0.03375051, y: -0.038000572, z: 0.083607934} - m_LocalScale: {x: 1.0000002, y: 1, z: 1} + m_LocalRotation: {x: .677038312, y: -.666605771, z: .204002172, w: -.235879242} + m_LocalPosition: {x: -.0337505117, y: -.0380005725, z: .0836079344} + m_LocalScale: {x: 1.00000024, y: 1, z: 1} m_Children: [] m_Father: {fileID: 480688} m_RootOrder: 0 @@ -7849,9 +7826,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 152046} - m_LocalRotation: {x: -0.074717596, y: 0.0301421, z: 0.99661815, w: -0.016156213} - m_LocalPosition: {x: -0.03362881, y: 0.000000055879354, z: 0} - m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_LocalRotation: {x: -.0747175962, y: .0301421005, z: .996618152, w: -.0161562134} + m_LocalPosition: {x: -.0336288102, y: 5.58793545e-08, z: 0} + m_LocalScale: {x: 1.00000012, y: 1, z: 1} m_Children: [] m_Father: {fileID: 488020} m_RootOrder: 1 @@ -7861,8 +7838,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 126228} - m_LocalRotation: {x: 0.70710695, y: 0.000001506511, z: 0.7071066, w: -0.0000015065118} - m_LocalPosition: {x: 0.000000006519258, y: 0.00000002561137, z: -0.000000001396984} + m_LocalRotation: {x: .707106948, y: 1.50651101e-06, z: .70710659, w: -1.50651181e-06} + m_LocalPosition: {x: 6.51925802e-09, y: 2.56113708e-08, z: -1.39698397e-09} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 494944} @@ -7873,9 +7850,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 178222} - m_LocalRotation: {x: -0.0000000989498, y: 0.04846043, z: 0.000000020629514, w: 0.99882513} - m_LocalPosition: {x: 0.000000012192148, y: 0.000000004039611, z: 2.07962e-10} - m_LocalScale: {x: 0.9999998, y: 1, z: 0.9999998} + m_LocalRotation: {x: -9.89497977e-08, y: .0484604314, z: 2.06295141e-08, w: .998825133} + m_LocalPosition: {x: 1.21921477e-08, y: 4.03961087e-09, z: 2.07961995e-10} + m_LocalScale: {x: .999999821, y: 1, z: .999999821} m_Children: [] m_Father: {fileID: 482966} m_RootOrder: 0 @@ -7885,9 +7862,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 173536} - m_LocalRotation: {x: 0.7719318, y: -0.15167035, z: 0.4610976, w: 0.4104954} - m_LocalPosition: {x: 0.00000006402843, y: -0.000000014901161, z: -0.00000024656765} - m_LocalScale: {x: 1.0526586, y: 1.0526578, z: 1.0526583} + m_LocalRotation: {x: .771931827, y: -.151670352, z: .461097598, w: .4104954} + m_LocalPosition: {x: 6.4028427e-08, y: -1.49011612e-08, z: -2.46567652e-07} + m_LocalScale: {x: 1.05265856, y: 1.05265784, z: 1.05265832} m_Children: - {fileID: 437030} m_Father: {fileID: 478276} @@ -7898,9 +7875,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146264} - m_LocalRotation: {x: -0.05607326, y: -0.09941884, z: -0.6524154, w: 0.7492168} - m_LocalPosition: {x: -0.01291426, y: 0.3805294, z: 1.1099358} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} + m_LocalRotation: {x: -.0560732596, y: -.0994188413, z: -.652415395, w: .749216795} + m_LocalPosition: {x: -.0129142599, y: .380529404, z: 1.10993576} + m_LocalScale: {x: .99999994, y: .999999881, z: .999999881} m_Children: - {fileID: 475460} - {fileID: 485624} @@ -7914,8 +7891,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 184354} - m_LocalRotation: {x: -1.532399e-14, y: -0.0000000074505677, z: -1.1417243e-22, w: 1} - m_LocalPosition: {x: -0.000000007598457, y: -0.000000015800083, z: -0.000000001627761} + m_LocalRotation: {x: -1.53239898e-14, y: -7.45056772e-09, z: -1.14172432e-22, w: 1} + m_LocalPosition: {x: -7.59845697e-09, y: -1.5800083e-08, z: -1.62776104e-09} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 498190} @@ -7926,9 +7903,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 133558} - m_LocalRotation: {x: 0.052395966, y: 0.27650625, z: 0.033483695, w: 0.9589983} - m_LocalPosition: {x: -0.0209779, y: 0.00000008195639, z: 0.000000026077032} - m_LocalScale: {x: 1, y: 0.9999998, z: 0.99999994} + m_LocalRotation: {x: .0523959659, y: .276506245, z: .0334836952, w: .958998322} + m_LocalPosition: {x: -.0209778994, y: 8.19563866e-08, z: 2.60770321e-08} + m_LocalScale: {x: 1, y: .999999821, z: .99999994} m_Children: - {fileID: 417958} m_Father: {fileID: 471384} @@ -7939,9 +7916,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 125838} - m_LocalRotation: {x: 0.06034435, y: 0.014429681, z: 0.10882331, w: 0.9921229} - m_LocalPosition: {x: -0.07220573, y: -0.01747645, z: 0.003391277} - m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_LocalRotation: {x: .0603443496, y: .014429681, z: .108823307, w: .992122889} + m_LocalPosition: {x: -.0722057298, y: -.0174764507, z: .00339127705} + m_LocalScale: {x: 1, y: .99999994, z: 1} m_Children: - {fileID: 491084} - {fileID: 435070} @@ -7960,9 +7937,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 189418} - m_LocalRotation: {x: -0.071861856, y: 0.079979, z: -0.011129235, w: 0.99414057} - m_LocalPosition: {x: -0.059235804, y: 0.000000029802322, z: -0.000000005122274} - m_LocalScale: {x: 1.0000001, y: 0.9999999, z: 1.0000002} + m_LocalRotation: {x: -.0718618557, y: .0799790025, z: -.0111292349, w: .994140565} + m_LocalPosition: {x: -.0592358038, y: 2.98023224e-08, z: -5.12227416e-09} + m_LocalScale: {x: 1.00000012, y: .999999881, z: 1.00000024} m_Children: [] m_Father: {fileID: 484482} m_RootOrder: 0 @@ -7972,9 +7949,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 138922} - m_LocalRotation: {x: 0.015233625, y: 0.2950411, z: 0.02344132, w: 0.9550755} - m_LocalPosition: {x: -0.041616276, y: -0.000000067055225, z: -0.000000053551048} - m_LocalScale: {x: 0.99999994, y: 0.99999976, z: 1} + m_LocalRotation: {x: .0152336247, y: .295041114, z: .0234413203, w: .955075502} + m_LocalPosition: {x: -.0416162759, y: -6.70552254e-08, z: -5.3551048e-08} + m_LocalScale: {x: .99999994, y: .999999762, z: 1} m_Children: - {fileID: 481372} m_Father: {fileID: 428904} @@ -7985,9 +7962,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 174816} - m_LocalRotation: {x: 0.7028114, y: 0.70571065, z: 0.0778221, w: 0.044410676} - m_LocalPosition: {x: -0.037602186, y: 0.042000003, z: 0.08598592} - m_LocalScale: {x: 0.9999997, y: 1, z: 1.0000004} + m_LocalRotation: {x: .70281142, y: .705710649, z: .0778220966, w: .0444106758} + m_LocalPosition: {x: -.0376021862, y: .0420000032, z: .0859859213} + m_LocalScale: {x: .999999702, y: 1, z: 1.00000036} m_Children: - {fileID: 463036} m_Father: {fileID: 474724} @@ -7998,9 +7975,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 151174} - m_LocalRotation: {x: 0.76558256, y: -0.16700298, z: 0.40330055, w: 0.47259057} - m_LocalPosition: {x: -0.13063581, y: -0.035674542, z: -0.20663574} - m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 0.9999999} + m_LocalRotation: {x: .765582681, y: -.167002991, z: .403300613, w: .472590625} + m_LocalPosition: {x: -.130635813, y: -.0356745422, z: -.206635743} + m_LocalScale: {x: 1.00000012, y: 1.00000012, z: .999999881} m_Children: - {fileID: 419364} m_Father: {fileID: 435298} @@ -8011,8 +7988,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 173808} - m_LocalRotation: {x: -0.000001439359, y: 9.3130853e-10, z: 0.000000009778889, w: 1} - m_LocalPosition: {x: -0.000000005587935, y: -0.000000029802322, z: 0.000000013737008} + m_LocalRotation: {x: -1.43935904e-06, y: 9.3130853e-10, z: 9.77888881e-09, w: 1} + m_LocalPosition: {x: -5.587935e-09, y: -2.98023224e-08, z: 1.3737008e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 427588} @@ -8024,9 +8001,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 171366} - m_LocalRotation: {x: 0.02046261, y: 0.9996896, z: 0.006390059, w: -0.012694898} - m_LocalPosition: {x: -0.016670957, y: 0.17159063, z: 0.22847232} - m_LocalScale: {x: 30.653898, y: 1.0000001, z: 1} + m_LocalRotation: {x: .0204626098, y: .999689579, z: .0063900589, w: -.0126948981} + m_LocalPosition: {x: -.0166709572, y: .171590626, z: .228472322} + m_LocalScale: {x: 30.6538982, y: 1.00000012, z: 1} m_Children: [] m_Father: {fileID: 416532} m_RootOrder: 29 @@ -8036,9 +8013,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 161982} - m_LocalRotation: {x: 0.051517062, y: 0.23015569, z: 0.07892791, w: 0.96857876} - m_LocalPosition: {x: -0.028720861, y: -0.000000107102096, z: -0.000000017695129} - m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999998} + m_LocalRotation: {x: .0515170619, y: .230155692, z: .0789279118, w: .968578756} + m_LocalPosition: {x: -.0287208613, y: -1.07102096e-07, z: -1.76951289e-08} + m_LocalScale: {x: 1, y: .99999994, z: .999999821} m_Children: - {fileID: 471384} m_Father: {fileID: 408570} @@ -8049,9 +8026,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 169200} - m_LocalRotation: {x: -0.047781724, y: -0.03345505, z: -0.04514684, w: 0.997276} - m_LocalPosition: {x: -0.076007225, y: -0.0006452985, z: -0.0014174329} - m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 1.0000002} + m_LocalRotation: {x: -.0477817245, y: -.0334550515, z: -.0451468416, w: .997276008} + m_LocalPosition: {x: -.0760072246, y: -.000645298511, z: -.00141743291} + m_LocalScale: {x: 1.00000024, y: 1.00000012, z: 1.00000024} m_Children: - {fileID: 445470} - {fileID: 459826} @@ -8066,9 +8043,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 138910} - m_LocalRotation: {x: -0.05239553, y: 0.27650627, z: -0.03348382, w: 0.9589983} - m_LocalPosition: {x: -0.020977885, y: 0.000000044703484, z: 0.000000029802322} - m_LocalScale: {x: 1, y: 0.9999999, z: 0.99999976} + m_LocalRotation: {x: -.05239553, y: .276506275, z: -.0334838182, w: .958998322} + m_LocalPosition: {x: -.0209778845, y: 4.47034836e-08, z: 2.98023224e-08} + m_LocalScale: {x: 1, y: .999999881, z: .999999762} m_Children: - {fileID: 460862} m_Father: {fileID: 414326} @@ -8079,9 +8056,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 169146} - m_LocalRotation: {x: 0.000000009313226, y: -0.000000014901161, z: -0.000000007450581, - w: 1} - m_LocalPosition: {x: -0.000000037252903, y: -0.000000052154064, z: 0.000000022351742} + m_LocalRotation: {x: 9.31322575e-09, y: -1.49011612e-08, z: -7.4505806e-09, w: 1} + m_LocalPosition: {x: -3.7252903e-08, y: -5.21540642e-08, z: 2.23517418e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 425614} @@ -8092,9 +8068,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 145964} - m_LocalRotation: {x: 0.13655123, y: 0.3802598, z: 0.15883833, w: 0.90084773} - m_LocalPosition: {x: -0.037932567, y: -0.000000033527613, z: 0.000000018626451} - m_LocalScale: {x: 0.9999998, y: 0.99999976, z: 0.99999994} + m_LocalRotation: {x: .136551231, y: .380259812, z: .158838332, w: .900847733} + m_LocalPosition: {x: -.0379325673, y: -3.35276127e-08, z: 1.86264515e-08} + m_LocalScale: {x: .999999821, y: .999999762, z: .99999994} m_Children: [] m_Father: {fileID: 459746} m_RootOrder: 1 @@ -8104,9 +8080,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146442} - m_LocalRotation: {x: 0.000000061253864, y: 0.9962557, z: -0.00000016087985, w: -0.086455986} - m_LocalPosition: {x: -0.022227723, y: -0.24243829, z: 0.110095225} - m_LocalScale: {x: 1, y: 0.9999997, z: 1} + m_LocalRotation: {x: 6.12538642e-08, y: .996255696, z: -1.6087985e-07, w: -.0864559859} + m_LocalPosition: {x: -.0222277232, y: -.242438287, z: .110095225} + m_LocalScale: {x: 1, y: .999999702, z: 1} m_Children: - {fileID: 477384} - {fileID: 400936} @@ -8118,9 +8094,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 130952} - m_LocalRotation: {x: 0.1182566, y: 0.3020121, z: 0.026410036, w: 0.94557214} - m_LocalPosition: {x: -0.037932567, y: -0.000000033527613, z: 0.000000018626451} - m_LocalScale: {x: 0.9999998, y: 0.99999976, z: 0.99999994} + m_LocalRotation: {x: .118256599, y: .302012086, z: .0264100358, w: .945572138} + m_LocalPosition: {x: -.0379325673, y: -3.35276127e-08, z: 1.86264515e-08} + m_LocalScale: {x: .999999821, y: .999999762, z: .99999994} m_Children: - {fileID: 496684} - {fileID: 408752} @@ -8132,9 +8108,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 182816} - m_LocalRotation: {x: -0.061952826, y: -0.00021232443, z: -0.0045714886, w: 0.9980686} - m_LocalPosition: {x: -0.051810946, y: -0.00000010617077, z: 0.00000002561137} - m_LocalScale: {x: 0.87391835, y: 0.99999994, z: 0.9999999} + m_LocalRotation: {x: -.0619528256, y: -.000212324434, z: -.00457148859, w: .998068571} + m_LocalPosition: {x: -.0518109463, y: -1.06170774e-07, z: 2.56113708e-08} + m_LocalScale: {x: .873918355, y: .99999994, z: .999999881} m_Children: [] m_Father: {fileID: 456208} m_RootOrder: 2 @@ -8144,9 +8120,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 142496} - m_LocalRotation: {x: 0.0000000733417, y: 1, z: -0.00000031734822, w: 0.00000013315803} - m_LocalPosition: {x: 0.30124664, y: 0.011722304, z: -0.029369295} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999998} + m_LocalRotation: {x: 7.33417025e-08, y: 1, z: -3.17348224e-07, w: 1.33158025e-07} + m_LocalPosition: {x: .301246643, y: .0117223039, z: -.0293692946} + m_LocalScale: {x: .99999994, y: .999999881, z: .999999821} m_Children: [] m_Father: {fileID: 482734} m_RootOrder: 1 @@ -8156,9 +8132,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 192218} - m_LocalRotation: {x: 0.53539234, y: 0.47953612, z: 0.52835995, w: 0.45192465} - m_LocalPosition: {x: -0.012914297, y: -0.35150105, z: 1.1099358} - m_LocalScale: {x: 0.9999999, y: 0.9999998, z: 0.9999997} + m_LocalRotation: {x: .535392344, y: .479536116, z: .52835995, w: .451924652} + m_LocalPosition: {x: -.0129142972, y: -.351501048, z: 1.10993576} + m_LocalScale: {x: .999999881, y: .999999821, z: .999999702} m_Children: - {fileID: 444782} m_Father: {fileID: 416532} @@ -8169,9 +8145,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 102614} - m_LocalRotation: {x: -0.052395906, y: 0.27650627, z: -0.03348371, w: 0.9589983} - m_LocalPosition: {x: -0.020977885, y: 0.000000044703484, z: 0.000000029802322} - m_LocalScale: {x: 1, y: 0.9999998, z: 0.9999998} + m_LocalRotation: {x: -.0523959063, y: .276506275, z: -.0334837101, w: .958998322} + m_LocalPosition: {x: -.0209778845, y: 4.47034836e-08, z: 2.98023224e-08} + m_LocalScale: {x: 1, y: .999999821, z: .999999821} m_Children: - {fileID: 459782} m_Father: {fileID: 485198} @@ -8182,10 +8158,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 193002} - m_LocalRotation: {x: -0.0000000071128556, y: -0.024380645, z: 0.000000010336413, - w: 0.99970275} - m_LocalPosition: {x: -0.13712919, y: 0.000000009054929, z: 0.000000001220786} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} + m_LocalRotation: {x: -7.11285564e-09, y: -.0243806448, z: 1.03364126e-08, w: .999702752} + m_LocalPosition: {x: -.137129188, y: 9.05492925e-09, z: 1.22078603e-09} + m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} m_Children: - {fileID: 485498} - {fileID: 471278} @@ -8197,10 +8172,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 131948} - m_LocalRotation: {x: -0.0000000074505815, y: 0.000000022351742, z: -0.000000011175871, - w: 1} - m_LocalPosition: {x: 0.000000007450581, y: 0.000000007450581, z: -0.000000007450581} - m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_LocalRotation: {x: -7.45058149e-09, y: 2.23517418e-08, z: -1.11758709e-08, w: 1} + m_LocalPosition: {x: 7.4505806e-09, y: 7.4505806e-09, z: -7.4505806e-09} + m_LocalScale: {x: 1, y: .99999994, z: 1} m_Children: [] m_Father: {fileID: 449308} m_RootOrder: 0 @@ -8210,8 +8184,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 193406} - m_LocalRotation: {x: 0.70710695, y: -0.0000023539237, z: 0.70710665, w: 0.0000023539246} - m_LocalPosition: {x: -1.16415e-10, y: -0.00000001967419, z: 4.65661e-10} + m_LocalRotation: {x: .707106948, y: -2.35392372e-06, z: .70710665, w: 2.35392463e-06} + m_LocalPosition: {x: -1.16415003e-10, y: -1.96741894e-08, z: 4.6566101e-10} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 460328} @@ -8222,9 +8196,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 110358} - m_LocalRotation: {x: 0.000000009313227, y: 2.9056624e-16, z: 0.00000003119931, w: 1} - m_LocalPosition: {x: -0.000000037252903, y: -0.000000020489097, z: 0.000000047963113} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} + m_LocalRotation: {x: 9.31322663e-09, y: 2.90566235e-16, z: 3.11993098e-08, w: 1} + m_LocalPosition: {x: -3.7252903e-08, y: -2.04890966e-08, z: 4.79631126e-08} + m_LocalScale: {x: .99999994, y: .999999881, z: .999999881} m_Children: [] m_Father: {fileID: 494576} m_RootOrder: 1 @@ -8234,9 +8208,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 115914} - m_LocalRotation: {x: -0.4619133, y: 0.3248091, z: 0.24578592, w: 0.78786075} - m_LocalPosition: {x: -0.1877488, y: -0.000000067055225, z: -0.000000015832484} - m_LocalScale: {x: 0.87311053, y: 0.8729856, z: 0.87569445} + m_LocalRotation: {x: -.461913288, y: .324809104, z: .245785922, w: .787860751} + m_LocalPosition: {x: -.187748805, y: -6.70552254e-08, z: -1.58324838e-08} + m_LocalScale: {x: .873110533, y: .872985601, z: .875694454} m_Children: - {fileID: 439106} - {fileID: 427234} @@ -8252,9 +8226,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 195192} - m_LocalRotation: {x: 0.33004934, y: 0.9414889, z: 0.043783735, w: 0.052431382} - m_LocalPosition: {x: 0.023440277, y: -0.098000005, z: -0.0014273704} - m_LocalScale: {x: 0.9999998, y: 1.0000005, z: 1.0000002} + m_LocalRotation: {x: .330049336, y: .941488922, z: .0437837355, w: .0524313822} + m_LocalPosition: {x: .0234402772, y: -.0980000049, z: -.00142737036} + m_LocalScale: {x: .999999821, y: 1.00000048, z: 1.00000024} m_Children: - {fileID: 419458} - {fileID: 421732} @@ -8267,9 +8241,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 115430} - m_LocalRotation: {x: -0.0000035790727, y: 0.00000002048908, z: 0.0000000046566866, - w: 1} - m_LocalPosition: {x: -0, y: 0.00000000372529, z: -0.000000044703484} + m_LocalRotation: {x: -3.57907265e-06, y: 2.04890807e-08, z: 4.65668659e-09, w: 1} + m_LocalPosition: {x: -0, y: 3.72529008e-09, z: -4.47034836e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 437036} @@ -8280,9 +8253,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 122754} - m_LocalRotation: {x: -0.066618085, y: -0.04160716, z: -0.04270225, w: 0.9959957} - m_LocalPosition: {x: -0.2346971, y: 0.0000000949949, z: -0.000000005587935} - m_LocalScale: {x: 0.99997437, y: 0.99979055, z: 1.000545} + m_LocalRotation: {x: -.0666180849, y: -.0416071601, z: -.0427022502, w: .9959957} + m_LocalPosition: {x: -.234697104, y: 9.49949026e-08, z: -5.587935e-09} + m_LocalScale: {x: .99997437, y: .999790549, z: 1.00054502} m_Children: [] m_Father: {fileID: 450460} m_RootOrder: 1 @@ -8292,9 +8265,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 197128} - m_LocalRotation: {x: -0.030080024, y: 0.30821583, z: -0.055375334, w: 0.949227} - m_LocalPosition: {x: -0.025013402, y: -0.000000022351742, z: 0.000000014901161} - m_LocalScale: {x: 0.99999976, y: 1, z: 1} + m_LocalRotation: {x: -.0300800242, y: .308215827, z: -.0553753339, w: .949226975} + m_LocalPosition: {x: -.0250134021, y: -2.23517418e-08, z: 1.49011612e-08} + m_LocalScale: {x: .999999762, y: 1, z: 1} m_Children: - {fileID: 405668} m_Father: {fileID: 459190} @@ -8305,8 +8278,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 111220} - m_LocalRotation: {x: 0.00000021725157, y: 0.036826186, z: -0.000000007903437, w: 0.9993217} - m_LocalPosition: {x: -0.37726608, y: 0.000000028432252, z: 0.022689067} + m_LocalRotation: {x: 2.17251568e-07, y: .0368261859, z: -7.90343702e-09, w: .999321699} + m_LocalPosition: {x: -.377266079, y: 2.84322521e-08, z: .0226890668} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 417182} @@ -8319,9 +8292,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 127618} - m_LocalRotation: {x: 0.006886207, y: 0.104663976, z: 0.054565385, w: 0.9929857} - m_LocalPosition: {x: -0.053961888, y: 0.000000113621354, z: 0.000000008381903} - m_LocalScale: {x: 0.8739183, y: 0.99999994, z: 0.99999976} + m_LocalRotation: {x: .00688620703, y: .104663976, z: .054565385, w: .992985725} + m_LocalPosition: {x: -.053961888, y: 1.13621354e-07, z: 8.38190317e-09} + m_LocalScale: {x: .873918295, y: .99999994, z: .999999762} m_Children: [] m_Father: {fileID: 488258} m_RootOrder: 2 @@ -8331,9 +8304,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 101570} - m_LocalRotation: {x: 0.0000003138557, y: 0.000000004190953, z: 0.0000000051222733, - w: 1} - m_LocalPosition: {x: -0.35786107, y: 0.0067963963, z: 0.004122759} + m_LocalRotation: {x: 3.13855708e-07, y: 4.19095292e-09, z: 5.12227327e-09, w: 1} + m_LocalPosition: {x: -.357861072, y: .00679639634, z: .00412275922} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 475314} @@ -8344,8 +8316,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 180724} - m_LocalRotation: {x: -3.604105e-15, y: 7.10349e-15, z: -1.3351769e-15, w: 1} - m_LocalPosition: {x: 0.023440292, y: 0.098000005, z: -0.0014274053} + m_LocalRotation: {x: -3.60410486e-15, y: 7.10349019e-15, z: -1.33517687e-15, w: 1} + m_LocalPosition: {x: .0234402921, y: .0980000049, z: -.00142740528} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 474682} @@ -8356,9 +8328,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 193428} - m_LocalRotation: {x: -0.07360084, y: 0.03637152, z: 0.074480474, w: 0.99383736} - m_LocalPosition: {x: 0.057964664, y: 0.008386146, z: -0.0048932796} - m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_LocalRotation: {x: -.0736008435, y: .0363715217, z: .074480474, w: .993837357} + m_LocalPosition: {x: .057964664, y: .00838614628, z: -.00489327963} + m_LocalScale: {x: .99999994, y: 1, z: 1} m_Children: - {fileID: 407690} m_Father: {fileID: 444336} @@ -8369,9 +8341,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 147294} - m_LocalRotation: {x: 0.00000011977104, y: 0.7153595, z: -0.00000006732547, w: 0.6987566} - m_LocalPosition: {x: -0.022733212, y: -0.09799998, z: 0.31992927} - m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 0.9999998} + m_LocalRotation: {x: 1.19771045e-07, y: .715359509, z: -6.73254732e-08, w: .698756576} + m_LocalPosition: {x: -.0227332115, y: -.0979999825, z: .319929272} + m_LocalScale: {x: .999999821, y: .99999994, z: .999999821} m_Children: - {fileID: 404228} m_Father: {fileID: 416532} @@ -8382,10 +8354,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 173990} - m_LocalRotation: {x: 0.000000008381902, y: 0.0000000023283067, z: 0.000000012281818, - w: 1} - m_LocalPosition: {x: -0.000000009313226, y: -0.00000005122274, z: -0.00000003678724} - m_LocalScale: {x: 0.99999994, y: 1, z: 1.0000001} + m_LocalRotation: {x: 8.38190228e-09, y: 2.32830666e-09, z: 1.22818182e-08, w: 1} + m_LocalPosition: {x: -9.31322575e-09, y: -5.12227416e-08, z: -3.67872417e-08} + m_LocalScale: {x: .99999994, y: 1, z: 1.00000012} m_Children: [] m_Father: {fileID: 427234} m_RootOrder: 1 @@ -8395,9 +8366,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 106774} - m_LocalRotation: {x: 0.73884815, y: 0.16253518, z: 0.46394625, w: -0.46091166} - m_LocalPosition: {x: -0.10892176, y: 0.032928422, z: -0.20670801} - m_LocalScale: {x: 1.005372, y: 0.9973246, z: 0.9973245} + m_LocalRotation: {x: .73884815, y: .162535176, z: .463946253, w: -.460911661} + m_LocalPosition: {x: -.108921759, y: .0329284221, z: -.206708014} + m_LocalScale: {x: 1.00537205, y: .997324586, z: .997324526} m_Children: [] m_Father: {fileID: 405990} m_RootOrder: 1 @@ -8407,9 +8378,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 102982} - m_LocalRotation: {x: 0.056073245, y: -0.099418856, z: 0.6524154, w: 0.7492168} - m_LocalPosition: {x: -0.012914315, y: -0.35150105, z: 1.1099358} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} + m_LocalRotation: {x: .0560732447, y: -.0994188562, z: .652415395, w: .749216795} + m_LocalPosition: {x: -.0129143149, y: -.351501048, z: 1.10993576} + m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} m_Children: - {fileID: 483464} - {fileID: 428848} @@ -8423,9 +8394,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 124088} - m_LocalRotation: {x: -0.60600674, y: -0.13031109, z: 0.3058384, w: 0.7226602} - m_LocalPosition: {x: 0.0065164715, y: -0.02859101, z: 0.017791549} - m_LocalScale: {x: 0.8739183, y: 1, z: 1.0000001} + m_LocalRotation: {x: -.606006742, y: -.130311087, z: .305838406, w: .722660184} + m_LocalPosition: {x: .00651647151, y: -.0285910107, z: .0177915487} + m_LocalScale: {x: .873918295, y: 1, z: 1.00000012} m_Children: [] m_Father: {fileID: 427234} m_RootOrder: 8 @@ -8435,9 +8406,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 192878} - m_LocalRotation: {x: 0.018801184, y: 0.3057231, z: 0.0131368395, w: 0.95184416} - m_LocalPosition: {x: -0.034491975, y: 0.000000052154064, z: -0.000000039115548} - m_LocalScale: {x: 1, y: 0.9999999, z: 0.99999994} + m_LocalRotation: {x: .0188011844, y: .305723101, z: .0131368395, w: .951844156} + m_LocalPosition: {x: -.0344919749, y: 5.21540642e-08, z: -3.91155481e-08} + m_LocalScale: {x: 1, y: .999999881, z: .99999994} m_Children: - {fileID: 486168} m_Father: {fileID: 468536} @@ -8448,8 +8419,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 185440} - m_LocalRotation: {x: -0.60600674, y: -0.13031113, z: 0.3058384, w: 0.7226602} - m_LocalPosition: {x: 0.0065164715, y: -0.02859101, z: 0.017791549} + m_LocalRotation: {x: -.606006742, y: -.130311131, z: .305838406, w: .722660184} + m_LocalPosition: {x: .00651647151, y: -.0285910107, z: .0177915487} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 478000} @@ -8461,10 +8432,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 102710} - m_LocalRotation: {x: -0.000000007916243, y: -2.3283062e-10, z: -0.0000000074505815, - w: 1} - m_LocalPosition: {x: 0.000000014901161, y: 0.000000022351742, z: 0.000000024214387} - m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: -7.91624277e-09, y: -2.32830616e-10, z: -7.45058149e-09, w: 1} + m_LocalPosition: {x: 1.49011612e-08, y: 2.23517418e-08, z: 2.42143869e-08} + m_LocalScale: {x: .999999881, y: .99999994, z: .99999994} m_Children: [] m_Father: {fileID: 476392} m_RootOrder: 0 @@ -8474,9 +8444,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 158514} - m_LocalRotation: {x: -0.06211418, y: -0.00033564022, z: -0.041776564, w: 0.9971943} - m_LocalPosition: {x: -0.23469724, y: 0, z: -0.000000001862645} - m_LocalScale: {x: 0.9999809, y: 0.99998033, z: 0.9999807} + m_LocalRotation: {x: -.0621141791, y: -.000335640216, z: -.041776564, w: .99719429} + m_LocalPosition: {x: -.234697238, y: 0, z: -1.86264504e-09} + m_LocalScale: {x: .999980927, y: .99998033, z: .999980688} m_Children: [] m_Father: {fileID: 426506} m_RootOrder: 0 @@ -8486,9 +8456,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 127932} - m_LocalRotation: {x: 0.0011640969, y: 0.30859375, z: 0.0070071905, w: 0.9511674} - m_LocalPosition: {x: -0.043025136, y: -0.000000008381903, z: 0.00000008568168} - m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_LocalRotation: {x: .00116409687, y: .30859375, z: .00700719049, w: .951167405} + m_LocalPosition: {x: -.043025136, y: -8.38190317e-09, z: 8.56816769e-08} + m_LocalScale: {x: 1, y: .99999994, z: 1} m_Children: - {fileID: 432318} m_Father: {fileID: 478810} @@ -8499,10 +8469,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 130298} - m_LocalRotation: {x: 0.0000000018626454, y: 4.656613e-10, z: -0.000000002386514, - w: 1} - m_LocalPosition: {x: 0.000000019092113, y: -0.000000044703484, z: -0.000000016298145} - m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: 1.86264537e-09, y: 4.65661287e-10, z: -2.3865141e-09, w: 1} + m_LocalPosition: {x: 1.90921128e-08, y: -4.47034836e-08, z: -1.62981451e-08} + m_LocalScale: {x: 1, y: .99999994, z: .99999994} m_Children: [] m_Father: {fileID: 458972} m_RootOrder: 0 @@ -8512,9 +8481,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 182704} - m_LocalRotation: {x: -0.118253835, y: 0.30201203, z: -0.026410908, w: 0.94557244} - m_LocalPosition: {x: -0.037932582, y: 0.00000008568168, z: 0.000000063329935} - m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: -.118253835, y: .302012026, z: -.0264109075, w: .945572436} + m_LocalPosition: {x: -.0379325822, y: 8.56816769e-08, z: 6.33299351e-08} + m_LocalScale: {x: .99999994, y: .99999994, z: .99999994} m_Children: - {fileID: 463912} m_Father: {fileID: 478000} @@ -8525,9 +8494,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 161152} - m_LocalRotation: {x: -0.0000017099084, y: -9.31323e-10, z: 3.4924433e-10, w: 1} - m_LocalPosition: {x: 0.000000040978193, y: 0.000000033527613, z: 0.000000020489097} - m_LocalScale: {x: 1.0000001, y: 1, z: 0.99999994} + m_LocalRotation: {x: -1.70990836e-06, y: -9.31323019e-10, z: 3.49244328e-10, w: 1} + m_LocalPosition: {x: 4.09781933e-08, y: 3.35276127e-08, z: 2.04890966e-08} + m_LocalScale: {x: 1.00000012, y: 1, z: .99999994} m_Children: - {fileID: 453168} m_Father: {fileID: 417088} @@ -8538,9 +8507,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 145030} - m_LocalRotation: {x: -0.000079700025, y: -0.11552441, z: -0.042110257, w: 0.9924116} - m_LocalPosition: {x: -0.11612894, y: 0.010006774, z: -0.027458934} - m_LocalScale: {x: 1.020464, y: 0.99994487, z: 0.9995868} + m_LocalRotation: {x: -7.97000248e-05, y: -.115524411, z: -.0421102569, w: .992411613} + m_LocalPosition: {x: -.116128936, y: .0100067742, z: -.0274589341} + m_LocalScale: {x: 1.02046394, y: .999944866, z: .999586821} m_Children: - {fileID: 418098} m_Father: {fileID: 441062} @@ -8551,8 +8520,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 120078} - m_LocalRotation: {x: -0.000000052449355, y: -0.69471383, z: -2.6963749e-14, w: 0.7192863} - m_LocalPosition: {x: -0.51402336, y: 0.000000038757136, z: 0.032782104} + m_LocalRotation: {x: -5.24493551e-08, y: -.694713831, z: -2.69637489e-14, w: .719286323} + m_LocalPosition: {x: -.514023364, y: 3.87571362e-08, z: .0327821039} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 497040} @@ -8564,9 +8533,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 175032} - m_LocalRotation: {x: 0.07185989, y: 0.080218606, z: 0.011156747, w: 0.9941211} - m_LocalPosition: {x: -0.05923578, y: 0.00000008940697, z: -0.00000006938353} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1} + m_LocalRotation: {x: .0718598887, y: .0802186057, z: .0111567471, w: .994121075} + m_LocalPosition: {x: -.0592357814, y: 8.94069672e-08, z: -6.93835318e-08} + m_LocalScale: {x: .99999994, y: .999999881, z: 1} m_Children: - {fileID: 486774} - {fileID: 449392} @@ -8579,9 +8548,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 179196} - m_LocalRotation: {x: 0.0747175, y: -0.07536574, z: -0.012795967, w: 0.9942704} - m_LocalPosition: {x: -0.033628765, y: 0.000000013038516, z: 0.000000002793968} - m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.99999994} + m_LocalRotation: {x: .0747174993, y: -.0753657371, z: -.012795967, w: .994270384} + m_LocalPosition: {x: -.0336287655, y: 1.3038516e-08, z: 2.79396795e-09} + m_LocalScale: {x: .999999881, y: .999999881, z: .99999994} m_Children: [] m_Father: {fileID: 448370} m_RootOrder: 1 @@ -8591,9 +8560,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 135940} - m_LocalRotation: {x: -0.03679497, y: -0.044579078, z: -0.12172259, w: 0.99087965} - m_LocalPosition: {x: -0.075720094, y: 0.03274755, z: -0.004050735} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} + m_LocalRotation: {x: -.0367949717, y: -.0445790775, z: -.121722586, w: .990879655} + m_LocalPosition: {x: -.0757200941, y: .0327475518, z: -.00405073492} + m_LocalScale: {x: .99999994, y: .999999881, z: .999999881} m_Children: [] m_Father: {fileID: 432066} m_RootOrder: 5 @@ -8603,9 +8572,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 142740} - m_LocalRotation: {x: 0.073600814, y: -0.036371343, z: -0.07448047, w: 0.99383736} - m_LocalPosition: {x: -0.058772262, y: 0.000000031781383, z: 0.000000001862645} - m_LocalScale: {x: 1, y: 0.9999998, z: 0.9999999} + m_LocalRotation: {x: .0736008137, y: -.0363713428, z: -.0744804665, w: .993837357} + m_LocalPosition: {x: -.0587722622, y: 3.17813829e-08, z: 1.86264504e-09} + m_LocalScale: {x: 1, y: .999999821, z: .999999881} m_Children: [] m_Father: {fileID: 419458} m_RootOrder: 0 @@ -8615,9 +8584,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 167926} - m_LocalRotation: {x: 0.00000010626718, y: 0.048460443, z: -0.00000002062952, w: 0.99882513} - m_LocalPosition: {x: 0.000000017671745, y: -0.000000008096006, z: 0.000000003055327} - m_LocalScale: {x: 0.9999998, y: 1, z: 0.9999998} + m_LocalRotation: {x: 1.0626718e-07, y: .0484604426, z: -2.06295194e-08, w: .998825133} + m_LocalPosition: {x: 1.7671745e-08, y: -8.09600564e-09, z: 3.0553271e-09} + m_LocalScale: {x: .999999821, y: 1, z: .999999821} m_Children: [] m_Father: {fileID: 469836} m_RootOrder: 0 @@ -8627,9 +8596,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 156362} - m_LocalRotation: {x: 0.000000014901163, y: 9.313228e-10, z: 0.000000016123522, w: 1} - m_LocalPosition: {x: 0.000000002328306, y: -0.000000044703484, z: -0.000000037252903} - m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: 1.4901163e-08, y: 9.31322797e-10, z: 1.61235221e-08, w: 1} + m_LocalPosition: {x: 2.32830599e-09, y: -4.47034836e-08, z: -3.7252903e-08} + m_LocalScale: {x: 1, y: .99999994, z: .99999994} m_Children: [] m_Father: {fileID: 432066} m_RootOrder: 0 @@ -8639,9 +8608,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 132620} - m_LocalRotation: {x: 0.7411698, y: 0.08453497, z: 0.020896312, w: 0.66564596} - m_LocalPosition: {x: -0.000000013271347, y: -0.000000023283064, z: 0.000000023283064} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} + m_LocalRotation: {x: .74116981, y: .0845349729, z: .0208963118, w: .665645957} + m_LocalPosition: {x: -1.32713467e-08, y: -2.32830644e-08, z: 2.32830644e-08} + m_LocalScale: {x: .99999994, y: .999999881, z: .999999881} m_Children: [] m_Father: {fileID: 415538} m_RootOrder: 0 @@ -8651,9 +8620,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 144376} - m_LocalRotation: {x: -0.12750311, y: -0.020223605, z: 0.010954184, w: 0.9915715} - m_LocalPosition: {x: -0.05326096, y: -0.000000028871, z: -0.000000015832484} - m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000002} + m_LocalRotation: {x: -.127503112, y: -.0202236045, z: .0109541845, w: .991571486} + m_LocalPosition: {x: -.0532609597, y: -2.88709998e-08, z: -1.58324838e-08} + m_LocalScale: {x: 1, y: 1.00000012, z: 1.00000024} m_Children: - {fileID: 443100} m_Father: {fileID: 427234} @@ -8664,10 +8633,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 173260} - m_LocalRotation: {x: -0.000000111758695, y: 0.0000000055879363, z: -0.000000005587935, - w: 1} - m_LocalPosition: {x: -0.018966325, y: 0.000000063329935, z: 0.000000022351742} - m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_LocalRotation: {x: -1.11758695e-07, y: 5.58793634e-09, z: -5.587935e-09, w: 1} + m_LocalPosition: {x: -.0189663246, y: 6.33299351e-08, z: 2.23517418e-08} + m_LocalScale: {x: 1, y: 1.00000012, z: 1} m_Children: [] m_Father: {fileID: 402414} m_RootOrder: 0 @@ -8677,9 +8645,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 126826} - m_LocalRotation: {x: 0.021263635, y: 0.22724901, z: -0.018420756, w: 0.9734303} - m_LocalPosition: {x: -0.03362881, y: 0.000000055879354, z: 0} - m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 1} + m_LocalRotation: {x: .0212636348, y: .227249011, z: -.0184207559, w: .973430276} + m_LocalPosition: {x: -.0336288102, y: 5.58793545e-08, z: 0} + m_LocalScale: {x: 1.00000012, y: .99999994, z: 1} m_Children: - {fileID: 494336} - {fileID: 489366} @@ -8691,9 +8659,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 180364} - m_LocalRotation: {x: 0.7584569, y: 0.16397128, z: 0.4922461, w: -0.3943987} - m_LocalPosition: {x: -0.35786116, y: 0.006796426, z: 0.0041225334} - m_LocalScale: {x: 1.0053446, y: 0.9972945, z: 0.9972945} + m_LocalRotation: {x: .758456886, y: .163971275, z: .492246091, w: -.394398689} + m_LocalPosition: {x: -.357861161, y: .00679642614, z: .00412253337} + m_LocalScale: {x: 1.00534463, y: .997294486, z: .997294486} m_Children: - {fileID: 438156} - {fileID: 406688} @@ -8706,9 +8674,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 150674} - m_LocalRotation: {x: 0.7298269, y: 0.05152731, z: 0.6816871, w: 0.0005682617} - m_LocalPosition: {x: -0.000000004074536, y: 0.000000029453076, z: -0.000000001629815} - m_LocalScale: {x: 1.0000002, y: 1, z: 1} + m_LocalRotation: {x: .729826927, y: .0515273102, z: .681687117, w: .000568261719} + m_LocalPosition: {x: -4.07453582e-09, y: 2.94530764e-08, z: -1.62981495e-09} + m_LocalScale: {x: 1.00000024, y: 1, z: 1} m_Children: [] m_Father: {fileID: 422148} m_RootOrder: 0 @@ -8718,9 +8686,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 186786} - m_LocalRotation: {x: -0.021263598, y: 0.22724903, z: 0.018420726, w: 0.9734303} - m_LocalPosition: {x: -0.033628765, y: 0.000000013038516, z: 0.000000002793968} - m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999999} + m_LocalRotation: {x: -.0212635975, y: .227249026, z: .0184207261, w: .973430276} + m_LocalPosition: {x: -.0336287655, y: 1.3038516e-08, z: 2.79396795e-09} + m_LocalScale: {x: 1, y: .99999994, z: .999999881} m_Children: - {fileID: 404542} - {fileID: 406398} @@ -8732,9 +8700,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 193834} - m_LocalRotation: {x: -0.00000002027313, y: 0.00000001490122, z: 1.0957329e-14, w: 1} - m_LocalPosition: {x: -7.29781e-10, y: -0.000000018681892, z: -0.00000003321057} - m_LocalScale: {x: 1.0000001, y: 1, z: 1.0000001} + m_LocalRotation: {x: -2.02731307e-08, y: 1.49012198e-08, z: 1.09573292e-14, w: 1} + m_LocalPosition: {x: -7.29781013e-10, y: -1.86818916e-08, z: -3.32105685e-08} + m_LocalScale: {x: 1.00000012, y: 1, z: 1.00000012} m_Children: [] m_Father: {fileID: 454864} m_RootOrder: 0 @@ -8744,9 +8712,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 131614} - m_LocalRotation: {x: 0.7071071, y: -0.00000009415692, z: 0.7071065, w: 0.00000009415701} - m_LocalPosition: {x: -0.003106918, y: 0.011232726, z: -0.02560781} - m_LocalScale: {x: 0.9999997, y: 0.9999999, z: 0.99999994} + m_LocalRotation: {x: .707107127, y: -9.41569169e-08, z: .707106471, w: 9.41570093e-08} + m_LocalPosition: {x: -.00310691795, y: .0112327263, z: -.0256078094} + m_LocalScale: {x: .999999702, y: .999999881, z: .99999994} m_Children: [] m_Father: {fileID: 444872} m_RootOrder: 0 @@ -8756,9 +8724,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 121470} - m_LocalRotation: {x: -0.07185846, y: 0.08021865, z: -0.011156845, w: 0.99412113} - m_LocalPosition: {x: -0.059235804, y: 0.000000029802322, z: -0.000000005122274} - m_LocalScale: {x: 0.8739184, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: -.0718584582, y: .0802186504, z: -.0111568449, w: .994121134} + m_LocalPosition: {x: -.0592358038, y: 2.98023224e-08, z: -5.12227416e-09} + m_LocalScale: {x: .873918414, y: 1.00000012, z: 1.00000012} m_Children: [] m_Father: {fileID: 484482} m_RootOrder: 2 @@ -8768,9 +8736,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 120486} - m_LocalRotation: {x: 0, y: 0, z: 0.000000010244548, w: 1} - m_LocalPosition: {x: -0.000000014901161, y: 0.000000014901161, z: 0.000000006984919} - m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: 0, y: 0, z: 1.02445483e-08, w: 1} + m_LocalPosition: {x: -1.49011612e-08, y: 1.49011612e-08, z: 6.98491887e-09} + m_LocalScale: {x: 1, y: 1.00000012, z: 1.00000012} m_Children: [] m_Father: {fileID: 484482} m_RootOrder: 1 @@ -8780,10 +8748,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 159300} - m_LocalRotation: {x: 0.0000020656732, y: -0.0000000037253107, z: -0.000000010011709, - w: 1} - m_LocalPosition: {x: 0.000000002328306, y: 0.000000014901161, z: -0.00000004284084} - m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: 2.06567324e-06, y: -3.72531073e-09, z: -1.00117088e-08, w: 1} + m_LocalPosition: {x: 2.32830599e-09, y: 1.49011612e-08, z: -4.28408384e-08} + m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1.00000012} m_Children: - {fileID: 444524} m_Father: {fileID: 440094} @@ -8794,9 +8761,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 129266} - m_LocalRotation: {x: 0.015231018, y: 0.29504105, z: 0.023442127, w: 0.95507556} - m_LocalPosition: {x: -0.041616276, y: -0.000000067055225, z: -0.000000053551048} - m_LocalScale: {x: 1, y: 1, z: 1.0000002} + m_LocalRotation: {x: .015231018, y: .295041054, z: .0234421268, w: .955075562} + m_LocalPosition: {x: -.0416162759, y: -6.70552254e-08, z: -5.3551048e-08} + m_LocalScale: {x: 1, y: 1, z: 1.00000024} m_Children: - {fileID: 471388} - {fileID: 425614} @@ -8808,9 +8775,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 179504} - m_LocalRotation: {x: 0.00000011977095, y: 0.7153595, z: -0.00000006732539, w: 0.6987566} - m_LocalPosition: {x: -0.000000005587935, y: 0, z: 0.000000029802322} - m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: 1.19770945e-07, y: .715359509, z: -6.73253879e-08, w: .698756576} + m_LocalPosition: {x: -5.587935e-09, y: 0, z: 2.98023224e-08} + m_LocalScale: {x: .99999994, y: .99999994, z: .99999994} m_Children: - {fileID: 421558} - {fileID: 406848} @@ -8822,9 +8789,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 149596} - m_LocalRotation: {x: 0.00074844185, y: -0.11778544, z: 0.043675635, w: 0.9920779} - m_LocalPosition: {x: -0.116191804, y: -0.010376019, z: -0.028047398} - m_LocalScale: {x: 1.0224117, y: 0.9995382, z: 0.99662167} + m_LocalRotation: {x: .000748441846, y: -.117785439, z: .043675635, w: .992077887} + m_LocalPosition: {x: -.116191804, y: -.0103760194, z: -.0280473977} + m_LocalScale: {x: 1.0224117, y: .999538183, z: .996621668} m_Children: - {fileID: 423428} m_Father: {fileID: 450460} @@ -8835,10 +8802,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 145716} - m_LocalRotation: {x: 0.0000000027939673, y: -0.000000018626455, z: -0.000000031432144, - w: 1} - m_LocalPosition: {x: 0.000000010652002, y: 0.000000002328306, z: -0.000000003259629} - m_LocalScale: {x: 0.9999998, y: 1, z: 1} + m_LocalRotation: {x: 2.79396728e-09, y: -1.8626455e-08, z: -3.1432144e-08, w: 1} + m_LocalPosition: {x: 1.06520019e-08, y: 2.32830599e-09, z: -3.25962901e-09} + m_LocalScale: {x: .999999821, y: 1, z: 1} m_Children: - {fileID: 434304} m_Father: {fileID: 401474} @@ -8849,9 +8815,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 106988} - m_LocalRotation: {x: 0.086104654, y: 0.6739436, z: 0.09550102, w: 0.72750646} - m_LocalPosition: {x: -0.02222771, y: -0.24243824, z: 0.110095054} - m_LocalScale: {x: 0.000022307038, y: 0.99999994, z: 0.9999999} + m_LocalRotation: {x: .0861046538, y: .673943579, z: .0955010206, w: .727506459} + m_LocalPosition: {x: -.0222277101, y: -.242438242, z: .110095054} + m_LocalScale: {x: 2.23070383e-05, y: .99999994, z: .999999881} m_Children: [] m_Father: {fileID: 416532} m_RootOrder: 24 @@ -8861,9 +8827,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 160750} - m_LocalRotation: {x: -0.018801149, y: 0.3057231, z: -0.013136817, w: 0.95184416} - m_LocalPosition: {x: -0.034491986, y: 0.000000022351742, z: 0.00000005401671} - m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1} + m_LocalRotation: {x: -.018801149, y: .305723101, z: -.0131368171, w: .951844156} + m_LocalPosition: {x: -.034491986, y: 2.23517418e-08, z: 5.40167093e-08} + m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1} m_Children: - {fileID: 459190} m_Father: {fileID: 443100} @@ -8874,9 +8840,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 168554} - m_LocalRotation: {x: -0.020462574, y: 0.9996896, z: -0.006390157, w: -0.012695029} - m_LocalPosition: {x: -0.016671253, y: -0.17159066, z: 0.22847237} - m_LocalScale: {x: 30.653933, y: 1, z: 1} + m_LocalRotation: {x: -.0204625744, y: .999689579, z: -.00639015716, w: -.0126950294} + m_LocalPosition: {x: -.0166712534, y: -.171590656, z: .228472367} + m_LocalScale: {x: 30.6539326, y: 1, z: 1} m_Children: [] m_Father: {fileID: 416532} m_RootOrder: 28 @@ -8886,9 +8852,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 160612} - m_LocalRotation: {x: 0.7070829, y: -0.70608014, z: -0.0044251126, w: -0.038274955} - m_LocalPosition: {x: -0.04298432, y: -0.11689166, z: 0.019739443} - m_LocalScale: {x: 1, y: 1, z: 1.0000002} + m_LocalRotation: {x: .707082927, y: -.706080139, z: -.00442511262, w: -.038274955} + m_LocalPosition: {x: -.0429843217, y: -.11689166, z: .0197394434} + m_LocalScale: {x: 1, y: 1, z: 1.00000024} m_Children: - {fileID: 454338} - {fileID: 448278} @@ -8900,9 +8866,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 178696} - m_LocalRotation: {x: -0.0013000773, y: -0.06557853, z: 0.0082144365, w: 0.99781275} - m_LocalPosition: {x: 0.00000002195884, y: 0.000000026688213, z: 9.31323e-10} - m_LocalScale: {x: 1.0000001, y: 0.9999998, z: 0.9999998} + m_LocalRotation: {x: -.0013000773, y: -.0655785277, z: .00821443647, w: .997812748} + m_LocalPosition: {x: 2.19588401e-08, y: 2.66882125e-08, z: 9.31323019e-10} + m_LocalScale: {x: 1.00000012, y: .999999821, z: .999999821} m_Children: - {fileID: 410054} m_Father: {fileID: 431062} @@ -8913,9 +8879,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 150480} - m_LocalRotation: {x: 0.7388483, y: 0.16253468, z: 0.46394652, w: -0.46091148} - m_LocalPosition: {x: -0.16766798, y: 0.023310015, z: -0.2832431} - m_LocalScale: {x: 1.0000005, y: 1.0000005, z: 1.0000002} + m_LocalRotation: {x: .738848329, y: .162534684, z: .463946521, w: -.460911483} + m_LocalPosition: {x: -.167667985, y: .023310015, z: -.28324309} + m_LocalScale: {x: 1.00000048, y: 1.00000048, z: 1.00000024} m_Children: - {fileID: 442378} m_Father: {fileID: 426704} @@ -8926,9 +8892,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 132900} - m_LocalRotation: {x: 0.75845706, y: 0.16397144, z: 0.49224603, w: -0.39439845} - m_LocalPosition: {x: -0.000000117812306, y: 0.000000023283064, z: -0.00000020861626} - m_LocalScale: {x: 1.0053741, y: 0.99732345, z: 0.99732333} + m_LocalRotation: {x: .758457065, y: .163971439, z: .492246032, w: -.394398451} + m_LocalPosition: {x: -1.17812306e-07, y: 2.32830644e-08, z: -2.08616257e-07} + m_LocalScale: {x: 1.00537407, y: .997323453, z: .997323334} m_Children: [] m_Father: {fileID: 405990} m_RootOrder: 4 @@ -8938,9 +8904,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 138524} - m_LocalRotation: {x: 0.061951477, y: -0.00021101882, z: 0.0045716087, w: 0.9980687} - m_LocalPosition: {x: -0.051810987, y: 0.000000006984919, z: 0.00000006426126} - m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999999} + m_LocalRotation: {x: .0619514771, y: -.000211018822, z: .00457160873, w: .99806869} + m_LocalPosition: {x: -.0518109873, y: 6.98491887e-09, z: 6.42612576e-08} + m_LocalScale: {x: .999999881, y: .999999881, z: .999999881} m_Children: [] m_Father: {fileID: 429696} m_RootOrder: 0 @@ -8950,9 +8916,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 154156} - m_LocalRotation: {x: 0.0000003138557, y: 0.000000004190953, z: 0.0000000051222733, - w: 1} - m_LocalPosition: {x: -0.35786107, y: 0.0067963963, z: 0.004122759} + m_LocalRotation: {x: 3.13855708e-07, y: 4.19095292e-09, z: 5.12227327e-09, w: 1} + m_LocalPosition: {x: -.357861072, y: .00679639634, z: .00412275922} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 475314} @@ -8963,9 +8928,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 105850} - m_LocalRotation: {x: 0.7298269, y: -0.051527485, z: 0.6816871, w: -0.0005682021} - m_LocalPosition: {x: 0.0000000136788, y: 0.000000010069925, z: -6.98492e-10} - m_LocalScale: {x: 1.0000002, y: 1, z: 0.99999994} + m_LocalRotation: {x: .729826927, y: -.0515274853, z: .681687117, w: -.000568202115} + m_LocalPosition: {x: 1.36788003e-08, y: 1.00699253e-08, z: -6.98491986e-10} + m_LocalScale: {x: 1.00000024, y: 1, z: .99999994} m_Children: [] m_Father: {fileID: 499488} m_RootOrder: 0 @@ -8975,9 +8940,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 182530} - m_LocalRotation: {x: 0.01880353, y: 0.30572316, z: 0.013136088, w: 0.95184416} - m_LocalPosition: {x: -0.03449196, y: 0.000000052154064, z: -0.000000037252903} - m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 1} + m_LocalRotation: {x: .0188035294, y: .305723161, z: .0131360879, w: .951844156} + m_LocalPosition: {x: -.03449196, y: 5.21540642e-08, z: -3.7252903e-08} + m_LocalScale: {x: .999999881, y: .99999994, z: 1} m_Children: - {fileID: 451914} - {fileID: 405062} @@ -8989,9 +8954,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 124150} - m_LocalRotation: {x: -0.0000001361541, y: -0.71535945, z: 0.000000083328786, w: 0.69875664} - m_LocalPosition: {x: 0.09182266, y: -0.063646525, z: 0.25202996} - m_LocalScale: {x: 0.9999998, y: 1, z: 0.9999998} + m_LocalRotation: {x: -1.361541e-07, y: -.715359449, z: 8.33287856e-08, w: .698756635} + m_LocalPosition: {x: .0918226615, y: -.0636465251, z: .252029955} + m_LocalScale: {x: .999999821, y: 1, z: .999999821} m_Children: [] m_Father: {fileID: 447564} m_RootOrder: 0 @@ -9001,9 +8966,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 106646} - m_LocalRotation: {x: -0.0068875942, y: 0.1046656, z: -0.054565, w: 0.9929856} - m_LocalPosition: {x: -0.05396188, y: 0, z: 0.000000070780516} - m_LocalScale: {x: 0.9999998, y: 0.99999976, z: 0.99999994} + m_LocalRotation: {x: -.00688759424, y: .1046656, z: -.0545650013, w: .992985606} + m_LocalPosition: {x: -.0539618805, y: 0, z: 7.07805157e-08} + m_LocalScale: {x: .999999821, y: .999999762, z: .99999994} m_Children: [] m_Father: {fileID: 494576} m_RootOrder: 0 @@ -9013,9 +8978,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 100238} - m_LocalRotation: {x: -0.05607326, y: -0.09941884, z: -0.6524154, w: 0.7492168} - m_LocalPosition: {x: -0.01291426, y: 0.3805294, z: 1.1099358} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} + m_LocalRotation: {x: -.0560732596, y: -.0994188413, z: -.652415395, w: .749216795} + m_LocalPosition: {x: -.0129142599, y: .380529404, z: 1.10993576} + m_LocalScale: {x: .99999994, y: .999999881, z: .999999881} m_Children: - {fileID: 485390} m_Father: {fileID: 416532} @@ -9026,10 +8991,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 136450} - m_LocalRotation: {x: -0.0000000037252903, y: -5.551115e-17, z: 0.000000014901161, - w: 1} - m_LocalPosition: {x: -0.000000022351742, y: 0.000000037252903, z: 0.000000018626451} - m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_LocalRotation: {x: -3.7252903e-09, y: -5.55111512e-17, z: 1.49011612e-08, w: 1} + m_LocalPosition: {x: -2.23517418e-08, y: 3.7252903e-08, z: 1.86264515e-08} + m_LocalScale: {x: 1, y: 1, z: .99999994} m_Children: [] m_Father: {fileID: 414326} m_RootOrder: 0 @@ -9039,9 +9003,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 128490} - m_LocalRotation: {x: 0.00000011977104, y: 0.7153595, z: -0.00000006732547, w: 0.6987566} - m_LocalPosition: {x: -0.022733212, y: -0.09799998, z: 0.31992927} - m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 0.9999998} + m_LocalRotation: {x: 1.19771045e-07, y: .715359509, z: -6.73254732e-08, w: .698756576} + m_LocalPosition: {x: -.0227332115, y: -.0979999825, z: .319929272} + m_LocalScale: {x: .999999821, y: .99999994, z: .999999821} m_Children: - {fileID: 446812} - {fileID: 407950} @@ -9056,9 +9020,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 107822} - m_LocalRotation: {x: 0.74927247, y: 0.0083636725, z: 0.6611541, w: 0.03736491} - m_LocalPosition: {x: -0.0005768752, y: 0.012716505, z: -0.05694047} - m_LocalScale: {x: 1, y: 0.9999999, z: 0.9999998} + m_LocalRotation: {x: .749272466, y: .00836367253, z: .661154091, w: .0373649113} + m_LocalPosition: {x: -.000576875173, y: .0127165047, z: -.0569404699} + m_LocalScale: {x: 1, y: .999999881, z: .999999821} m_Children: [] m_Father: {fileID: 485624} m_RootOrder: 0 @@ -9068,9 +9032,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 114034} - m_LocalRotation: {x: 0.0000027231872, y: 0.0000000037253463, z: 0.000000020489088, - w: 1} - m_LocalPosition: {x: -0.000000014901161, y: 0.000000026077032, z: 0} + m_LocalRotation: {x: 2.72318721e-06, y: 3.72534625e-09, z: 2.04890878e-08, w: 1} + m_LocalPosition: {x: -1.49011612e-08, y: 2.60770321e-08, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 458136} @@ -9082,9 +9045,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 135488} - m_LocalRotation: {x: 0.020721601, y: -0.008806783, z: 0.09216706, w: 0.995489} - m_LocalPosition: {x: -0.03449196, y: 0.000000052154064, z: -0.000000037252903} - m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 1} + m_LocalRotation: {x: .0207216013, y: -.00880678277, z: .0921670571, w: .995489001} + m_LocalPosition: {x: -.03449196, y: 5.21540642e-08, z: -3.7252903e-08} + m_LocalScale: {x: .999999881, y: .99999994, z: 1} m_Children: [] m_Father: {fileID: 415998} m_RootOrder: 1 @@ -9094,9 +9057,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 183666} - m_LocalRotation: {x: -0.00016912422, y: -0.6854283, z: 0.00015939189, w: 0.72814006} - m_LocalPosition: {x: -0.28400356, y: 0.000000051141797, z: 0.000000050044036} - m_LocalScale: {x: 0.9999999, y: 0.9999995, z: 1} + m_LocalRotation: {x: -.000169124221, y: -.685428321, z: .000159391886, w: .728140056} + m_LocalPosition: {x: -.284003556, y: 5.11417966e-08, z: 5.00440365e-08} + m_LocalScale: {x: .999999881, y: .999999523, z: 1} m_Children: - {fileID: 469096} m_Father: {fileID: 444636} @@ -9107,9 +9070,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 123024} - m_LocalRotation: {x: -0.0068844915, y: 0.10466392, z: -0.054565515, w: 0.9929858} - m_LocalPosition: {x: -0.05396188, y: 0, z: 0.000000070780516} - m_LocalScale: {x: 0.9999998, y: 0.9999998, z: 0.9999997} + m_LocalRotation: {x: -.00688449154, y: .104663923, z: -.0545655154, w: .992985785} + m_LocalPosition: {x: -.0539618805, y: 0, z: 7.07805157e-08} + m_LocalScale: {x: .999999821, y: .999999821, z: .999999702} m_Children: - {fileID: 499532} - {fileID: 438734} @@ -9122,7 +9085,7 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 199922} - m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalRotation: {x: -.707106829, y: 0, z: 0, w: .707106829} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: @@ -9135,9 +9098,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 128294} - m_LocalRotation: {x: 0.000000010244548, y: -0.000000009313227, z: -0.000000006519258, - w: 1} - m_LocalPosition: {x: 0.000000018626451, y: -0.00000004656613, z: 0.000000059604645} + m_LocalRotation: {x: 1.02445483e-08, y: -9.31322663e-09, z: -6.51925802e-09, w: 1} + m_LocalPosition: {x: 1.86264515e-08, y: -4.65661287e-08, z: 5.96046448e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 462202} @@ -9148,9 +9110,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 140422} - m_LocalRotation: {x: -0.036794875, y: -0.044579145, z: -0.12172272, w: 0.9908796} - m_LocalPosition: {x: -0.07572011, y: 0.032747544, z: -0.004050736} - m_LocalScale: {x: 1.0000001, y: 1, z: 0.9999998} + m_LocalRotation: {x: -.0367948748, y: -.0445791446, z: -.121722721, w: .990879595} + m_LocalPosition: {x: -.075720109, y: .0327475443, z: -.00405073585} + m_LocalScale: {x: 1.00000012, y: 1, z: .999999821} m_Children: - {fileID: 486886} - {fileID: 450846} @@ -9165,9 +9127,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 183470} - m_LocalRotation: {x: 0.052395623, y: 0.27650622, z: 0.033483792, w: 0.9589984} - m_LocalPosition: {x: -0.020977944, y: 0.00000013411045, z: -0.000000011175871} - m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 1.0000001} + m_LocalRotation: {x: .0523956232, y: .276506215, z: .0334837921, w: .958998382} + m_LocalPosition: {x: -.0209779441, y: 1.34110451e-07, z: -1.11758709e-08} + m_LocalScale: {x: 1.00000012, y: .99999994, z: 1.00000012} m_Children: - {fileID: 431906} m_Father: {fileID: 466040} @@ -9178,9 +9140,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 127606} - m_LocalRotation: {x: -0.06181582, y: 0.05255642, z: 0.98670393, w: -0.1408261} - m_LocalPosition: {x: -0.028720861, y: -0.000000107102096, z: -0.000000017695129} - m_LocalScale: {x: 0.99999994, y: 1, z: 1.0000001} + m_LocalRotation: {x: -.0618158206, y: .0525564216, z: .986703932, w: -.140826106} + m_LocalPosition: {x: -.0287208613, y: -1.07102096e-07, z: -1.76951289e-08} + m_LocalScale: {x: .99999994, y: 1, z: 1.00000012} m_Children: [] m_Father: {fileID: 438686} m_RootOrder: 1 @@ -9190,9 +9152,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 142780} - m_LocalRotation: {x: -0.0000001361541, y: -0.71535945, z: 0.000000083328786, w: 0.69875664} - m_LocalPosition: {x: 0.091822684, y: 0.063646615, z: 0.25202993} - m_LocalScale: {x: 0.9999998, y: 1, z: 0.9999998} + m_LocalRotation: {x: -1.361541e-07, y: -.715359449, z: 8.33287856e-08, w: .698756635} + m_LocalPosition: {x: .0918226838, y: .0636466146, z: .252029926} + m_LocalScale: {x: .999999821, y: 1, z: .999999821} m_Children: [] m_Father: {fileID: 413212} m_RootOrder: 0 @@ -9202,8 +9164,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 189384} - m_LocalRotation: {x: -0.0000000018626446, y: -0.000000020489093, z: 1, w: -9.939624e-17} - m_LocalPosition: {x: -0.08009008, y: 0.000000006046638, z: -1e-15} + m_LocalRotation: {x: -1.86264459e-09, y: -2.04890931e-08, z: 1, w: -9.93962392e-17} + m_LocalPosition: {x: -.0800900832, y: 6.04663786e-09, z: -1e-15} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 444636} @@ -9215,9 +9177,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 127424} - m_LocalRotation: {x: 0.77193165, y: -0.15167017, z: 0.46109763, w: 0.4104956} - m_LocalPosition: {x: -0.35786098, y: -0.0067963703, z: 0.004122555} - m_LocalScale: {x: 1.0526276, y: 0.97463816, z: 0.97463846} + m_LocalRotation: {x: .771931648, y: -.151670173, z: .461097628, w: .410495609} + m_LocalPosition: {x: -.357860982, y: -.00679637026, z: .00412255479} + m_LocalScale: {x: 1.05262756, y: .974638164, z: .974638462} m_Children: - {fileID: 444204} - {fileID: 432864} @@ -9230,9 +9192,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 100864} - m_LocalRotation: {x: -0.015233601, y: 0.2950411, z: -0.023441294, w: 0.9550755} - m_LocalPosition: {x: -0.041616306, y: 0.000000044703484, z: 0.000000040512532} - m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: -.0152336014, y: .295041114, z: -.0234412942, w: .955075502} + m_LocalPosition: {x: -.0416163057, y: 4.47034836e-08, z: 4.0512532e-08} + m_LocalScale: {x: 1.00000024, y: 1.00000012, z: 1.00000012} m_Children: - {fileID: 447772} m_Father: {fileID: 417960} @@ -9243,10 +9205,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 171490} - m_LocalRotation: {x: -0.0000000074505815, y: -0.0000000018626454, z: 0.0000000055879363, - w: 1} - m_LocalPosition: {x: -0.000000007450581, y: 0.00000010430813, z: -0.000000015366822} - m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 1} + m_LocalRotation: {x: -7.45058149e-09, y: -1.86264537e-09, z: 5.58793634e-09, w: 1} + m_LocalPosition: {x: -7.4505806e-09, y: 1.04308128e-07, z: -1.53668225e-08} + m_LocalScale: {x: .999999881, y: .99999994, z: 1} m_Children: [] m_Father: {fileID: 448938} m_RootOrder: 1 @@ -9256,9 +9217,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 134402} - m_LocalRotation: {x: 0.23176719, y: 0.000000023028349, z: 0.000000006241432, w: 0.9727713} - m_LocalPosition: {x: -0.06903521, y: -0.000000007799827, z: -0.000000007450581} - m_LocalScale: {x: 1, y: 0.9999999, z: 0.99999964} + m_LocalRotation: {x: .231767192, y: 2.3028349e-08, z: 6.24143182e-09, w: .972771287} + m_LocalPosition: {x: -.0690352097, y: -7.79982656e-09, z: -7.4505806e-09} + m_LocalScale: {x: 1, y: .999999881, z: .999999642} m_Children: [] m_Father: {fileID: 469756} m_RootOrder: 0 @@ -9268,9 +9229,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 168480} - m_LocalRotation: {x: -0.015230997, y: 0.29504105, z: -0.0234421, w: 0.95507556} - m_LocalPosition: {x: -0.041616306, y: 0.000000044703484, z: 0.000000040512532} - m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: -.0152309975, y: .295041054, z: -.0234421007, w: .955075562} + m_LocalPosition: {x: -.0416163057, y: 4.47034836e-08, z: 4.0512532e-08} + m_LocalScale: {x: 1.00000024, y: 1.00000012, z: 1.00000012} m_Children: - {fileID: 416624} - {fileID: 463792} @@ -9282,9 +9243,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 167528} - m_LocalRotation: {x: 4.6566126e-10, y: -0.0000000037252903, z: -0.000000007450581, - w: 1} - m_LocalPosition: {x: 0.000000014901161, y: 0.000000029802322, z: 0.00000003259629} + m_LocalRotation: {x: 4.6566126e-10, y: -3.7252903e-09, z: -7.4505806e-09, w: 1} + m_LocalPosition: {x: 1.49011612e-08, y: 2.98023224e-08, z: 3.25962901e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 446316} @@ -9295,9 +9255,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 180168} - m_LocalRotation: {x: 0.0000000023772608, y: -0.7719044, z: 0.000000257682, w: 0.6357386} - m_LocalPosition: {x: -0.000000002629529, y: -0.00000000187023, z: -0.000000109631124} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} + m_LocalRotation: {x: 2.37726083e-09, y: -.771904409, z: 2.5768199e-07, w: .635738611} + m_LocalPosition: {x: -2.62952904e-09, y: -1.87022997e-09, z: -1.09631124e-07} + m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} m_Children: - {fileID: 462224} m_Father: {fileID: 463592} @@ -9308,9 +9268,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 136320} - m_LocalRotation: {x: -0.07960418, y: 0.04734299, z: 0.06802649, w: 0.9933752} - m_LocalPosition: {x: -0.11754452, y: -0.00000000721775, z: 0.000000004656613} - m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 0.9999998} + m_LocalRotation: {x: -.0796041787, y: .0473429896, z: .0680264905, w: .993375182} + m_LocalPosition: {x: -.117544517, y: -7.21774995e-09, z: 4.65661287e-09} + m_LocalScale: {x: 1.00000024, y: 1.00000012, z: .999999821} m_Children: [] m_Father: {fileID: 416778} m_RootOrder: 0 @@ -9320,9 +9280,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 169034} - m_LocalRotation: {x: 0.06499693, y: -0.076413766, z: 0.0368569, w: 0.9942726} - m_LocalPosition: {x: -0.11734854, y: 0.00000000372529, z: 0.000000007450581} - m_LocalScale: {x: 1.0032371, y: 0.9993726, z: 0.997358} + m_LocalRotation: {x: .064996928, y: -.0764137655, z: .0368569009, w: .99427259} + m_LocalPosition: {x: -.117348537, y: 3.72529008e-09, z: 7.4505806e-09} + m_LocalScale: {x: 1.00323713, y: .999372602, z: .997358024} m_Children: [] m_Father: {fileID: 404928} m_RootOrder: 0 @@ -9332,8 +9292,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 168968} - m_LocalRotation: {x: -3.604105e-15, y: 7.10349e-15, z: -1.3351769e-15, w: 1} - m_LocalPosition: {x: 0.023440292, y: 0.098000005, z: -0.0014274053} + m_LocalRotation: {x: -3.60410486e-15, y: 7.10349019e-15, z: -1.33517687e-15, w: 1} + m_LocalPosition: {x: .0234402921, y: .0980000049, z: -.00142740528} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 474682} @@ -9344,9 +9304,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 176972} - m_LocalRotation: {x: 0.021266095, y: 0.22724897, z: -0.01842133, w: 0.9734302} - m_LocalPosition: {x: -0.03362881, y: 0.000000055879354, z: 0} - m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: .0212660953, y: .227248967, z: -.0184213296, w: .973430216} + m_LocalPosition: {x: -.0336288102, y: 5.58793545e-08, z: 0} + m_LocalScale: {x: 1.00000024, y: 1.00000012, z: 1.00000012} m_Children: - {fileID: 400238} m_Father: {fileID: 437754} @@ -9357,9 +9317,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 126626} - m_LocalRotation: {x: 0.4887038, y: 0.28355938, z: -0.0624029, w: 0.8227203} - m_LocalPosition: {x: -0.34417352, y: 0.000000044703484, z: 0.00000010803342} - m_LocalScale: {x: 0.9999999, y: 1, z: 0.99999976} + m_LocalRotation: {x: .488703787, y: .283559382, z: -.0624029003, w: .822720289} + m_LocalPosition: {x: -.344173521, y: 4.47034836e-08, z: 1.08033419e-07} + m_LocalScale: {x: .999999881, y: 1, z: .999999762} m_Children: [] m_Father: {fileID: 485066} m_RootOrder: 0 @@ -9369,10 +9329,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 158636} - m_LocalRotation: {x: -0.000000013038514, y: 0.000000002793968, z: -0.000000008236384, - w: 1} - m_LocalPosition: {x: 0.000000070780516, y: -0.00000012200326, z: 0.000000026542693} - m_LocalScale: {x: 1, y: 1.0000001, z: 0.9999999} + m_LocalRotation: {x: -1.30385143e-08, y: 2.79396795e-09, z: -8.23638402e-09, w: 1} + m_LocalPosition: {x: 7.07805157e-08, y: -1.22003257e-07, z: 2.65426934e-08} + m_LocalScale: {x: 1, y: 1.00000012, z: .999999881} m_Children: [] m_Father: {fileID: 456208} m_RootOrder: 1 @@ -9382,10 +9341,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 172124} - m_LocalRotation: {x: -0.000000025611367, y: 0.000000007450581, z: -0.0000000055879354, - w: 1} - m_LocalPosition: {x: -0.000000007450581, y: 0.00000007264316, z: -0.000000011175871} - m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_LocalRotation: {x: -2.56113672e-08, y: 7.4505806e-09, z: -5.58793545e-09, w: 1} + m_LocalPosition: {x: -7.4505806e-09, y: 7.26431608e-08, z: -1.11758709e-08} + m_LocalScale: {x: 1, y: 1.00000012, z: 1} m_Children: [] m_Father: {fileID: 406398} m_RootOrder: 0 @@ -9395,9 +9353,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 155162} - m_LocalRotation: {x: 0.00000007548233, y: 0.9999999, z: -0.00048525725, w: 0.00000013312145} - m_LocalPosition: {x: -0.2840035, y: 0.000000021318101, z: 0.000000002561137} - m_LocalScale: {x: 1, y: 1, z: 0.9999999} + m_LocalRotation: {x: 7.54823333e-08, y: .999999881, z: -.000485257246, w: 1.33121446e-07} + m_LocalPosition: {x: -.284003496, y: 2.13181011e-08, z: 2.56113708e-09} + m_LocalScale: {x: 1, y: 1, z: .999999881} m_Children: - {fileID: 417690} m_Father: {fileID: 444636} @@ -9408,9 +9366,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 147562} - m_LocalRotation: {x: -0.0011640434, y: 0.30859375, z: -0.0070071868, w: 0.9511674} - m_LocalPosition: {x: -0.04302513, y: -0.000000013038516, z: 0.000000026077032} - m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: -.00116404344, y: .30859375, z: -.00700718677, w: .951167405} + m_LocalPosition: {x: -.0430251285, y: -1.3038516e-08, z: 2.60770321e-08} + m_LocalScale: {x: 1.00000012, y: .99999994, z: .99999994} m_Children: - {fileID: 474630} m_Father: {fileID: 463912} @@ -9421,9 +9379,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 191870} - m_LocalRotation: {x: -0.17877467, y: -0.60488456, z: -0.19780745, w: 0.75035095} - m_LocalPosition: {x: -0.13807043, y: 0.000000015366822, z: -0.00000000372529} - m_LocalScale: {x: 1.0000001, y: 0.9999995, z: 0.99999994} + m_LocalRotation: {x: -.17877467, y: -.604884565, z: -.197807446, w: .750350952} + m_LocalPosition: {x: -.138070434, y: 1.53668225e-08, z: -3.72529008e-09} + m_LocalScale: {x: 1.00000012, y: .999999523, z: .99999994} m_Children: - {fileID: 441900} - {fileID: 462708} @@ -9436,9 +9394,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 160330} - m_LocalRotation: {x: 0.6060068, y: -0.13031122, z: -0.3058383, w: 0.7226601} - m_LocalPosition: {x: 0.00651649, y: 0.028590942, z: 0.017791618} - m_LocalScale: {x: 0.9999998, y: 0.9999997, z: 0.9999998} + m_LocalRotation: {x: .606006801, y: -.130311221, z: -.305838287, w: .722660124} + m_LocalPosition: {x: .00651649013, y: .0285909418, z: .0177916177} + m_LocalScale: {x: .999999821, y: .999999702, z: .999999821} m_Children: [] m_Father: {fileID: 402816} m_RootOrder: 2 @@ -9448,9 +9406,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 147882} - m_LocalRotation: {x: -0.06485703, y: -0.0761285, z: -0.036811966, w: 0.99430525} - m_LocalPosition: {x: -0.117348514, y: -0.000000009313226, z: 0} - m_LocalScale: {x: 1.0063399, y: 0.9987753, z: 0.9946524} + m_LocalRotation: {x: -.0648570284, y: -.0761284977, z: -.0368119664, w: .994305253} + m_LocalPosition: {x: -.117348514, y: -9.31322575e-09, z: 0} + m_LocalScale: {x: 1.00633991, y: .998775303, z: .99465239} m_Children: [] m_Father: {fileID: 409520} m_RootOrder: 0 @@ -9460,9 +9418,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 110110} - m_LocalRotation: {x: 0.0477817, y: -0.033454858, z: 0.04514684, w: 0.99727607} - m_LocalPosition: {x: -0.07600721, y: 0.00064525753, z: -0.0014174702} - m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_LocalRotation: {x: .0477816984, y: -.0334548578, z: .0451468416, w: .997276068} + m_LocalPosition: {x: -.0760072097, y: .000645257533, z: -.00141747016} + m_LocalScale: {x: 1, y: 1, z: 1.00000012} m_Children: - {fileID: 403188} - {fileID: 453910} @@ -9477,9 +9435,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 129538} - m_LocalRotation: {x: 0.038727347, y: 0.25753757, z: -0.012408115, w: 0.96541214} - m_LocalPosition: {x: -0.023271814, y: 0.000000004889444, z: 0.000000029802322} - m_LocalScale: {x: 0.9999999, y: 1, z: 0.9999999} + m_LocalRotation: {x: .0387273468, y: .257537574, z: -.012408115, w: .96541214} + m_LocalPosition: {x: -.023271814, y: 4.88944396e-09, z: 2.98023224e-08} + m_LocalScale: {x: .999999881, y: 1, z: .999999881} m_Children: - {fileID: 472362} m_Father: {fileID: 400238} @@ -9490,9 +9448,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 103698} - m_LocalRotation: {x: -0.41290912, y: 0.59200174, z: 0.5082285, w: -0.46983382} - m_LocalPosition: {x: -0.34526408, y: 0.01830003, z: 0.080845065} - m_LocalScale: {x: 1.0000001, y: 1, z: 1.0000001} + m_LocalRotation: {x: -.41290912, y: .592001736, z: .508228481, w: -.469833821} + m_LocalPosition: {x: -.345264077, y: .0183000304, z: .0808450654} + m_LocalScale: {x: 1.00000012, y: 1, z: 1.00000012} m_Children: [] m_Father: {fileID: 477750} m_RootOrder: 10 @@ -9502,9 +9460,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 180522} - m_LocalRotation: {x: -0.03872726, y: 0.2575376, z: 0.012408054, w: 0.96541214} - m_LocalPosition: {x: -0.02327177, y: 0.000000027008355, z: 0} - m_LocalScale: {x: 1.0000001, y: 1.0000002, z: 1.0000001} + m_LocalRotation: {x: -.0387272611, y: .257537603, z: .0124080544, w: .96541214} + m_LocalPosition: {x: -.0232717693, y: 2.70083547e-08, z: 0} + m_LocalScale: {x: 1.00000012, y: 1.00000024, z: 1.00000012} m_Children: - {fileID: 424952} m_Father: {fileID: 497564} @@ -9515,9 +9473,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 173920} - m_LocalRotation: {x: -0.00000023562461, y: 9.313255e-10, z: -0.000000012340024, - w: 1} - m_LocalPosition: {x: -0.11754455, y: 0.000000003026798, z: -0.000000001629815} + m_LocalRotation: {x: -2.35624611e-07, y: 9.31325461e-10, z: -1.23400241e-08, w: 1} + m_LocalPosition: {x: -.117544547, y: 3.02679792e-09, z: -1.62981495e-09} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 475994} @@ -9529,8 +9486,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 147852} - m_LocalRotation: {x: -0.006945139, y: 0.28691703, z: 0.038375914, w: 0.95716125} - m_LocalPosition: {x: -0.024342626, y: 0, z: 0.000000007450581} + m_LocalRotation: {x: -.0069451388, y: .286917031, z: .0383759141, w: .957161248} + m_LocalPosition: {x: -.0243426263, y: 0, z: 7.4505806e-09} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 464892} @@ -9542,9 +9499,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 186300} - m_LocalRotation: {x: -0.07960421, y: 0.047342982, z: 0.068026386, w: 0.9933752} - m_LocalPosition: {x: -0.11754454, y: -0.000000021769665, z: -0.00000000372529} - m_LocalScale: {x: 1.0000001, y: 1, z: 0.9999999} + m_LocalRotation: {x: -.0796042085, y: .0473429821, z: .0680263862, w: .993375182} + m_LocalPosition: {x: -.117544539, y: -2.17696652e-08, z: -3.72529008e-09} + m_LocalScale: {x: 1.00000012, y: 1, z: .999999881} m_Children: [] m_Father: {fileID: 464838} m_RootOrder: 0 @@ -9554,10 +9511,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 145916} - m_LocalRotation: {x: -0.00000014016405, y: -2.3282908e-10, z: -0.000000011175871, - w: 1} - m_LocalPosition: {x: -0.13807043, y: -0.00000003760215, z: -0.000000001105946} - m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_LocalRotation: {x: -1.40164047e-07, y: -2.32829075e-10, z: -1.11758709e-08, w: 1} + m_LocalPosition: {x: -.138070434, y: -3.7602149e-08, z: -1.105946e-09} + m_LocalScale: {x: 1, y: 1, z: .99999994} m_Children: - {fileID: 469836} m_Father: {fileID: 409544} @@ -9568,10 +9524,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 109788} - m_LocalRotation: {x: 0.00000026903584, y: 3.1319893e-16, z: 0.0000000011641531, - w: 1} - m_LocalPosition: {x: 0.000000036947313, y: 0.000000018015271, z: 9.31323e-10} - m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: 2.69035837e-07, y: 3.13198929e-16, z: 1.16415311e-09, w: 1} + m_LocalPosition: {x: 3.69473128e-08, y: 1.80152711e-08, z: 9.31323019e-10} + m_LocalScale: {x: 1, y: .99999994, z: .99999994} m_Children: - {fileID: 407876} m_Father: {fileID: 484398} @@ -9582,9 +9537,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 189390} - m_LocalRotation: {x: -0.1182565, y: 0.30201212, z: -0.02641006, w: 0.94557214} - m_LocalPosition: {x: -0.037932597, y: 0.00000008940697, z: 0.000000067055225} - m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: -.118256502, y: .302012116, z: -.02641006, w: .945572138} + m_LocalPosition: {x: -.0379325971, y: 8.94069672e-08, z: 6.70552254e-08} + m_LocalScale: {x: 1, y: 1.00000012, z: 1.00000012} m_Children: - {fileID: 419384} - {fileID: 462202} @@ -9596,9 +9551,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 159086} - m_LocalRotation: {x: -0.058942735, y: 0.07149859, z: -0.046142366, w: 0.9946279} - m_LocalPosition: {x: -0.000000053085387, y: 0.000000060070306, z: 0.000000005587935} - m_LocalScale: {x: 1.0000002, y: 0.99999976, z: 0.9999999} + m_LocalRotation: {x: -.0589427352, y: .0714985877, z: -.0461423658, w: .994627893} + m_LocalPosition: {x: -5.30853868e-08, y: 6.00703061e-08, z: 5.587935e-09} + m_LocalScale: {x: 1.00000024, y: .999999762, z: .999999881} m_Children: - {fileID: 467362} m_Father: {fileID: 410054} @@ -9609,10 +9564,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 147874} - m_LocalRotation: {x: -0.00000028987418, y: 0.0000000039581214, z: -9.3132146e-10, - w: 1} - m_LocalPosition: {x: -0.18774867, y: -0.000000040745363, z: -0.00000000372529} - m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: -2.8987418e-07, y: 3.95812139e-09, z: -9.31321464e-10, w: 1} + m_LocalPosition: {x: -.187748671, y: -4.07453626e-08, z: -3.72529008e-09} + m_LocalScale: {x: 1, y: .99999994, z: .99999994} m_Children: - {fileID: 481160} m_Father: {fileID: 416886} @@ -9623,9 +9577,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 153290} - m_LocalRotation: {x: 0.1964652, y: 0.70781654, z: 0.63976806, w: -0.22603989} - m_LocalPosition: {x: 0.055485982, y: -0.5216704, z: 0.7052509} - m_LocalScale: {x: 0.99999976, y: 0.9999999, z: 1} + m_LocalRotation: {x: .196465194, y: .707816541, z: .639768064, w: -.226039886} + m_LocalPosition: {x: .0554859824, y: -.521670401, z: .705250919} + m_LocalScale: {x: .999999762, y: .999999881, z: 1} m_Children: - {fileID: 437084} m_Father: {fileID: 416532} @@ -9636,8 +9590,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 108272} - m_LocalRotation: {x: 1.0655235e-14, y: -0.0000000074505895, z: -1.7802358e-15, w: 1} - m_LocalPosition: {x: 0.000000009603193, y: 0.000000019853294, z: -0.000000002516408} + m_LocalRotation: {x: 1.06552349e-14, y: -7.45058948e-09, z: -1.78023583e-15, w: 1} + m_LocalPosition: {x: 9.60319291e-09, y: 1.98532941e-08, z: -2.51640797e-09} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 404202} @@ -9648,10 +9602,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 177316} - m_LocalRotation: {x: -0.0000024507751, y: -0.000000014901125, z: -0.000000014901198, - w: 1} - m_LocalPosition: {x: -0.000000029802322, y: -0.00000009685755, z: 0.000000031664968} - m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: -2.45077513e-06, y: -1.49011248e-08, z: -1.49011985e-08, w: 1} + m_LocalPosition: {x: -2.98023224e-08, y: -9.68575478e-08, z: 3.16649675e-08} + m_LocalScale: {x: 1, y: 1.00000012, z: 1.00000012} m_Children: - {fileID: 432900} m_Father: {fileID: 444524} @@ -9662,9 +9615,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 105246} - m_LocalRotation: {x: -0.6858129, y: -0.12326823, z: 0.7102721, w: 0.099896565} - m_LocalPosition: {x: 0.05564153, y: 0.5118927, z: 0.7122971} - m_LocalScale: {x: 0.000014340437, y: 1, z: 1.0000001} + m_LocalRotation: {x: -.685812891, y: -.123268232, z: .710272074, w: .0998965651} + m_LocalPosition: {x: .0556415282, y: .511892676, z: .712297082} + m_LocalScale: {x: 1.43404368e-05, y: 1, z: 1.00000012} m_Children: [] m_Father: {fileID: 416532} m_RootOrder: 27 @@ -9674,9 +9627,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 104096} - m_LocalRotation: {x: 0.60600674, y: -0.13031128, z: -0.30583838, w: 0.7226601} - m_LocalPosition: {x: 0.00651649, y: 0.028590942, z: 0.017791618} - m_LocalScale: {x: 0.9999999, y: 0.99999964, z: 0.9999998} + m_LocalRotation: {x: .606006742, y: -.13031128, z: -.305838376, w: .722660124} + m_LocalPosition: {x: .00651649013, y: .0285909418, z: .0177916177} + m_LocalScale: {x: .999999881, y: .999999642, z: .999999821} m_Children: - {fileID: 460424} - {fileID: 430326} @@ -9689,9 +9642,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 181882} - m_LocalRotation: {x: 0.00000032410028, y: 6.0368385e-15, z: 0.000000018626453, w: 1} - m_LocalPosition: {x: -0.000000044703484, y: 0.000000014901161, z: -0.000000040978193} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} + m_LocalRotation: {x: 3.24100284e-07, y: 6.03683854e-15, z: 1.86264533e-08, w: 1} + m_LocalPosition: {x: -4.47034836e-08, y: 1.49011612e-08, z: -4.09781933e-08} + m_LocalScale: {x: .99999994, y: .999999881, z: .999999881} m_Children: [] m_Father: {fileID: 431342} m_RootOrder: 0 @@ -9701,9 +9654,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 130242} - m_LocalRotation: {x: -0.03008317, y: 0.30821598, z: -0.05537431, w: 0.94922686} - m_LocalPosition: {x: -0.025013402, y: -0.000000022351742, z: 0.000000014901161} - m_LocalScale: {x: 0.99999976, y: 0.9999998, z: 0.9999999} + m_LocalRotation: {x: -.0300831702, y: .308215976, z: -.0553743094, w: .949226856} + m_LocalPosition: {x: -.0250134021, y: -2.23517418e-08, z: 1.49011612e-08} + m_LocalScale: {x: .999999762, y: .999999821, z: .999999881} m_Children: - {fileID: 416636} m_Father: {fileID: 476392} @@ -9714,9 +9667,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 153206} - m_LocalRotation: {x: 0.0000000144355, y: -9.313227e-10, z: -0.0000000042491592, - w: 1} - m_LocalPosition: {x: 0.000000020489097, y: 0.000000022817403, z: 0.000000042375177} + m_LocalRotation: {x: 1.44354999e-08, y: -9.31322686e-10, z: -4.24915925e-09, w: 1} + m_LocalPosition: {x: 2.04890966e-08, y: 2.28174031e-08, z: 4.23751771e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 429696} @@ -9727,9 +9679,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 170716} - m_LocalRotation: {x: -0.19646516, y: 0.70781654, z: -0.63976806, w: -0.22603993} - m_LocalPosition: {x: 0.055641536, y: 0.5118926, z: 0.71229726} - m_LocalScale: {x: 0.8739184, y: 0.8739183, z: 0.8739183} + m_LocalRotation: {x: -.196465164, y: .707816541, z: -.639768064, w: -.226039931} + m_LocalPosition: {x: .0556415357, y: .511892617, z: .712297261} + m_LocalScale: {x: .873918414, y: .873918295, z: .873918295} m_Children: - {fileID: 419444} m_Father: {fileID: 416532} @@ -9740,9 +9692,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 189884} - m_LocalRotation: {x: -0.2659183, y: 0.96367127, z: 0.019394096, w: -0.015783116} - m_LocalPosition: {x: 0.15052705, y: 0.109014444, z: 0.0068199146} - m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 1.0000004} + m_LocalRotation: {x: -.265918314, y: .963671267, z: .019394096, w: -.0157831162} + m_LocalPosition: {x: .150527045, y: .109014444, z: .00681991456} + m_LocalScale: {x: .999999821, y: .99999994, z: 1.00000036} m_Children: - {fileID: 431964} m_Father: {fileID: 477260} @@ -9753,10 +9705,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 109574} - m_LocalRotation: {x: 0.00000011175872, y: -0.0000000018626465, z: -0.000000011175871, - w: 1} - m_LocalPosition: {x: -0.01896631, y: -0.000000011175871, z: -0.000000014901161} - m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: 1.11758723e-07, y: -1.86264648e-09, z: -1.11758709e-08, w: 1} + m_LocalPosition: {x: -.0189663097, y: -1.11758709e-08, z: -1.49011612e-08} + m_LocalScale: {x: 1, y: .99999994, z: .99999994} m_Children: [] m_Father: {fileID: 459746} m_RootOrder: 0 @@ -9766,10 +9717,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 191628} - m_LocalRotation: {x: -0.000000011175873, y: 0.000000011175872, z: 0.000000014901163, - w: 1} - m_LocalPosition: {x: 0.000000052154064, y: 0.00000008940697, z: -0.000000037252903} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.9999999} + m_LocalRotation: {x: -1.11758727e-08, y: 1.11758718e-08, z: 1.4901163e-08, w: 1} + m_LocalPosition: {x: 5.21540642e-08, y: 8.94069672e-08, z: -3.7252903e-08} + m_LocalScale: {x: .99999994, y: .999999881, z: .999999881} m_Children: [] m_Father: {fileID: 429732} m_RootOrder: 0 @@ -9779,10 +9729,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 156166} - m_LocalRotation: {x: -0.00000031478706, y: -0.0000000013969836, z: -9.31323e-10, - w: 1} - m_LocalPosition: {x: -0.35786107, y: -0.0067963516, z: 0.0041228263} - m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_LocalRotation: {x: -3.14787059e-07, y: -1.39698364e-09, z: -9.31323019e-10, w: 1} + m_LocalPosition: {x: -.357861072, y: -.00679635163, z: .00412282627} + m_LocalScale: {x: 1, y: .99999994, z: 1} m_Children: [] m_Father: {fileID: 468046} m_RootOrder: 3 @@ -9792,9 +9741,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 189962} - m_LocalRotation: {x: -0.0011606392, y: 0.30859375, z: -0.007008292, w: 0.95116746} - m_LocalPosition: {x: -0.0430251, y: -0.000000009313226, z: 0.000000018626451} - m_LocalScale: {x: 1, y: 0.9999998, z: 0.9999998} + m_LocalRotation: {x: -.00116063922, y: .30859375, z: -.00700829178, w: .951167464} + m_LocalPosition: {x: -.0430250987, y: -9.31322575e-09, z: 1.86264515e-08} + m_LocalScale: {x: 1, y: .999999821, z: .999999821} m_Children: - {fileID: 448832} m_Father: {fileID: 458802} @@ -9805,8 +9754,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 162656} - m_LocalRotation: {x: -0.00000020318856, y: -0.7207312, z: 0.00000015468183, w: 0.6932147} - m_LocalPosition: {x: 0.00000003986206, y: 5.64238e-10, z: 0.000000004946075} + m_LocalRotation: {x: -2.03188563e-07, y: -.720731199, z: 1.54681828e-07, w: .693214715} + m_LocalPosition: {x: 3.98620585e-08, y: 5.6423799e-10, z: 4.94607511e-09} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 452294} @@ -9817,9 +9766,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 128800} - m_LocalRotation: {x: -0.000000121402, y: -0.72418296, z: 0.00000014497658, w: 0.6896079} - m_LocalPosition: {x: -0.000000059603327, y: -3.117e-11, z: 0.000000035391338} - m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: -1.21401996e-07, y: -.724182963, z: 1.44976582e-07, w: .689607918} + m_LocalPosition: {x: -5.96033267e-08, y: -3.11700006e-11, z: 3.53913379e-08} + m_LocalScale: {x: .999999821, y: .99999994, z: .99999994} m_Children: [] m_Father: {fileID: 497248} m_RootOrder: 0 @@ -9829,8 +9778,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 192240} - m_LocalRotation: {x: -0.00000007094097, y: -0.7958691, z: 0.00000039522425, w: 0.6054688} - m_LocalPosition: {x: -0.1959242, y: -0.000000002983406, z: 3.17058e-10} + m_LocalRotation: {x: -7.09409704e-08, y: -.795869112, z: 3.95224248e-07, w: .60546881} + m_LocalPosition: {x: -.195924193, y: -2.98340597e-09, z: 3.17057991e-10} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 454864} @@ -9841,9 +9790,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 116462} - m_LocalRotation: {x: 0.12750529, y: -0.020225666, z: -0.010954166, w: 0.9915711} - m_LocalPosition: {x: -0.053260975, y: 0.000000016763806, z: 0.000000020023435} - m_LocalScale: {x: 0.9999997, y: 0.9999998, z: 0.99999976} + m_LocalRotation: {x: .127505288, y: -.0202256665, z: -.0109541658, w: .991571128} + m_LocalPosition: {x: -.0532609746, y: 1.67638063e-08, z: 2.00234354e-08} + m_LocalScale: {x: .999999702, y: .999999821, z: .999999762} m_Children: [] m_Father: {fileID: 402816} m_RootOrder: 0 @@ -9853,8 +9802,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 194922} - m_LocalRotation: {x: 2.7576202e-15, y: 0.000000027939667, z: 1, w: 6.123226e-17} - m_LocalPosition: {x: -0.08009009, y: 0.000000006046632, z: 0.000000001862646} + m_LocalRotation: {x: 2.75762016e-15, y: 2.79396666e-08, z: 1, w: 6.12322632e-17} + m_LocalPosition: {x: -.0800900906, y: 6.04663208e-09, z: 1.86264604e-09} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 469546} @@ -9866,9 +9815,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 131464} - m_LocalRotation: {x: 0.00000011977059, y: 0.7153595, z: -0.00000006732503, w: 0.6987566} - m_LocalPosition: {x: -0.020755868, y: 0.000000001567025, z: 0.34332958} - m_LocalScale: {x: 0.9999998, y: 0.9999998, z: 0.9999998} + m_LocalRotation: {x: 1.1977059e-07, y: .715359509, z: -6.73250327e-08, w: .698756576} + m_LocalPosition: {x: -.0207558684, y: 1.56702495e-09, z: .343329579} + m_LocalScale: {x: .999999821, y: .999999821, z: .999999821} m_Children: [] m_Father: {fileID: 416532} m_RootOrder: 0 @@ -9878,9 +9827,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 106810} - m_LocalRotation: {x: 0.00000013235115, y: 0.7947927, z: -0.00000009474664, w: 0.6068811} - m_LocalPosition: {x: -0.37726596, y: 0.000000028432245, z: 0.022689048} - m_LocalScale: {x: 0.9999998, y: 1.0000001, z: 0.9999998} + m_LocalRotation: {x: 1.32351147e-07, y: .794792712, z: -9.4746639e-08, w: .606881082} + m_LocalPosition: {x: -.37726596, y: 2.8432245e-08, z: .0226890482} + m_LocalScale: {x: .999999821, y: 1.00000012, z: .999999821} m_Children: - {fileID: 452294} m_Father: {fileID: 477750} @@ -9891,9 +9840,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 188712} - m_LocalRotation: {x: 0.0000033304095, y: -0.000000007450649, z: -0.000000020489074, - w: 1} - m_LocalPosition: {x: -0.000000044703484, y: -0.000000044703484, z: 0.000000014901161} + m_LocalRotation: {x: 3.33040953e-06, y: -7.45064899e-09, z: -2.04890735e-08, w: 1} + m_LocalPosition: {x: -4.47034836e-08, y: -4.47034836e-08, z: 1.49011612e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 492470} @@ -9904,9 +9852,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146592} - m_LocalRotation: {x: 0.45601857, y: 0.1905528, z: -0.20100963, w: 0.8457729} - m_LocalPosition: {x: -0.09502523, y: -0.01820641, z: -0.055383846} - m_LocalScale: {x: 1.166755, y: 0.9831703, z: 0.9986335} + m_LocalRotation: {x: .456018567, y: .190552801, z: -.201009631, w: .845772922} + m_LocalPosition: {x: -.0950252265, y: -.0182064101, z: -.0553838462} + m_LocalScale: {x: 1.16675496, y: .983170271, z: .998633504} m_Children: [] m_Father: {fileID: 489554} m_RootOrder: 0 @@ -9916,9 +9864,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 106312} - m_LocalRotation: {x: -0.0069429236, y: 0.28691715, z: 0.038375255, w: 0.9571613} - m_LocalPosition: {x: -0.024342626, y: 0, z: 0.000000007450581} - m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_LocalRotation: {x: -.00694292365, y: .28691715, z: .0383752547, w: .957161307} + m_LocalPosition: {x: -.0243426263, y: 0, z: 7.4505806e-09} + m_LocalScale: {x: 1, y: 1.00000012, z: 1} m_Children: - {fileID: 423768} m_Father: {fileID: 451502} @@ -9929,10 +9877,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 169824} - m_LocalRotation: {x: 0.00000003818423, y: 0.0000000023283067, z: 0.0000000015133993, - w: 1} - m_LocalPosition: {x: -0.000000012805685, y: 0.00000000372529, z: -0.000000040163286} - m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1} + m_LocalRotation: {x: 3.81842291e-08, y: 2.32830666e-09, z: 1.51339929e-09, w: 1} + m_LocalPosition: {x: -1.28056854e-08, y: 3.72529008e-09, z: -4.0163286e-08} + m_LocalScale: {x: .99999994, y: .99999994, z: 1} m_Children: [] m_Father: {fileID: 482948} m_RootOrder: 0 @@ -9942,9 +9889,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146754} - m_LocalRotation: {x: -0.0000028368086, y: -0.0000000074506055, z: 0.000000008847543, - w: 1} - m_LocalPosition: {x: -0.000000014901161, y: 0.00000008195639, z: -0.000000037252903} + m_LocalRotation: {x: -2.83680856e-06, y: -7.45060547e-09, z: 8.84754314e-09, w: 1} + m_LocalPosition: {x: -1.49011612e-08, y: 8.19563866e-08, z: -3.7252903e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 454418} @@ -9956,9 +9902,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 168896} - m_LocalRotation: {x: 0.0000014458783, y: 5.5798875e-14, z: 0.000000038591683, w: 1} - m_LocalPosition: {x: -0.014360435, y: 0.000000037252903, z: 0.000000020954758} - m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_LocalRotation: {x: 1.4458783e-06, y: 5.57988748e-14, z: 3.85916827e-08, w: 1} + m_LocalPosition: {x: -.0143604353, y: 3.7252903e-08, z: 2.09547579e-08} + m_LocalScale: {x: .99999994, y: 1, z: 1} m_Children: [] m_Father: {fileID: 495852} m_RootOrder: 0 @@ -9968,9 +9914,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 118896} - m_LocalRotation: {x: -0.020721607, y: -0.10895363, z: 0.98972565, w: 0.09023829} - m_LocalPosition: {x: -0.03449197, y: 0.000000029802322, z: 0.000000055879354} - m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 0.9999998} + m_LocalRotation: {x: -.0207216069, y: -.108953632, z: .989725649, w: .090238288} + m_LocalPosition: {x: -.0344919711, y: 2.98023224e-08, z: 5.58793545e-08} + m_LocalScale: {x: 1.00000024, y: 1.00000012, z: .999999821} m_Children: [] m_Father: {fileID: 481516} m_RootOrder: 1 @@ -9980,9 +9926,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 188406} - m_LocalRotation: {x: 0.3300493, y: 0.941489, z: 0.04378374, w: 0.052431382} - m_LocalPosition: {x: 0.000000005348681, y: -0.000000003936432, z: -0.000000002508363} - m_LocalScale: {x: 0.99999976, y: 1.0000002, z: 1.0000001} + m_LocalRotation: {x: .330049306, y: .941488981, z: .0437837392, w: .0524313822} + m_LocalPosition: {x: 5.34868105e-09, y: -3.93643207e-09, z: -2.50836307e-09} + m_LocalScale: {x: .999999762, y: 1.00000024, z: 1.00000012} m_Children: - {fileID: 491422} m_Father: {fileID: 447564} @@ -9993,9 +9939,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 133258} - m_LocalRotation: {x: 0.8614739, y: 0.18954237, z: -0.088452816, w: 0.46272305} - m_LocalPosition: {x: 0.021179043, y: -0.43866724, z: 0.8812954} - m_LocalScale: {x: 37.35718, y: 1.0000002, z: 0.99999994} + m_LocalRotation: {x: .861473918, y: .189542368, z: -.088452816, w: .462723047} + m_LocalPosition: {x: .0211790428, y: -.438667238, z: .881295383} + m_LocalScale: {x: 37.3571815, y: 1.00000024, z: .99999994} m_Children: [] m_Father: {fileID: 416532} m_RootOrder: 30 @@ -10005,9 +9951,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 183014} - m_LocalRotation: {x: -0.33004922, y: 0.9414889, z: -0.04378357, w: 0.05243231} - m_LocalPosition: {x: 0.000000020146274, y: 0.00000001096473, z: -0.00000000214825} - m_LocalScale: {x: 0.9999999, y: 1.0000004, z: 1.0000004} + m_LocalRotation: {x: -.330049217, y: .941488922, z: -.0437835716, w: .0524323098} + m_LocalPosition: {x: 2.0146274e-08, y: 1.09647296e-08, z: -2.14825002e-09} + m_LocalScale: {x: .999999881, y: 1.00000036, z: 1.00000036} m_Children: - {fileID: 458284} m_Father: {fileID: 413212} @@ -10018,10 +9964,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 165612} - m_LocalRotation: {x: 0.0000022836027, y: -0.0000000074505975, z: -0.0000000074505637, - w: 1} - m_LocalPosition: {x: 0.000000052154064, y: -0.000000007450581, z: -0.000000014901161} - m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: 2.28360273e-06, y: -7.45059747e-09, z: -7.45056372e-09, w: 1} + m_LocalPosition: {x: 5.21540642e-08, y: -7.4505806e-09, z: -1.49011612e-08} + m_LocalScale: {x: 1, y: 1.00000012, z: 1.00000012} m_Children: [] m_Father: {fileID: 458136} m_RootOrder: 0 @@ -10031,9 +9976,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 159758} - m_LocalRotation: {x: -0.006886199, y: 0.104663976, z: -0.054565318, w: 0.9929858} - m_LocalPosition: {x: -0.05396188, y: 0, z: 0.000000070780516} - m_LocalScale: {x: 0.8739183, y: 0.99999976, z: 0.99999964} + m_LocalRotation: {x: -.00688619912, y: .104663976, z: -.0545653179, w: .992985785} + m_LocalPosition: {x: -.0539618805, y: 0, z: 7.07805157e-08} + m_LocalScale: {x: .873918295, y: .999999762, z: .999999642} m_Children: [] m_Father: {fileID: 494576} m_RootOrder: 2 @@ -10043,10 +9988,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 101540} - m_LocalRotation: {x: -0.000000022351742, y: -0.000000014435499, z: 0.000000024330799, - w: 1} - m_LocalPosition: {x: -0.000000002677552, y: -0.000000007392373, z: -0.00000000372529} - m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_LocalRotation: {x: -2.23517418e-08, y: -1.4435499e-08, z: 2.43307987e-08, w: 1} + m_LocalPosition: {x: -2.67755196e-09, y: -7.39237294e-09, z: -3.72529008e-09} + m_LocalScale: {x: 1.00000012, y: 1, z: 1} m_Children: - {fileID: 405524} m_Father: {fileID: 469756} @@ -10057,9 +10001,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 166306} - m_LocalRotation: {x: 0.05151718, y: 0.23015569, z: 0.07892788, w: 0.96857876} - m_LocalPosition: {x: -0.028720861, y: -0.000000107102096, z: -0.000000017695129} - m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999999} + m_LocalRotation: {x: .0515171811, y: .230155692, z: .078927882, w: .968578756} + m_LocalPosition: {x: -.0287208613, y: -1.07102096e-07, z: -1.76951289e-08} + m_LocalScale: {x: 1, y: .99999994, z: .999999881} m_Children: - {fileID: 401484} - {fileID: 449308} @@ -10071,8 +10015,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 120102} - m_LocalRotation: {x: 0.00000005244948, y: 0.69471395, z: 1.2787936e-14, w: 0.71928614} - m_LocalPosition: {x: 0.000000005867607, y: 0.000000001038184, z: 0.00000006862197} + m_LocalRotation: {x: 5.24494794e-08, y: .69471395, z: 1.27879359e-14, w: .719286144} + m_LocalPosition: {x: 5.86760684e-09, y: 1.03818398e-09, z: 6.86219721e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 499668} @@ -10084,9 +10028,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 138432} - m_LocalRotation: {x: 0.056073572, y: 0.09941861, z: 0.6524155, w: 0.7492168} - m_LocalPosition: {x: -0.26888782, y: -0.3831968, z: 0.009949159} - m_LocalScale: {x: 0.9999999, y: 1, z: 0.99999994} + m_LocalRotation: {x: .0560735725, y: .0994186103, z: .652415514, w: .749216795} + m_LocalPosition: {x: -.268887818, y: -.383196801, z: .00994915888} + m_LocalScale: {x: .999999881, y: 1, z: .99999994} m_Children: [] m_Father: {fileID: 405990} m_RootOrder: 0 @@ -10096,9 +10040,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 182888} - m_LocalRotation: {x: 0.00000029930376, y: -4.6566134e-10, z: 3.4924622e-10, w: 1} - m_LocalPosition: {x: -0.18774866, y: 0.000000005122274, z: 0.000000013038516} - m_LocalScale: {x: 0.9999997, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: 2.99303764e-07, y: -4.65661343e-10, z: 3.49246215e-10, w: 1} + m_LocalPosition: {x: -.187748656, y: 5.12227416e-09, z: 1.3038516e-08} + m_LocalScale: {x: .999999702, y: 1.00000012, z: 1.00000012} m_Children: - {fileID: 482948} m_Father: {fileID: 458850} @@ -10109,9 +10053,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 196632} - m_LocalRotation: {x: -0.061952803, y: -0.00021265332, z: -0.0045715314, w: 0.9980686} - m_LocalPosition: {x: -0.051810946, y: -0.00000010617077, z: 0.00000002561137} - m_LocalScale: {x: 0.9999998, y: 0.9999999, z: 0.9999998} + m_LocalRotation: {x: -.0619528033, y: -.000212653322, z: -.00457153143, w: .998068571} + m_LocalPosition: {x: -.0518109463, y: -1.06170774e-07, z: 2.56113708e-08} + m_LocalScale: {x: .999999821, y: .999999881, z: .999999821} m_Children: - {fileID: 428904} m_Father: {fileID: 456208} @@ -10122,9 +10066,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 125270} - m_LocalRotation: {x: 0.4129092, y: 0.5920017, z: -0.5082285, w: -0.46983382} - m_LocalPosition: {x: -0.34526408, y: -0.018299976, z: 0.080845065} - m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_LocalRotation: {x: .41290921, y: .592001677, z: -.508228481, w: -.469833821} + m_LocalPosition: {x: -.345264077, y: -.0182999764, z: .0808450654} + m_LocalScale: {x: 1, y: 1, z: 1.00000012} m_Children: - {fileID: 495908} - {fileID: 475278} @@ -10139,9 +10083,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 144290} - m_LocalRotation: {x: -0.0000020749865, y: 4.656806e-10, z: -0.000000009313225, w: 1} - m_LocalPosition: {x: -0.000000002328306, y: 0.000000022351742, z: -0.000000033527613} - m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: -2.07498647e-06, y: 4.65680605e-10, z: -9.31322486e-09, w: 1} + m_LocalPosition: {x: -2.32830599e-09, y: 2.23517418e-08, z: -3.35276127e-08} + m_LocalScale: {x: 1, y: 1.00000012, z: 1.00000012} m_Children: - {fileID: 435726} m_Father: {fileID: 482832} @@ -10152,8 +10096,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 191768} - m_LocalRotation: {x: -3.604105e-15, y: 7.10349e-15, z: -1.3351769e-15, w: 1} - m_LocalPosition: {x: 0.023440277, y: -0.098000005, z: -0.0014273685} + m_LocalRotation: {x: -3.60410486e-15, y: 7.10349019e-15, z: -1.33517687e-15, w: 1} + m_LocalPosition: {x: .0234402772, y: -.0980000049, z: -.00142736849} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 474682} @@ -10164,9 +10108,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 172828} - m_LocalRotation: {x: -0.33004904, y: 0.94148904, z: -0.043783598, w: 0.052432306} - m_LocalPosition: {x: 0.00000004989039, y: -0.000000003936434, z: 6.4572e-10} - m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1} + m_LocalRotation: {x: -.330049038, y: .941489041, z: -.0437835976, w: .0524323061} + m_LocalPosition: {x: 4.98903887e-08, y: -3.93643385e-09, z: 6.45719977e-10} + m_LocalScale: {x: .99999994, y: .99999994, z: 1} m_Children: [] m_Father: {fileID: 413212} m_RootOrder: 4 @@ -10176,8 +10120,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 148772} - m_LocalRotation: {x: 0.00000005876542, y: 0.79586923, z: -0.00000040775566, w: 0.60546863} - m_LocalPosition: {x: -0.052275594, y: -0.0000001079447, z: -0.18882146} + m_LocalRotation: {x: 5.87654192e-08, y: .795869231, z: -4.07755664e-07, w: .605468631} + m_LocalPosition: {x: -.0522755943, y: -1.079447e-07, z: -.188821465} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 499694} @@ -10189,9 +10133,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 152572} - m_LocalRotation: {x: -0.7060779, y: 0.70710105, z: 0.037941415, w: 0.004758184} - m_LocalPosition: {x: -0.037105795, y: -0.11689166, z: 0.019739456} - m_LocalScale: {x: 1.0000001, y: 0.9999999, z: 1.0000001} + m_LocalRotation: {x: -.706077874, y: .707101047, z: .0379414149, w: .00475818384} + m_LocalPosition: {x: -.037105795, y: -.11689166, z: .0197394565} + m_LocalScale: {x: 1.00000012, y: .999999881, z: 1.00000012} m_Children: - {fileID: 470564} - {fileID: 415788} @@ -10203,9 +10147,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 192780} - m_LocalRotation: {x: 0.0016976758, y: -0.6805935, z: 0.027261522, w: 0.7321519} - m_LocalPosition: {x: -0.34368813, y: 0.000000021071173, z: 0.000000001629815} - m_LocalScale: {x: 1.0000143, y: 1.0000143, z: 1.0000144} + m_LocalRotation: {x: .00169767579, y: -.680593491, z: .0272615217, w: .732151926} + m_LocalPosition: {x: -.34368813, y: 2.10711733e-08, z: 1.62981495e-09} + m_LocalScale: {x: 1.00001431, y: 1.00001431, z: 1.00001442} m_Children: - {fileID: 466826} m_Father: {fileID: 482734} @@ -10216,9 +10160,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 167272} - m_LocalRotation: {x: -0.0796042, y: 0.047343, z: 0.06802644, w: 0.9933752} - m_LocalPosition: {x: -0.1175445, y: 0.000000007566996, z: -9.31323e-10} - m_LocalScale: {x: 1.0000002, y: 0.9999994, z: 0.99999934} + m_LocalRotation: {x: -.079604201, y: .0473430008, z: .0680264384, w: .993375182} + m_LocalPosition: {x: -.117544502, y: 7.56699592e-09, z: -9.31323019e-10} + m_LocalScale: {x: 1.00000024, y: .999999404, z: .999999344} m_Children: - {fileID: 450940} - {fileID: 465770} @@ -10232,9 +10176,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 123056} - m_LocalRotation: {x: -0.19193369, y: -0.611208, z: -0.18449357, w: 0.74535114} - m_LocalPosition: {x: -0.000000004365575, y: -0.000000036205165, z: -0.000000002095476} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1.0000001} + m_LocalRotation: {x: -.191933692, y: -.611208022, z: -.184493572, w: .745351136} + m_LocalPosition: {x: -4.36557501e-09, y: -3.62051651e-08, z: -2.09547601e-09} + m_LocalScale: {x: .99999994, y: .999999881, z: 1.00000012} m_Children: - {fileID: 439036} m_Father: {fileID: 458390} @@ -10245,9 +10189,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 197616} - m_LocalRotation: {x: -0.000997944, y: 0.00093399873, z: 0.008236319, w: 0.9999652} - m_LocalPosition: {x: -0.041616306, y: 0.000000044703484, z: 0.000000040512532} - m_LocalScale: {x: 1, y: 1.0000001, z: 0.99999994} + m_LocalRotation: {x: -.000997944036, y: .00093399873, z: .00823631883, w: .999965191} + m_LocalPosition: {x: -.0416163057, y: 4.47034836e-08, z: 4.0512532e-08} + m_LocalScale: {x: 1, y: 1.00000012, z: .99999994} m_Children: [] m_Father: {fileID: 479370} m_RootOrder: 1 @@ -10257,9 +10201,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 188172} - m_LocalRotation: {x: 0.000030391822, y: 0.99319005, z: -0.00025812536, w: 0.11650537} - m_LocalPosition: {x: 0.08128973, y: -0.00000003258824, z: 0.084692106} - m_LocalScale: {x: 1.0000001, y: 1, z: 1.0000001} + m_LocalRotation: {x: 3.03918223e-05, y: .99319005, z: -.000258125365, w: .11650537} + m_LocalPosition: {x: .081289731, y: -3.25882397e-08, z: .0846921057} + m_LocalScale: {x: 1.00000012, y: 1, z: 1.00000012} m_Children: [] m_Father: {fileID: 474724} m_RootOrder: 0 @@ -10269,10 +10213,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 113706} - m_LocalRotation: {x: 0.0000021029264, y: -0.0000000027939406, z: 0.0000000126892745, - w: 1} - m_LocalPosition: {x: -0.01724601, y: 0.000000037252903, z: -0.000000013038516} - m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_LocalRotation: {x: 2.10292637e-06, y: -2.79394063e-09, z: 1.26892745e-08, w: 1} + m_LocalPosition: {x: -.0172460098, y: 3.7252903e-08, z: -1.3038516e-08} + m_LocalScale: {x: 1.00000012, y: 1, z: 1} m_Children: [] m_Father: {fileID: 481516} m_RootOrder: 0 @@ -10282,8 +10225,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 111360} - m_LocalRotation: {x: 0.00000007548566, y: 0.9999999, z: -0.0004994432, w: 0.00000013312037} - m_LocalPosition: {x: -0.2840035, y: 0.000000053245458, z: 0.000000004692993} + m_LocalRotation: {x: 7.54856586e-08, y: .999999881, z: -.000499443209, w: 1.33120366e-07} + m_LocalPosition: {x: -.284003496, y: 5.32454578e-08, z: 4.69299311e-09} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 421856} @@ -10295,9 +10238,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 193496} - m_LocalRotation: {x: 0.000000003842055, y: 0.78717464, z: -0.0000002586282, w: 0.61673015} - m_LocalPosition: {x: -0.45368126, y: 0.000000033727254, z: -0.000000002351421} - m_LocalScale: {x: 1, y: 0.9999999, z: 1} + m_LocalRotation: {x: 3.84205512e-09, y: .787174642, z: -2.58628205e-07, w: .616730154} + m_LocalPosition: {x: -.45368126, y: 3.37272539e-08, z: -2.35142106e-09} + m_LocalScale: {x: 1, y: .999999881, z: 1} m_Children: [] m_Father: {fileID: 431602} m_RootOrder: 1 @@ -10307,9 +10250,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 171962} - m_LocalRotation: {x: 0.00000012665987, y: 0.000000007450582, z: 0.000000013038515, - w: 1} - m_LocalPosition: {x: -0.000000044703484, y: 0.000000022351742, z: 0.000000048428774} + m_LocalRotation: {x: 1.2665987e-07, y: 7.45058237e-09, z: 1.30385152e-08, w: 1} + m_LocalPosition: {x: -4.47034836e-08, y: 2.23517418e-08, z: 4.84287739e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 427186} @@ -10321,10 +10263,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 137968} - m_LocalRotation: {x: 0.0000000037252907, y: 0.000000007450581, z: 0.000000029802322, - w: 1} - m_LocalPosition: {x: -0, y: 0.00000010803342, z: -0.000000007450581} - m_LocalScale: {x: 1, y: 0.9999999, z: 1} + m_LocalRotation: {x: 3.72529074e-09, y: 7.4505806e-09, z: 2.98023224e-08, w: 1} + m_LocalPosition: {x: -0, y: 1.08033419e-07, z: -7.4505806e-09} + m_LocalScale: {x: 1, y: .999999881, z: 1} m_Children: [] m_Father: {fileID: 443796} m_RootOrder: 0 @@ -10334,9 +10275,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 166884} - m_LocalRotation: {x: 0.13655116, y: 0.8914283, z: -0.1884899, w: -0.3888199} - m_LocalPosition: {x: -0.037932597, y: 0.00000008940697, z: 0.000000067055225} - m_LocalScale: {x: 1, y: 1.0000002, z: 1} + m_LocalRotation: {x: .136551157, y: .891428292, z: -.188489899, w: -.388819903} + m_LocalPosition: {x: -.0379325971, y: 8.94069672e-08, z: 6.70552254e-08} + m_LocalScale: {x: 1, y: 1.00000024, z: 1} m_Children: [] m_Father: {fileID: 402414} m_RootOrder: 1 @@ -10346,9 +10287,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 156730} - m_LocalRotation: {x: 0.0000031082893, y: 2.6053378e-14, z: 0.000000008381902, w: 1} - m_LocalPosition: {x: 0.000000014901161, y: -0.000000016763806, z: -0.000000034458935} - m_LocalScale: {x: 1.0000001, y: 1, z: 0.99999994} + m_LocalRotation: {x: 3.10828932e-06, y: 2.60533782e-14, z: 8.38190228e-09, w: 1} + m_LocalPosition: {x: 1.49011612e-08, y: -1.67638063e-08, z: -3.44589353e-08} + m_LocalScale: {x: 1.00000012, y: 1, z: .99999994} m_Children: [] m_Father: {fileID: 456566} m_RootOrder: 0 @@ -10358,9 +10299,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 120034} - m_LocalRotation: {x: 0.00000011977102, y: 0.7153595, z: -0.00000006732551, w: 0.69875664} + m_LocalRotation: {x: 1.19771016e-07, y: .715359509, z: -6.73255087e-08, w: .698756635} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 0.9999998} + m_LocalScale: {x: .999999821, y: .99999994, z: .999999821} m_Children: - {fileID: 420858} - {fileID: 419050} @@ -10372,8 +10313,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 164698} - m_LocalRotation: {x: 0.00000006120702, y: 0.9932921, z: -0.000000118409645, w: -0.115632206} - m_LocalPosition: {x: -0.000000001407684, y: 5.19057e-10, z: -0.000000005640458} + m_LocalRotation: {x: 6.12070181e-08, y: .993292093, z: -1.18409645e-07, w: -.115632206} + m_LocalPosition: {x: -1.40768397e-09, y: 5.1905702e-10, z: -5.64045788e-09} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 416056} @@ -10384,9 +10325,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 185064} - m_LocalRotation: {x: -0.46825802, y: 0.18497396, z: 0.1995665, w: 0.8406499} - m_LocalPosition: {x: -0.095082544, y: 0.017653966, z: -0.054157898} - m_LocalScale: {x: 1.1587182, y: 0.9979602, z: 0.9998769} + m_LocalRotation: {x: -.468258023, y: .184973955, z: .199566498, w: .840649903} + m_LocalPosition: {x: -.0950825438, y: .0176539663, z: -.0541578978} + m_LocalScale: {x: 1.15871823, y: .99796021, z: .999876916} m_Children: [] m_Father: {fileID: 420340} m_RootOrder: 0 @@ -10396,9 +10337,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 143176} - m_LocalRotation: {x: 0.8545315, y: 0.2489059, z: -0.44598296, w: 0.094451174} - m_LocalPosition: {x: -0.13807042, y: -0.000000001280569, z: -0.000000001862645} - m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 1} + m_LocalRotation: {x: .854531527, y: .248905897, z: -.445982963, w: .0944511741} + m_LocalPosition: {x: -.138070419, y: -1.28056898e-09, z: -1.86264504e-09} + m_LocalScale: {x: 1.00000012, y: .99999994, z: 1} m_Children: - {fileID: 408624} m_Father: {fileID: 469756} @@ -10409,9 +10350,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 170138} - m_LocalRotation: {x: 0.0000035846606, y: 0.0000000083818925, z: -0.000000002793998, - w: 1} - m_LocalPosition: {x: -0.000000026077032, y: 0.000000024214387, z: -0.000000007450581} + m_LocalRotation: {x: 3.58466059e-06, y: 8.38189251e-09, z: -2.79399792e-09, w: 1} + m_LocalPosition: {x: -2.60770321e-08, y: 2.42143869e-08, z: -7.4505806e-09} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 454418} @@ -10422,9 +10362,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 172148} - m_LocalRotation: {x: 0.7507594, y: -0.14777441, z: 0.43297446, w: 0.47650406} - m_LocalPosition: {x: -0.19730231, y: -0.026959043, z: -0.2822706} - m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 1} + m_LocalRotation: {x: .750759423, y: -.147774413, z: .432974458, w: .476504058} + m_LocalPosition: {x: -.197302312, y: -.026959043, z: -.28227061} + m_LocalScale: {x: 1.00000024, y: 1.00000012, z: 1} m_Children: - {fileID: 415086} m_Father: {fileID: 435298} @@ -10435,9 +10375,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 114344} - m_LocalRotation: {x: 0.00000011977059, y: 0.7153595, z: -0.00000006732503, w: 0.6987566} - m_LocalPosition: {x: -0.020755868, y: 0.000000001567025, z: 0.34332958} - m_LocalScale: {x: 0.9999998, y: 0.9999998, z: 0.9999998} + m_LocalRotation: {x: 1.1977059e-07, y: .715359509, z: -6.73250327e-08, w: .698756576} + m_LocalPosition: {x: -.0207558684, y: 1.56702495e-09, z: .343329579} + m_LocalScale: {x: .999999821, y: .999999821, z: .999999821} m_Children: - {fileID: 490920} - {fileID: 468784} @@ -10457,9 +10397,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 158536} - m_LocalRotation: {x: 0.000000089176524, y: 0.9962557, z: 0.00000016087985, w: -0.086455986} - m_LocalPosition: {x: -0.022227686, y: 0.24243829, z: 0.110095225} - m_LocalScale: {x: 1, y: 0.9999997, z: 1} + m_LocalRotation: {x: 8.91765239e-08, y: .996255696, z: 1.6087985e-07, w: -.0864559859} + m_LocalPosition: {x: -.0222276859, y: .242438287, z: .110095225} + m_LocalScale: {x: 1, y: .999999702, z: 1} m_Children: - {fileID: 470478} - {fileID: 428152} @@ -10471,9 +10411,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 121170} - m_LocalRotation: {x: -0.0000023189932, y: 0.0000000074505286, z: 0.00000002235176, - w: 1} - m_LocalPosition: {x: -0.000000029802322, y: 0.000000059604645, z: -0.000000014901161} + m_LocalRotation: {x: -2.31899321e-06, y: 7.45052864e-09, z: 2.23517596e-08, w: 1} + m_LocalPosition: {x: -2.98023224e-08, y: 5.96046448e-08, z: -1.49011612e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 400302} @@ -10484,10 +10423,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 132610} - m_LocalRotation: {x: -0.00000031478706, y: -0.0000000013969836, z: -9.31323e-10, - w: 1} - m_LocalPosition: {x: -0.35786107, y: -0.0067963516, z: 0.0041228263} - m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_LocalRotation: {x: -3.14787059e-07, y: -1.39698364e-09, z: -9.31323019e-10, w: 1} + m_LocalPosition: {x: -.357861072, y: -.00679635163, z: .00412282627} + m_LocalScale: {x: 1, y: .99999994, z: 1} m_Children: [] m_Father: {fileID: 468046} m_RootOrder: 1 @@ -10497,9 +10435,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 128926} - m_LocalRotation: {x: -0.41290912, y: 0.59200174, z: 0.5082285, w: -0.46983382} - m_LocalPosition: {x: -0.34526408, y: 0.01830003, z: 0.080845065} - m_LocalScale: {x: 1.0000001, y: 1, z: 1.0000001} + m_LocalRotation: {x: -.41290912, y: .592001736, z: .508228481, w: -.469833821} + m_LocalPosition: {x: -.345264077, y: .0183000304, z: .0808450654} + m_LocalScale: {x: 1.00000012, y: 1, z: 1.00000012} m_Children: - {fileID: 405902} - {fileID: 483204} @@ -10514,9 +10452,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 184140} - m_LocalRotation: {x: -0.67527574, y: -0.34498522, z: -0.33648005, w: 0.55836284} - m_LocalPosition: {x: -0.000000015017577, y: 0.000000015832484, z: -0.00000010349322} - m_LocalScale: {x: 1.0254632, y: 0.99732345, z: 0.9973234} + m_LocalRotation: {x: -.675275743, y: -.344985217, z: -.336480051, w: .558362842} + m_LocalPosition: {x: -1.50175765e-08, y: 1.58324838e-08, z: -1.03493221e-07} + m_LocalScale: {x: 1.02546322, y: .997323453, z: .997323394} m_Children: [] m_Father: {fileID: 426704} m_RootOrder: 0 @@ -10526,9 +10464,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 102932} - m_LocalRotation: {x: 0.70710695, y: 0.0000023539235, z: 0.7071066, w: -0.0000023539246} - m_LocalPosition: {x: 0.00000000797445, y: 0.00000002188608, z: -0.000000004190952} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} + m_LocalRotation: {x: .707106948, y: 2.35392349e-06, z: .70710659, w: -2.35392463e-06} + m_LocalPosition: {x: 7.97445043e-09, y: 2.18860805e-08, z: -4.19095203e-09} + m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} m_Children: [] m_Father: {fileID: 414508} m_RootOrder: 0 @@ -10538,9 +10476,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 151014} - m_LocalRotation: {x: -0.07360064, y: -0.036371462, z: 0.0744805, w: 0.9938374} - m_LocalPosition: {x: -0.000000011292286, y: 0.000000019790605, z: 0.000000001862645} - m_LocalScale: {x: 1, y: 0.99999994, z: 0.9999998} + m_LocalRotation: {x: -.0736006424, y: -.036371462, z: .0744804963, w: .993837416} + m_LocalPosition: {x: -1.12922862e-08, y: 1.97906047e-08, z: 1.86264504e-09} + m_LocalScale: {x: 1, y: .99999994, z: .999999821} m_Children: - {fileID: 413674} m_Father: {fileID: 457018} @@ -10551,9 +10489,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 131846} - m_LocalRotation: {x: 0.00000011977104, y: 0.7153595, z: -0.00000006732547, w: 0.6987566} - m_LocalPosition: {x: -0.022733212, y: -0.09799998, z: 0.31992927} - m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 0.9999998} + m_LocalRotation: {x: 1.19771045e-07, y: .715359509, z: -6.73254732e-08, w: .698756576} + m_LocalPosition: {x: -.0227332115, y: -.0979999825, z: .319929272} + m_LocalScale: {x: .999999821, y: .99999994, z: .999999821} m_Children: - {fileID: 407560} - {fileID: 422148} @@ -10567,9 +10505,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 115364} - m_LocalRotation: {x: -0.017717794, y: 0.019094657, z: 0.020788265, w: 0.99944454} - m_LocalPosition: {x: -0.34368813, y: 0.000000024214387, z: -2.32831e-10} - m_LocalScale: {x: 1.0000145, y: 1.0000144, z: 1.0000144} + m_LocalRotation: {x: -.0177177936, y: .0190946572, z: .0207882654, w: .999444544} + m_LocalPosition: {x: -.34368813, y: 2.42143869e-08, z: -2.32831004e-10} + m_LocalScale: {x: 1.00001454, y: 1.00001442, z: 1.00001442} m_Children: [] m_Father: {fileID: 486980} m_RootOrder: 0 @@ -10579,9 +10517,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 107760} - m_LocalRotation: {x: -0.018803488, y: 0.30572316, z: -0.0131360665, w: 0.95184416} - m_LocalPosition: {x: -0.03449197, y: 0.000000029802322, z: 0.000000055879354} - m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1} + m_LocalRotation: {x: -.0188034885, y: .305723161, z: -.0131360665, w: .951844156} + m_LocalPosition: {x: -.0344919711, y: 2.98023224e-08, z: 5.58793545e-08} + m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1} m_Children: - {fileID: 436868} - {fileID: 459784} @@ -10593,10 +10531,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 182924} - m_LocalRotation: {x: -0.000000018626453, y: -6.9388946e-17, z: 0.0000000037252903, - w: 1} - m_LocalPosition: {x: -0.000000044703484, y: 0.00000009685755, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_LocalRotation: {x: -1.86264533e-08, y: -6.93889457e-17, z: 3.7252903e-09, w: 1} + m_LocalPosition: {x: -4.47034836e-08, y: 9.68575478e-08, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1.00000012} m_Children: [] m_Father: {fileID: 405062} m_RootOrder: 0 @@ -10606,9 +10543,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 141068} - m_LocalRotation: {x: 0.4129092, y: 0.5920017, z: -0.5082285, w: -0.46983382} - m_LocalPosition: {x: -0.34526408, y: -0.018299976, z: 0.080845065} - m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_LocalRotation: {x: .41290921, y: .592001677, z: -.508228481, w: -.469833821} + m_LocalPosition: {x: -.345264077, y: -.0182999764, z: .0808450654} + m_LocalScale: {x: 1, y: 1, z: 1.00000012} m_Children: [] m_Father: {fileID: 477750} m_RootOrder: 9 @@ -10618,8 +10555,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 186134} - m_LocalRotation: {x: 0.00000009343808, y: -0.048460346, z: -0.000000020223089, w: 0.99882513} - m_LocalPosition: {x: -0.19592416, y: 0.000000013493938, z: 0.000000006354995} + m_LocalRotation: {x: 9.34380822e-08, y: -.0484603457, z: -2.0223089e-08, w: .998825133} + m_LocalPosition: {x: -.195924163, y: 1.34939384e-08, z: 6.3549952e-09} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 423494} @@ -10630,9 +10567,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 164846} - m_LocalRotation: {x: 0.00000011977104, y: 0.7153595, z: -0.00000006732547, w: 0.6987566} - m_LocalPosition: {x: -0.022733197, y: 0.09799998, z: 0.31992927} - m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 0.9999998} + m_LocalRotation: {x: 1.19771045e-07, y: .715359509, z: -6.73254732e-08, w: .698756576} + m_LocalPosition: {x: -.0227331966, y: .0979999825, z: .319929272} + m_LocalScale: {x: .999999821, y: .99999994, z: .999999821} m_Children: - {fileID: 413470} - {fileID: 499488} @@ -10646,9 +10583,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 154216} - m_LocalRotation: {x: -0.0068861893, y: 0.104664005, z: -0.054565333, w: 0.9929857} - m_LocalPosition: {x: -0.05396188, y: 0, z: 0.000000070780516} - m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.99999976} + m_LocalRotation: {x: -.00688618934, y: .104664005, z: -.0545653328, w: .992985725} + m_LocalPosition: {x: -.0539618805, y: 0, z: 7.07805157e-08} + m_LocalScale: {x: .999999881, y: .999999881, z: .999999762} m_Children: - {fileID: 418492} m_Father: {fileID: 494576} @@ -10659,9 +10596,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 106240} - m_LocalRotation: {x: 0.00002951744, y: 0.99319005, z: -0.00025131303, w: 0.11650537} - m_LocalPosition: {x: 0.08128973, y: 0.000000014144003, z: 0.084692106} - m_LocalScale: {x: 1.0000001, y: 1, z: 1.0000001} + m_LocalRotation: {x: 2.95174395e-05, y: .99319005, z: -.000251313031, w: .11650537} + m_LocalPosition: {x: .081289731, y: 1.41440033e-08, z: .0846921057} + m_LocalScale: {x: 1.00000012, y: 1, z: 1.00000012} m_Children: [] m_Father: {fileID: 430614} m_RootOrder: 0 @@ -10671,9 +10608,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 196830} - m_LocalRotation: {x: -0.017717794, y: 0.019094657, z: 0.020788265, w: 0.99944454} - m_LocalPosition: {x: -0.34368813, y: 0.000000024214387, z: -2.32831e-10} - m_LocalScale: {x: 1.0000145, y: 1.0000144, z: 1.0000144} + m_LocalRotation: {x: -.0177177936, y: .0190946572, z: .0207882654, w: .999444544} + m_LocalPosition: {x: -.34368813, y: 2.42143869e-08, z: -2.32831004e-10} + m_LocalScale: {x: 1.00001454, y: 1.00001442, z: 1.00001442} m_Children: - {fileID: 414250} - {fileID: 416056} @@ -10694,9 +10631,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 193846} - m_LocalRotation: {x: -0.00000009872019, y: -0.00000000372529, z: -0.0000000037252907, - w: 1} - m_LocalPosition: {x: -0.000000014901161, y: 0.00000008195639, z: -0.00000008009374} + m_LocalRotation: {x: -9.87201929e-08, y: -3.72529008e-09, z: -3.72529074e-09, w: 1} + m_LocalPosition: {x: -1.49011612e-08, y: 8.19563866e-08, z: -8.00937414e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 437590} @@ -10708,9 +10644,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 147088} - m_LocalRotation: {x: 0.061952837, y: -0.0002126911, z: 0.0045715515, w: 0.9980686} - m_LocalPosition: {x: -0.051810987, y: 0.000000006984919, z: 0.00000006426126} - m_LocalScale: {x: 0.9999998, y: 0.99999976, z: 0.9999997} + m_LocalRotation: {x: .0619528368, y: -.000212691099, z: .00457155146, w: .998068571} + m_LocalPosition: {x: -.0518109873, y: 6.98491887e-09, z: 6.42612576e-08} + m_LocalScale: {x: .999999821, y: .999999762, z: .999999702} m_Children: - {fileID: 417960} m_Father: {fileID: 429696} @@ -10721,9 +10657,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 168950} - m_LocalRotation: {x: 0.056073245, y: -0.099418856, z: 0.6524154, w: 0.7492168} - m_LocalPosition: {x: -0.012914315, y: -0.35150105, z: 1.1099358} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} + m_LocalRotation: {x: .0560732447, y: -.0994188562, z: .652415395, w: .749216795} + m_LocalPosition: {x: -.0129143149, y: -.351501048, z: 1.10993576} + m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} m_Children: - {fileID: 485838} - {fileID: 486510} @@ -10738,9 +10674,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 157794} - m_LocalRotation: {x: -0.000000037020072, y: 0.0000000024447218, z: 5.8207666e-10, - w: 1} - m_LocalPosition: {x: -0.000000088242814, y: -0.000000011175871, z: -0.00000018393621} + m_LocalRotation: {x: -3.70200723e-08, y: 2.44472176e-09, z: 5.82076665e-10, w: 1} + m_LocalPosition: {x: -8.82428139e-08, y: -1.11758709e-08, z: -1.83936208e-07} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 481160} @@ -10751,10 +10686,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 179540} - m_LocalRotation: {x: 0.0000028321522, y: 0.0000000027939786, z: 0.000000003725283, - w: 1} - m_LocalPosition: {x: 0.000000014901161, y: 0.000000002793968, z: 0.000000018626451} - m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 1} + m_LocalRotation: {x: 2.83215218e-06, y: 2.7939786e-09, z: 3.72528297e-09, w: 1} + m_LocalPosition: {x: 1.49011612e-08, y: 2.79396795e-09, z: 1.86264515e-08} + m_LocalScale: {x: .99999994, y: .99999994, z: 1} m_Children: - {fileID: 437036} m_Father: {fileID: 482492} @@ -10765,9 +10699,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 160192} - m_LocalRotation: {x: 0.8818733, y: -0.20156446, z: -0.0834304, w: -0.41798413} - m_LocalPosition: {x: 0.021269098, y: 0.44630364, z: 0.88592297} - m_LocalScale: {x: 37.68171, y: 1, z: 1} + m_LocalRotation: {x: .88187331, y: -.201564461, z: -.083430402, w: -.417984128} + m_LocalPosition: {x: .0212690979, y: .446303636, z: .885922968} + m_LocalScale: {x: 37.6817093, y: 1, z: 1} m_Children: [] m_Father: {fileID: 416532} m_RootOrder: 31 @@ -10777,9 +10711,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 124316} - m_LocalRotation: {x: 0.061954282, y: -0.00021268448, z: 0.004571552, w: 0.9980685} - m_LocalPosition: {x: -0.051810987, y: 0.000000006984919, z: 0.00000006426126} - m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999998} + m_LocalRotation: {x: .0619542822, y: -.000212684477, z: .00457155192, w: .998068511} + m_LocalPosition: {x: -.0518109873, y: 6.98491887e-09, z: 6.42612576e-08} + m_LocalScale: {x: .999999881, y: .999999881, z: .999999821} m_Children: - {fileID: 486504} - {fileID: 470312} @@ -10792,9 +10726,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 178688} - m_LocalRotation: {x: 0.07960403, y: 0.047341082, z: -0.06802646, w: 0.9933753} - m_LocalPosition: {x: -0.11754451, y: -0.000000003376044, z: 0.00000000372529} - m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999976} + m_LocalRotation: {x: .0796040297, y: .0473410822, z: -.0680264607, w: .993375301} + m_LocalPosition: {x: -.117544509, y: -3.37604411e-09, z: 3.72529008e-09} + m_LocalScale: {x: .99999994, y: 1, z: .999999762} m_Children: [] m_Father: {fileID: 492472} m_RootOrder: 0 @@ -10804,10 +10738,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 171908} - m_LocalRotation: {x: 0.00000023283062, y: 0.0000000018626416, z: -0.000000015366822, - w: 1} - m_LocalPosition: {x: -0.11754454, y: 0.000000009778887, z: 9.31323e-10} - m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_LocalRotation: {x: 2.32830615e-07, y: 1.8626416e-09, z: -1.53668225e-08, w: 1} + m_LocalPosition: {x: -.117544539, y: 9.77888703e-09, z: 9.31323019e-10} + m_LocalScale: {x: 1, y: 1.00000012, z: 1} m_Children: - {fileID: 409544} m_Father: {fileID: 497362} @@ -10818,9 +10751,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 114580} - m_LocalRotation: {x: -0.00004985928, y: 0.014366731, z: 0.024521392, w: 0.99959606} - m_LocalPosition: {x: 0.003601409, y: -0.013363771, z: -0.05822142} - m_LocalScale: {x: 1.0523236, y: 0.99985296, z: 0.99994946} + m_LocalRotation: {x: -4.98592817e-05, y: .014366731, z: .0245213918, w: .999596059} + m_LocalPosition: {x: .00360140903, y: -.0133637711, z: -.0582214184} + m_LocalScale: {x: 1.05232358, y: .999852955, z: .999949455} m_Children: - {fileID: 409520} m_Father: {fileID: 489554} @@ -10831,9 +10764,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 199558} - m_LocalRotation: {x: 0.8545314, y: -0.24890612, z: -0.44598287, w: -0.09445128} - m_LocalPosition: {x: -0.13807043, y: 0.000000015366822, z: -0.00000000372529} - m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1} + m_LocalRotation: {x: .854531407, y: -.248906121, z: -.445982873, w: -.0944512784} + m_LocalPosition: {x: -.138070434, y: 1.53668225e-08, z: -3.72529008e-09} + m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1} m_Children: - {fileID: 425698} m_Father: {fileID: 401474} @@ -10844,9 +10777,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 197280} - m_LocalRotation: {x: 0.60600674, y: -0.13031125, z: -0.30583838, w: 0.7226602} - m_LocalPosition: {x: 0.00651649, y: 0.028590942, z: 0.017791618} - m_LocalScale: {x: 1, y: 0.9999998, z: 0.99999994} + m_LocalRotation: {x: .606006742, y: -.130311251, z: -.305838376, w: .722660184} + m_LocalPosition: {x: .00651649013, y: .0285909418, z: .0177916177} + m_LocalScale: {x: 1, y: .999999821, z: .99999994} m_Children: - {fileID: 424834} m_Father: {fileID: 402816} @@ -10857,9 +10790,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 164456} - m_LocalRotation: {x: -0.72617835, y: 0.032337677, z: 0.022569979, w: 0.68637455} - m_LocalPosition: {x: 0.000000003259629, y: 0.000000034924597, z: 0.000000011175871} - m_LocalScale: {x: 0.99999964, y: 0.9999999, z: 0.99999994} + m_LocalRotation: {x: -.726178348, y: .0323376767, z: .0225699786, w: .686374545} + m_LocalPosition: {x: 3.25962901e-09, y: 3.49245965e-08, z: 1.11758709e-08} + m_LocalScale: {x: .999999642, y: .999999881, z: .99999994} m_Children: - {fileID: 478636} m_Father: {fileID: 458896} @@ -10870,9 +10803,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 189756} - m_LocalRotation: {x: 0.000000041909516, y: -9.31323e-10, z: -0.00000001071021, w: 1} - m_LocalPosition: {x: 0.000000012456439, y: -0.000000008149073, z: 0.000000004889444} - m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_LocalRotation: {x: 4.19095159e-08, y: -9.31323019e-10, z: -1.07102096e-08, w: 1} + m_LocalPosition: {x: 1.24564394e-08, y: -8.14907342e-09, z: 4.88944396e-09} + m_LocalScale: {x: 1, y: 1, z: .99999994} m_Children: - {fileID: 457018} m_Father: {fileID: 415260} @@ -10883,9 +10816,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 182528} - m_LocalRotation: {x: -0.0000027231872, y: -0.000000022351712, z: -0.000000011175932, - w: 1} - m_LocalPosition: {x: -0.000000059604645, y: 0.000000037252903, z: 0.000000059604645} + m_LocalRotation: {x: -2.72318721e-06, y: -2.23517116e-08, z: -1.11759322e-08, w: 1} + m_LocalPosition: {x: -5.96046448e-08, y: 3.7252903e-08, z: 5.96046448e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 400302} @@ -10897,9 +10829,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 149202} - m_LocalRotation: {x: -0.12750106, y: -0.020223582, z: 0.010954226, w: 0.9915717} - m_LocalPosition: {x: -0.05326096, y: -0.000000028871, z: -0.000000015832484} - m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 1} + m_LocalRotation: {x: -.127501056, y: -.0202235822, z: .0109542264, w: .991571724} + m_LocalPosition: {x: -.0532609597, y: -2.88709998e-08, z: -1.58324838e-08} + m_LocalScale: {x: .999999881, y: .99999994, z: 1} m_Children: - {fileID: 470518} - {fileID: 464134} @@ -10912,9 +10844,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 129356} - m_LocalRotation: {x: -3.106686e-15, y: 9.005899e-15, z: -3.551745e-15, w: 1} - m_LocalPosition: {x: 0.00000002717279, y: -7.469e-12, z: -0.00000012127265} - m_LocalScale: {x: 1.0000001, y: 1, z: 1.0000001} + m_LocalRotation: {x: -3.10668603e-15, y: 9.00589909e-15, z: -3.5517451e-15, w: 1} + m_LocalPosition: {x: 2.71727902e-08, y: -7.46900024e-12, z: -1.21272649e-07} + m_LocalScale: {x: 1.00000012, y: 1, z: 1.00000012} m_Children: - {fileID: 488858} m_Father: {fileID: 415154} @@ -10925,9 +10857,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 148308} - m_LocalRotation: {x: -0.27464378, y: -0.66376984, z: 0.19919579, w: 0.6665594} - m_LocalPosition: {x: -0.022733215, y: -0.09799998, z: 0.31992927} - m_LocalScale: {x: 0.9999997, y: 0.9999999, z: 0.99999964} + m_LocalRotation: {x: -.274643779, y: -.663769841, z: .199195787, w: .666559398} + m_LocalPosition: {x: -.0227332152, y: -.0979999825, z: .319929272} + m_LocalScale: {x: .999999702, y: .999999881, z: .999999642} m_Children: - {fileID: 497362} m_Father: {fileID: 416532} @@ -10938,9 +10870,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 165338} - m_LocalRotation: {x: -0.07666996, y: 0.0054906253, z: 0.07131612, w: 0.9944876} - m_LocalPosition: {x: -0.1175445, y: 0.000000007566996, z: -9.31323e-10} - m_LocalScale: {x: 1.0000002, y: 0.9999999, z: 0.99999964} + m_LocalRotation: {x: -.0766699612, y: .00549062528, z: .071316123, w: .994487584} + m_LocalPosition: {x: -.117544502, y: 7.56699592e-09, z: -9.31323019e-10} + m_LocalScale: {x: 1.00000024, y: .999999881, z: .999999642} m_Children: [] m_Father: {fileID: 497338} m_RootOrder: 1 @@ -10950,9 +10882,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 179962} - m_LocalRotation: {x: 0.11825392, y: 0.302012, z: 0.026410887, w: 0.94557244} - m_LocalPosition: {x: -0.037932567, y: -0.000000033527613, z: 0.000000018626451} - m_LocalScale: {x: 0.99999976, y: 0.9999998, z: 1} + m_LocalRotation: {x: .118253917, y: .302011997, z: .026410887, w: .945572436} + m_LocalPosition: {x: -.0379325673, y: -3.35276127e-08, z: 1.86264515e-08} + m_LocalScale: {x: .999999762, y: .999999821, z: 1} m_Children: - {fileID: 478810} m_Father: {fileID: 424834} @@ -10963,9 +10895,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 167602} - m_LocalRotation: {x: -0.12750311, y: -0.020223761, z: 0.01095414, w: 0.9915715} - m_LocalPosition: {x: -0.05326096, y: -0.000000028871, z: -0.000000015832484} - m_LocalScale: {x: 0.87391835, y: 0.99999994, z: 1.0000002} + m_LocalRotation: {x: -.127503112, y: -.020223761, z: .0109541398, w: .991571486} + m_LocalPosition: {x: -.0532609597, y: -2.88709998e-08, z: -1.58324838e-08} + m_LocalScale: {x: .873918355, y: .99999994, z: 1.00000024} m_Children: [] m_Father: {fileID: 427234} m_RootOrder: 3 @@ -10975,9 +10907,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 102916} - m_LocalRotation: {x: 0.0000002396999, y: 0.7241829, z: -0.00000019128241, w: 0.68960804} - m_LocalPosition: {x: -0.000000010252426, y: -0.000000002028196, z: 0.000000028998043} - m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_LocalRotation: {x: 2.39699887e-07, y: .724182904, z: -1.9128241e-07, w: .689608037} + m_LocalPosition: {x: -1.02524256e-08, y: -2.02819606e-09, z: 2.89980431e-08} + m_LocalScale: {x: 1, y: .99999994, z: 1} m_Children: - {fileID: 469692} - {fileID: 431054} @@ -10989,9 +10921,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 133294} - m_LocalRotation: {x: 0.12750311, y: -0.020223595, z: -0.010954155, w: 0.9915715} - m_LocalPosition: {x: -0.053260975, y: 0.000000016763806, z: 0.000000020023435} - m_LocalScale: {x: 0.9999998, y: 0.9999997, z: 0.9999998} + m_LocalRotation: {x: .127503112, y: -.0202235952, z: -.0109541547, w: .991571486} + m_LocalPosition: {x: -.0532609746, y: 1.67638063e-08, z: 2.00234354e-08} + m_LocalScale: {x: .999999821, y: .999999702, z: .999999821} m_Children: - {fileID: 468536} m_Father: {fileID: 402816} @@ -11002,9 +10934,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146352} - m_LocalRotation: {x: -0.0000014230609, y: 9.313283e-10, z: -0.00000000395812, w: 1} - m_LocalPosition: {x: -0.000000031664968, y: 0.000000001862645, z: -0.000000026542693} - m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_LocalRotation: {x: -1.42306089e-06, y: 9.31328348e-10, z: -3.95812005e-09, w: 1} + m_LocalPosition: {x: -3.16649675e-08, y: 1.86264504e-09, z: -2.65426934e-08} + m_LocalScale: {x: .99999994, y: 1, z: 1} m_Children: - {fileID: 491788} m_Father: {fileID: 401660} @@ -11015,9 +10947,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 174828} - m_LocalRotation: {x: 0.7226618, y: -0.0245753, z: 0.03736615, w: 0.6897534} - m_LocalPosition: {x: 0.000000032421667, y: -0.000000026309863, z: 0.000000014901161} - m_LocalScale: {x: 1.0000002, y: 1.0000002, z: 1} + m_LocalRotation: {x: .722661793, y: -.0245753005, z: .0373661518, w: .689753413} + m_LocalPosition: {x: 3.24216671e-08, y: -2.63098627e-08, z: 1.49011612e-08} + m_LocalScale: {x: 1.00000024, y: 1.00000024, z: 1} m_Children: - {fileID: 463874} m_Father: {fileID: 467362} @@ -11028,9 +10960,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 165648} - m_LocalRotation: {x: 0.19193362, y: -0.6112081, z: 0.18449359, w: 0.74535114} - m_LocalPosition: {x: -0.000000010768417, y: -0.000000028987415, z: 4.65661e-10} - m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_LocalRotation: {x: .191933617, y: -.611208081, z: .184493586, w: .745351136} + m_LocalPosition: {x: -1.07684173e-08, y: -2.89874151e-08, z: 4.6566101e-10} + m_LocalScale: {x: 1, y: 1.00000012, z: 1} m_Children: - {fileID: 426402} m_Father: {fileID: 413674} @@ -11041,9 +10973,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 185572} - m_LocalRotation: {x: 0.0000003138557, y: 0.000000004190953, z: 0.0000000051222733, - w: 1} - m_LocalPosition: {x: -0.35786107, y: 0.0067963963, z: 0.004122759} + m_LocalRotation: {x: 3.13855708e-07, y: 4.19095292e-09, z: 5.12227327e-09, w: 1} + m_LocalPosition: {x: -.357861072, y: .00679639634, z: .00412275922} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 475314} @@ -11054,9 +10985,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 167174} - m_LocalRotation: {x: 0.6859718, y: -0.3206058, z: 0.31752297, w: 0.57081854} - m_LocalPosition: {x: -0.000000013271347, y: -0.000000023283064, z: 0.000000023283064} - m_LocalScale: {x: 1.0714709, y: 0.9746665, z: 0.9746667} + m_LocalRotation: {x: .685971797, y: -.320605814, z: .317522973, w: .570818543} + m_LocalPosition: {x: -1.32713467e-08, y: -2.32830644e-08, z: 2.32830644e-08} + m_LocalScale: {x: 1.07147086, y: .974666476, z: .974666715} m_Children: [] m_Father: {fileID: 435298} m_RootOrder: 0 @@ -11066,9 +10997,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 187506} - m_LocalRotation: {x: -0.073600836, y: -0.0363715, z: 0.07448038, w: 0.99383736} - m_LocalPosition: {x: -0.058772232, y: -0.000000009429641, z: 0} - m_LocalScale: {x: 0.99999994, y: 0.9999998, z: 1.0000001} + m_LocalRotation: {x: -.0736008361, y: -.0363714993, z: .0744803771, w: .993837357} + m_LocalPosition: {x: -.0587722324, y: -9.42964107e-09, z: 0} + m_LocalScale: {x: .99999994, y: .999999821, z: 1.00000012} m_Children: [] m_Father: {fileID: 405524} m_RootOrder: 0 @@ -11078,9 +11009,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 159786} - m_LocalRotation: {x: 0.77193177, y: -0.1516703, z: 0.46109775, w: 0.41049525} - m_LocalPosition: {x: -0.07453382, y: 0.009726513, z: -0.10079452} - m_LocalScale: {x: 0.9999999, y: 0.9999999, z: 0.9999999} + m_LocalRotation: {x: .771931767, y: -.151670307, z: .461097747, w: .410495251} + m_LocalPosition: {x: -.0745338202, y: .00972651318, z: -.100794517} + m_LocalScale: {x: .999999881, y: .999999881, z: .999999881} m_Children: - {fileID: 400782} m_Father: {fileID: 435298} @@ -11091,9 +11022,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 110174} - m_LocalRotation: {x: 0.5353923, y: -0.47953618, z: 0.52835995, w: -0.45192465} - m_LocalPosition: {x: -0.012914242, y: 0.3805294, z: 1.1099358} - m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.99999976} + m_LocalRotation: {x: .535392284, y: -.479536176, z: .52835995, w: -.451924652} + m_LocalPosition: {x: -.0129142422, y: .380529404, z: 1.10993576} + m_LocalScale: {x: .99999994, y: .99999994, z: .999999762} m_Children: - {fileID: 458592} m_Father: {fileID: 416532} @@ -11104,9 +11035,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 191226} - m_LocalRotation: {x: 0.036794983, y: -0.044579078, z: 0.12172266, w: 0.99087965} - m_LocalPosition: {x: -0.07572006, y: -0.03274754, z: -0.004050825} - m_LocalScale: {x: 0.9999998, y: 0.99999964, z: 0.9999995} + m_LocalRotation: {x: .0367949829, y: -.0445790775, z: .121722661, w: .990879655} + m_LocalPosition: {x: -.0757200569, y: -.0327475406, z: -.00405082479} + m_LocalScale: {x: .999999821, y: .999999642, z: .999999523} m_Children: - {fileID: 427408} - {fileID: 442856} @@ -11121,9 +11052,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 170006} - m_LocalRotation: {x: -0.000000038160643, y: -0.7958691, z: -0.00000038067134, w: 0.6054688} - m_LocalPosition: {x: -0.1959242, y: 0.00000004696067, z: -0.000000001218751} - m_LocalScale: {x: 0.9999999, y: 1.0000001, z: 1} + m_LocalRotation: {x: -3.81606426e-08, y: -.795869112, z: -3.80671338e-07, w: .60546881} + m_LocalPosition: {x: -.195924193, y: 4.69606682e-08, z: -1.21875099e-09} + m_LocalScale: {x: .999999881, y: 1.00000012, z: 1} m_Children: [] m_Father: {fileID: 486042} m_RootOrder: 1 @@ -11133,9 +11064,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 185430} - m_LocalRotation: {x: -0.25918922, y: -0.3723193, z: 0.17348947, w: 0.8741286} - m_LocalPosition: {x: -0.45368126, y: 0.000000033727254, z: -0.000000002351421} - m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: -.259189218, y: -.372319311, z: .173489466, w: .87412858} + m_LocalPosition: {x: -.45368126, y: 3.37272539e-08, z: -2.35142106e-09} + m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1.00000012} m_Children: - {fileID: 453642} m_Father: {fileID: 417182} @@ -11146,9 +11077,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 186620} - m_LocalRotation: {x: 0.3300493, y: 0.9414889, z: 0.04378374, w: 0.052431382} - m_LocalPosition: {x: 0.000000005348681, y: -0.000000003936432, z: -0.000000002508363} - m_LocalScale: {x: 0.9999998, y: 1.0000005, z: 1.0000002} + m_LocalRotation: {x: .330049306, y: .941488922, z: .0437837392, w: .0524313822} + m_LocalPosition: {x: 5.34868105e-09, y: -3.93643207e-09, z: -2.50836307e-09} + m_LocalScale: {x: .999999821, y: 1.00000048, z: 1.00000024} m_Children: [] m_Father: {fileID: 447564} m_RootOrder: 4 @@ -11158,10 +11089,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 100626} - m_LocalRotation: {x: -0.00000012665987, y: -1.6514565e-15, z: 0.000000013038514, - w: 1} - m_LocalPosition: {x: -0.000000029802322, y: -0.000000014901161, z: 0.00000000372529} - m_LocalScale: {x: 1.0000001, y: 1, z: 1} + m_LocalRotation: {x: -1.2665987e-07, y: -1.65145654e-15, z: 1.30385143e-08, w: 1} + m_LocalPosition: {x: -2.98023224e-08, y: -1.49011612e-08, z: 3.72529008e-09} + m_LocalScale: {x: 1.00000012, y: 1, z: 1} m_Children: - {fileID: 431342} m_Father: {fileID: 491788} @@ -11172,9 +11102,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 109088} - m_LocalRotation: {x: 0.70710695, y: -0.0000016006679, z: 0.7071066, w: 0.0000016006688} - m_LocalPosition: {x: 5.82077e-10, y: -0.000000008149073, z: -0.000000001396984} - m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_LocalRotation: {x: .707106948, y: -1.60066793e-06, z: .70710659, w: 1.60066884e-06} + m_LocalPosition: {x: 5.82076998e-10, y: -8.14907342e-09, z: -1.39698397e-09} + m_LocalScale: {x: 1, y: 1, z: 1.00000012} m_Children: [] m_Father: {fileID: 493594} m_RootOrder: 0 @@ -11184,10 +11114,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 117584} - m_LocalRotation: {x: -0.0000000074505815, y: 4.656613e-10, z: -0.0000000023283062, - w: 1} - m_LocalPosition: {x: 0.000000029802322, y: -0.00000000372529, z: 0.000000001164153} - m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: -7.45058149e-09, y: 4.65661287e-10, z: -2.32830621e-09, w: 1} + m_LocalPosition: {x: 2.98023224e-08, y: -3.72529008e-09, z: 1.164153e-09} + m_LocalScale: {x: 1, y: .99999994, z: .99999994} m_Children: [] m_Father: {fileID: 497744} m_RootOrder: 0 @@ -11197,9 +11126,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 137902} - m_LocalRotation: {x: -0.74116975, y: 0.08453508, z: -0.020896304, w: 0.66564596} - m_LocalPosition: {x: -0.000000015017577, y: 0.000000015832484, z: -0.00000010349322} - m_LocalScale: {x: 0.9999999, y: 0.99999994, z: 0.9999998} + m_LocalRotation: {x: -.741169751, y: .0845350772, z: -.0208963044, w: .665645957} + m_LocalPosition: {x: -1.50175765e-08, y: 1.58324838e-08, z: -1.03493221e-07} + m_LocalScale: {x: .999999881, y: .99999994, z: .999999821} m_Children: [] m_Father: {fileID: 447482} m_RootOrder: 0 @@ -11209,9 +11138,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 136184} - m_LocalRotation: {x: 0.000000003842055, y: 0.78717464, z: -0.0000002586282, w: 0.61673015} - m_LocalPosition: {x: -0.45368126, y: 0.000000033727254, z: -0.000000002351421} - m_LocalScale: {x: 1, y: 0.9999999, z: 1} + m_LocalRotation: {x: 3.84205512e-09, y: .787174642, z: -2.58628205e-07, w: .616730154} + m_LocalPosition: {x: -.45368126, y: 3.37272539e-08, z: -2.35142106e-09} + m_LocalScale: {x: 1, y: .999999881, z: 1} m_Children: [] m_Father: {fileID: 431602} m_RootOrder: 0 @@ -11221,9 +11150,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 174920} - m_LocalRotation: {x: 0.7559538, y: 0.18020374, z: 0.43524975, w: -0.45455265} - m_LocalPosition: {x: -0.108921945, y: 0.032928385, z: -0.20670815} - m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 0.99999976} + m_LocalRotation: {x: .755953789, y: .180203736, z: .435249746, w: -.45455265} + m_LocalPosition: {x: -.108921945, y: .0329283848, z: -.206708148} + m_LocalScale: {x: .99999994, y: 1.00000012, z: .999999762} m_Children: - {fileID: 447748} m_Father: {fileID: 426704} @@ -11234,9 +11163,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 180004} - m_LocalRotation: {x: -0.05607355, y: 0.09941861, z: -0.6524155, w: 0.7492168} - m_LocalPosition: {x: -0.26888773, y: 0.38319683, z: 0.009949278} - m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 0.9999999} + m_LocalRotation: {x: -.0560735501, y: .0994186103, z: -.652415514, w: .749216795} + m_LocalPosition: {x: -.268887728, y: .383196831, z: .00994927809} + m_LocalScale: {x: .99999994, y: 1.00000012, z: .999999881} m_Children: [] m_Father: {fileID: 478276} m_RootOrder: 0 @@ -11246,9 +11175,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 113460} - m_LocalRotation: {x: 0.17877476, y: -0.6048852, z: 0.19780774, w: 0.75035036} - m_LocalPosition: {x: -0.13807042, y: -0.000000001280569, z: -0.000000001862645} - m_LocalScale: {x: 1.0000008, y: 1.0000008, z: 0.9999998} + m_LocalRotation: {x: .178774759, y: -.604885221, z: .197807744, w: .750350356} + m_LocalPosition: {x: -.138070419, y: -1.28056898e-09, z: -1.86264504e-09} + m_LocalScale: {x: 1.00000083, y: 1.00000083, z: .999999821} m_Children: - {fileID: 414260} - {fileID: 484850} @@ -11261,9 +11190,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 141310} - m_LocalRotation: {x: -0.6060068, y: -0.13031115, z: 0.30583835, w: 0.7226601} - m_LocalPosition: {x: 0.0065164715, y: -0.028591014, z: 0.017791549} - m_LocalScale: {x: 1, y: 0.9999999, z: 0.9999999} + m_LocalRotation: {x: -.606006801, y: -.130311146, z: .305838346, w: .722660124} + m_LocalPosition: {x: .00651647151, y: -.0285910144, z: .0177915487} + m_LocalScale: {x: 1, y: .999999881, z: .999999881} m_Children: [] m_Father: {fileID: 427234} m_RootOrder: 2 @@ -11273,9 +11202,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 162546} - m_LocalRotation: {x: 0.0000024591575, y: -4.656247e-10, z: 0.000000014901165, w: 1} - m_LocalPosition: {x: 0.000000014901161, y: 0.000000022351742, z: -0.000000020954758} - m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: 2.45915749e-06, y: -4.65624705e-10, z: 1.49011647e-08, w: 1} + m_LocalPosition: {x: 1.49011612e-08, y: 2.23517418e-08, z: -2.09547579e-08} + m_LocalScale: {x: .99999994, y: .99999994, z: .99999994} m_Children: - {fileID: 492470} m_Father: {fileID: 435726} @@ -11286,10 +11215,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 163186} - m_LocalRotation: {x: 0.0000014430841, y: 0.0000000018626753, z: 0.000000020954754, - w: 1} - m_LocalPosition: {x: -0.020808138, y: 0.000000037252903, z: 0.00000010756776} - m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: 1.4430841e-06, y: 1.86267535e-09, z: 2.09547544e-08, w: 1} + m_LocalPosition: {x: -.020808138, y: 3.7252903e-08, z: 1.07567757e-07} + m_LocalScale: {x: 1, y: 1.00000012, z: 1.00000012} m_Children: [] m_Father: {fileID: 479370} m_RootOrder: 0 @@ -11299,9 +11227,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 112146} - m_LocalRotation: {x: 0.7507594, y: -0.14777459, z: 0.4329748, w: 0.4765037} - m_LocalPosition: {x: -0.13063589, y: -0.035674557, z: -0.2066358} - m_LocalScale: {x: 1.0526379, y: 0.9746762, z: 0.9746767} + m_LocalRotation: {x: .750759423, y: -.147774592, z: .432974786, w: .4765037} + m_LocalPosition: {x: -.130635887, y: -.0356745571, z: -.206635803} + m_LocalScale: {x: 1.05263793, y: .974676192, z: .974676728} m_Children: [] m_Father: {fileID: 478276} m_RootOrder: 1 @@ -11311,9 +11239,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 152462} - m_LocalRotation: {x: -0.000001446344, y: 8.9239605e-15, z: -0.000000006170013, w: 1} - m_LocalPosition: {x: -0.014360527, y: -0.00000009685755, z: 0.000000040978193} - m_LocalScale: {x: 0.99999994, y: 1, z: 1} + m_LocalRotation: {x: -1.44634396e-06, y: 8.92396051e-15, z: -6.17001295e-09, w: 1} + m_LocalPosition: {x: -.0143605266, y: -9.68575478e-08, z: 4.09781933e-08} + m_LocalScale: {x: .99999994, y: 1, z: 1} m_Children: [] m_Father: {fileID: 438686} m_RootOrder: 0 @@ -11323,9 +11251,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 121706} - m_LocalRotation: {x: 0.07186256, y: 0.080048695, z: 0.011153352, w: 0.9941346} - m_LocalPosition: {x: -0.05923578, y: 0.00000008940697, z: -0.00000006938353} - m_LocalScale: {x: 1.0000001, y: 0.9999999, z: 1.0000002} + m_LocalRotation: {x: .0718625635, y: .0800486952, z: .0111533524, w: .994134605} + m_LocalPosition: {x: -.0592357814, y: 8.94069672e-08, z: -6.93835318e-08} + m_LocalScale: {x: 1.00000012, y: .999999881, z: 1.00000024} m_Children: [] m_Father: {fileID: 448938} m_RootOrder: 0 @@ -11335,9 +11263,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 134432} - m_LocalRotation: {x: 0.018315377, y: -0.048182797, z: -0.020263644, w: 0.998465} - m_LocalPosition: {x: -0.1514531, y: 0.000000011434395, z: -0.000000001862645} - m_LocalScale: {x: 1.0000147, y: 1.0000148, z: 1.0000145} + m_LocalRotation: {x: .0183153767, y: -.0481827967, z: -.0202636439, w: .998465002} + m_LocalPosition: {x: -.151453093, y: 1.14343948e-08, z: -1.86264504e-09} + m_LocalScale: {x: 1.00001466, y: 1.00001478, z: 1.00001454} m_Children: - {fileID: 476366} - {fileID: 477750} @@ -11349,9 +11277,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 128628} - m_LocalRotation: {x: 0.00000005244948, y: 0.69471395, z: 1.2787936e-14, w: 0.71928614} + m_LocalRotation: {x: 5.24494794e-08, y: .69471395, z: 1.27879359e-14, w: .719286144} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1.000029, y: 1.000029, z: 1.000029} + m_LocalScale: {x: 1.00002897, y: 1.00002897, z: 1.00002897} m_Children: - {fileID: 487724} m_Father: {fileID: 407636} @@ -11362,9 +11290,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146728} - m_LocalRotation: {x: 0.758457, y: 0.16397148, z: 0.49224603, w: -0.3943985} - m_LocalPosition: {x: -0.00000005844049, y: 0.000000013969839, z: -0.000000223401} - m_LocalScale: {x: 1.0053741, y: 1.0053737, z: 1.0053736} + m_LocalRotation: {x: .758457005, y: .163971484, z: .492246032, w: -.39439851} + m_LocalPosition: {x: -5.84404916e-08, y: 1.39698386e-08, z: -2.23401003e-07} + m_LocalScale: {x: 1.00537407, y: 1.00537372, z: 1.0053736} m_Children: - {fileID: 411958} m_Father: {fileID: 405990} @@ -11375,8 +11303,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 151814} - m_LocalRotation: {x: -0.000000052449554, y: -0.694714, z: -9.233916e-14, w: 0.7192861} - m_LocalPosition: {x: -0.00000003137393, y: 1e-15, z: 0.000000005606225} + m_LocalRotation: {x: -5.2449554e-08, y: -.69471401, z: -9.23391612e-14, w: .719286084} + m_LocalPosition: {x: -3.13739292e-08, y: 1e-15, z: 5.60622482e-09} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 486982} @@ -11387,9 +11315,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 124184} - m_LocalRotation: {x: 0.006884493, y: 0.10466407, z: 0.05456557, w: 0.9929857} - m_LocalPosition: {x: -0.053961888, y: 0.000000113621354, z: 0.000000008381903} - m_LocalScale: {x: 0.99999994, y: 0.99999994, z: 0.9999998} + m_LocalRotation: {x: .00688449293, y: .104664072, z: .0545655712, w: .992985725} + m_LocalPosition: {x: -.053961888, y: 1.13621354e-07, z: 8.38190317e-09} + m_LocalScale: {x: .99999994, y: .99999994, z: .999999821} m_Children: - {fileID: 491260} - {fileID: 425880} @@ -11402,9 +11330,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 152402} - m_LocalRotation: {x: 0.026487032, y: -0.062017206, z: -0.04178291, w: 0.9968483} - m_LocalPosition: {x: -0.076508805, y: 0.01758048, z: -0.005317183} - m_LocalScale: {x: 1.0000002, y: 1.0000001, z: 1} + m_LocalRotation: {x: .026487032, y: -.0620172061, z: -.0417829081, w: .996848285} + m_LocalPosition: {x: -.0765088052, y: .0175804794, z: -.00531718321} + m_LocalScale: {x: 1.00000024, y: 1.00000012, z: 1} m_Children: - {fileID: 424218} - {fileID: 413244} @@ -11419,9 +11347,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 121264} - m_LocalRotation: {x: 0.07185848, y: 0.08021859, z: 0.011156861, w: 0.99412113} - m_LocalPosition: {x: -0.05923578, y: 0.00000008940697, z: -0.00000006938353} - m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000002} + m_LocalRotation: {x: .0718584806, y: .0802185908, z: .0111568607, w: .994121134} + m_LocalPosition: {x: -.0592357814, y: 8.94069672e-08, z: -6.93835318e-08} + m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1.00000024} m_Children: - {fileID: 408570} m_Father: {fileID: 448938} @@ -11432,9 +11360,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 137190} - m_LocalRotation: {x: 0.00000006120701, y: 0.99329215, z: -0.000000118409716, w: 0.11563208} - m_LocalPosition: {x: 0.000000045799244, y: -7.497e-12, z: -0.00000012453228} - m_LocalScale: {x: 1, y: 0.99999976, z: 1} + m_LocalRotation: {x: 6.1207011e-08, y: .993292153, z: -1.18409716e-07, w: .11563208} + m_LocalPosition: {x: 4.57992435e-08, y: -7.49700042e-12, z: -1.24532278e-07} + m_LocalScale: {x: 1, y: .999999762, z: 1} m_Children: [] m_Father: {fileID: 481704} m_RootOrder: 0 @@ -11444,9 +11372,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 187750} - m_LocalRotation: {x: -0.23176733, y: 0.00000004149801, z: 0.000000034779262, w: 0.9727712} - m_LocalPosition: {x: -0.06903521, y: 0.000000010477379, z: -0.000000007450581} - m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1} + m_LocalRotation: {x: -.231767327, y: 4.14980086e-08, z: 3.47792621e-08, w: .972771227} + m_LocalPosition: {x: -.0690352097, y: 1.0477379e-08, z: -7.4505806e-09} + m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1} m_Children: [] m_Father: {fileID: 401474} m_RootOrder: 0 @@ -11456,9 +11384,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 102318} - m_LocalRotation: {x: 0.038730368, y: 0.25753754, z: -0.012408921, w: 0.965412} - m_LocalPosition: {x: -0.023271814, y: 0.000000004889444, z: 0.000000029802322} - m_LocalScale: {x: 0.9999998, y: 1, z: 0.99999994} + m_LocalRotation: {x: .038730368, y: .257537544, z: -.0124089206, w: .965412021} + m_LocalPosition: {x: -.023271814, y: 4.88944396e-09, z: 2.98023224e-08} + m_LocalScale: {x: .999999821, y: 1, z: .99999994} m_Children: - {fileID: 492696} m_Father: {fileID: 440554} @@ -11469,9 +11397,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 160174} - m_LocalRotation: {x: -0.062155638, y: -0.00036005804, z: -0.045099888, w: 0.99704695} - m_LocalPosition: {x: -0.2346971, y: 0.0000000949949, z: -0.000000005587935} - m_LocalScale: {x: 1.0005605, y: 0.9995139, z: 1.0000087} + m_LocalRotation: {x: -.0621556379, y: -.000360058038, z: -.045099888, w: .997046947} + m_LocalPosition: {x: -.234697104, y: 9.49949026e-08, z: -5.587935e-09} + m_LocalScale: {x: 1.00056052, y: .999513924, z: 1.0000087} m_Children: - {fileID: 463706} - {fileID: 480430} @@ -11484,9 +11412,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 120008} - m_LocalRotation: {x: -0.062113807, y: -0.0003266446, z: -0.041777097, w: 0.9971943} - m_LocalPosition: {x: -0.23469709, y: 0.000000010244548, z: 0.000000022351742} - m_LocalScale: {x: 1.0000002, y: 0.9999999, z: 1.0000001} + m_LocalRotation: {x: -.0621138066, y: -.0003266446, z: -.0417770967, w: .99719429} + m_LocalPosition: {x: -.234697089, y: 1.02445483e-08, z: 2.23517418e-08} + m_LocalScale: {x: 1.00000024, y: .999999881, z: 1.00000012} m_Children: [] m_Father: {fileID: 493586} m_RootOrder: 0 @@ -11497,7 +11425,7 @@ Transform: m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 167604} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: -27.51} + m_LocalPosition: {x: 0, y: 0, z: -27.5100002} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 418190} @@ -11512,9 +11440,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 125244} - m_LocalRotation: {x: -0.021266054, y: 0.22724898, z: 0.0184213, w: 0.9734302} - m_LocalPosition: {x: -0.033628765, y: 0.000000013038516, z: 0.000000002793968} - m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1} + m_LocalRotation: {x: -.0212660544, y: .227248982, z: .0184212998, w: .973430216} + m_LocalPosition: {x: -.0336287655, y: 1.3038516e-08, z: 2.79396795e-09} + m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1} m_Children: - {fileID: 497564} m_Father: {fileID: 418492} @@ -11525,9 +11453,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 191820} - m_LocalRotation: {x: 0.018315377, y: -0.048182797, z: -0.020263644, w: 0.998465} - m_LocalPosition: {x: -0.1514531, y: 0.000000011434395, z: -0.000000001862645} - m_LocalScale: {x: 1.0000147, y: 1.0000148, z: 1.0000145} + m_LocalRotation: {x: .0183153767, y: -.0481827967, z: -.0202636439, w: .998465002} + m_LocalPosition: {x: -.151453093, y: 1.14343948e-08, z: -1.86264504e-09} + m_LocalScale: {x: 1.00001466, y: 1.00001478, z: 1.00001454} m_Children: [] m_Father: {fileID: 474682} m_RootOrder: 0 @@ -11537,9 +11465,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 188598} - m_LocalRotation: {x: -0.1275053, y: -0.02022565, z: 0.010954182, w: 0.9915711} - m_LocalPosition: {x: -0.05326096, y: -0.000000028871, z: -0.000000015832484} - m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 1.0000001} + m_LocalRotation: {x: -.127505302, y: -.0202256497, z: .0109541817, w: .991571128} + m_LocalPosition: {x: -.0532609597, y: -2.88709998e-08, z: -1.58324838e-08} + m_LocalScale: {x: .999999821, y: .99999994, z: 1.00000012} m_Children: [] m_Father: {fileID: 427234} m_RootOrder: 0 @@ -11549,10 +11477,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 189494} - m_LocalRotation: {x: -0.0000017182904, y: 0.000000003259632, z: -0.0000000019790547, - w: 1} - m_LocalPosition: {x: -0.01681441, y: 0.000000016763806, z: 0.000000018626451} - m_LocalScale: {x: 1.0000001, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: -1.71829038e-06, y: 3.2596319e-09, z: -1.9790547e-09, w: 1} + m_LocalPosition: {x: -.0168144107, y: 1.67638063e-08, z: 1.86264515e-08} + m_LocalScale: {x: 1.00000012, y: .99999994, z: .99999994} m_Children: [] m_Father: {fileID: 488020} m_RootOrder: 0 @@ -11562,9 +11489,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 158734} - m_LocalRotation: {x: 0.07960403, y: 0.047341075, z: -0.068026386, w: 0.9933753} - m_LocalPosition: {x: -0.11754453, y: 0.000000012805685, z: -0.000000001862645} - m_LocalScale: {x: 0.99999994, y: 1.0000001, z: 0.9999997} + m_LocalRotation: {x: .0796040297, y: .0473410748, z: -.0680263862, w: .993375301} + m_LocalPosition: {x: -.117544532, y: 1.28056854e-08, z: -1.86264504e-09} + m_LocalScale: {x: .99999994, y: 1.00000012, z: .999999702} m_Children: [] m_Father: {fileID: 464270} m_RootOrder: 0 @@ -11574,9 +11501,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 156522} - m_LocalRotation: {x: -0.05151703, y: 0.23015566, z: -0.0789279, w: 0.96857876} - m_LocalPosition: {x: -0.028720835, y: 0.000000027008355, z: 0.000000014901161} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 1} + m_LocalRotation: {x: -.0515170284, y: .230155662, z: -.0789278969, w: .968578756} + m_LocalPosition: {x: -.0287208352, y: 2.70083547e-08, z: 1.49011612e-08} + m_LocalScale: {x: .99999994, y: .999999881, z: 1} m_Children: - {fileID: 485198} m_Father: {fileID: 482898} @@ -11587,9 +11514,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 147978} - m_LocalRotation: {x: 0.00000011977104, y: 0.7153595, z: -0.00000006732547, w: 0.6987566} - m_LocalPosition: {x: -0.022733197, y: 0.09799998, z: 0.31992927} - m_LocalScale: {x: 0.9999998, y: 0.99999994, z: 0.9999998} + m_LocalRotation: {x: 1.19771045e-07, y: .715359509, z: -6.73254732e-08, w: .698756576} + m_LocalPosition: {x: -.0227331966, y: .0979999825, z: .319929272} + m_LocalScale: {x: .999999821, y: .99999994, z: .999999821} m_Children: - {fileID: 424830} m_Father: {fileID: 416532} @@ -11600,9 +11527,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 173012} - m_LocalRotation: {x: 0.030080114, y: 0.30821586, z: 0.055375293, w: 0.949227} - m_LocalPosition: {x: -0.025013432, y: 0, z: 0.000000007916242} - m_LocalScale: {x: 1, y: 0.9999998, z: 1} + m_LocalRotation: {x: .0300801136, y: .308215857, z: .0553752929, w: .949226975} + m_LocalPosition: {x: -.0250134319, y: 0, z: 7.91624188e-09} + m_LocalScale: {x: 1, y: .999999821, z: 1} m_Children: - {fileID: 463652} m_Father: {fileID: 486168} @@ -11613,9 +11540,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 186886} - m_LocalRotation: {x: 0.33004946, y: 0.9414889, z: 0.04378375, w: 0.052431256} - m_LocalPosition: {x: 0.000000005348681, y: -0.000000003936432, z: -0.000000002508363} - m_LocalScale: {x: 0.99999964, y: 1.0000001, z: 1} + m_LocalRotation: {x: .330049455, y: .941488922, z: .0437837504, w: .0524312556} + m_LocalPosition: {x: 5.34868105e-09, y: -3.93643207e-09, z: -2.50836307e-09} + m_LocalScale: {x: .999999642, y: 1.00000012, z: 1} m_Children: - {fileID: 479922} m_Father: {fileID: 447564} @@ -11626,8 +11553,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 179916} - m_LocalRotation: {x: 0.000000020489097, y: -0.000000022351742, z: 9.31323e-10, w: 1} - m_LocalPosition: {x: -0.000000052154064, y: -0.00000007636845, z: -0.000000026077032} + m_LocalRotation: {x: 2.04890966e-08, y: -2.23517418e-08, z: 9.31323019e-10, w: 1} + m_LocalPosition: {x: -5.21540642e-08, y: -7.63684511e-08, z: -2.60770321e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 489366} @@ -11638,9 +11565,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 165248} - m_LocalRotation: {x: 0.60600674, y: -0.13031115, z: -0.30583838, w: 0.7226602} - m_LocalPosition: {x: 0.00651649, y: 0.028590942, z: 0.017791618} - m_LocalScale: {x: 0.8739183, y: 0.9999999, z: 0.99999994} + m_LocalRotation: {x: .606006742, y: -.130311146, z: -.305838376, w: .722660184} + m_LocalPosition: {x: .00651649013, y: .0285909418, z: .0177916177} + m_LocalScale: {x: .873918295, y: .999999881, z: .99999994} m_Children: [] m_Father: {fileID: 402816} m_RootOrder: 8 @@ -11650,9 +11577,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 169258} - m_LocalRotation: {x: -0.000000052449145, y: -0.69471383, z: 2.1634388e-13, w: 0.71928626} - m_LocalPosition: {x: -0.37726608, y: 0.000000028432252, z: 0.022689067} - m_LocalScale: {x: 1, y: 1.0000001, z: 1} + m_LocalRotation: {x: -5.24491455e-08, y: -.694713831, z: 2.16343883e-13, w: .719286263} + m_LocalPosition: {x: -.377266079, y: 2.84322521e-08, z: .0226890668} + m_LocalScale: {x: 1, y: 1.00000012, z: 1} m_Children: - {fileID: 410026} m_Father: {fileID: 477750} @@ -11663,9 +11590,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 133290} - m_LocalRotation: {x: 0.7719389, y: -0.15167932, z: 0.4610854, w: 0.4104923} - m_LocalPosition: {x: 0.000000032712705, y: -0.00000002142042, z: -0.00000011152588} - m_LocalScale: {x: 1, y: 0.99999976, z: 0.9999998} + m_LocalRotation: {x: .77193892, y: -.151679322, z: .461085409, w: .410492301} + m_LocalPosition: {x: 3.27127054e-08, y: -2.14204192e-08, z: -1.11525878e-07} + m_LocalScale: {x: 1, y: .999999762, z: .999999821} m_Children: - {fileID: 489820} m_Father: {fileID: 478276} @@ -11676,9 +11603,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 170740} - m_LocalRotation: {x: 0.33004984, y: 0.94148874, z: 0.04378374, w: 0.052431278} - m_LocalPosition: {x: 0.04564468, y: -0.036795348, z: 0.004103791} - m_LocalScale: {x: 1.0000001, y: 1.0000002, z: 1.0000001} + m_LocalRotation: {x: .330049843, y: .941488743, z: .0437837392, w: .0524312779} + m_LocalPosition: {x: .0456446782, y: -.0367953479, z: .00410379097} + m_LocalScale: {x: 1.00000012, y: 1.00000024, z: 1.00000012} m_Children: - {fileID: 485204} m_Father: {fileID: 476318} @@ -11689,10 +11616,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 173498} - m_LocalRotation: {x: -0.000000011874363, y: 0.000000007450581, z: 0.00000001792796, - w: 1} - m_LocalPosition: {x: 0.000000029802322, y: 0.000000024214387, z: 0.000000044703484} - m_LocalScale: {x: 1, y: 1, z: 0.99999994} + m_LocalRotation: {x: -1.18743628e-08, y: 7.4505806e-09, z: 1.79279596e-08, w: 1} + m_LocalPosition: {x: 2.98023224e-08, y: 2.42143869e-08, z: 4.47034836e-08} + m_LocalScale: {x: 1, y: 1, z: .99999994} m_Children: [] m_Father: {fileID: 440554} m_RootOrder: 0 @@ -11702,9 +11628,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 116964} - m_LocalRotation: {x: -0.026487125, y: -0.06201741, z: 0.041782778, w: 0.9968483} - m_LocalPosition: {x: -0.07650885, y: -0.017580584, z: -0.005317142} - m_LocalScale: {x: 1.0000004, y: 0.99999994, z: 1} + m_LocalRotation: {x: -.0264871251, y: -.062017411, z: .0417827778, w: .996848285} + m_LocalPosition: {x: -.0765088499, y: -.0175805837, z: -.00531714177} + m_LocalScale: {x: 1.00000036, y: .99999994, z: 1} m_Children: - {fileID: 447076} - {fileID: 432012} @@ -11719,9 +11645,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 151196} - m_LocalRotation: {x: -0.33004972, y: 0.94148874, z: -0.043783594, w: 0.05243221} - m_LocalPosition: {x: 0.045644727, y: 0.036795318, z: 0.0041039144} - m_LocalScale: {x: 1, y: 0.99999994, z: 1.0000001} + m_LocalRotation: {x: -.330049723, y: .941488743, z: -.0437835939, w: .0524322093} + m_LocalPosition: {x: .0456447266, y: .0367953181, z: .00410391437} + m_LocalScale: {x: 1, y: .99999994, z: 1.00000012} m_Children: - {fileID: 426302} m_Father: {fileID: 477260} @@ -11732,9 +11658,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 135464} - m_LocalRotation: {x: -0.07185988, y: 0.08021877, z: -0.011156731, w: 0.9941211} - m_LocalPosition: {x: -0.059235804, y: 0.000000029802322, z: -0.000000005122274} - m_LocalScale: {x: 1, y: 1, z: 1.0000001} + m_LocalRotation: {x: -.0718598813, y: .0802187696, z: -.0111567313, w: .994121075} + m_LocalPosition: {x: -.0592358038, y: 2.98023224e-08, z: -5.12227416e-09} + m_LocalScale: {x: 1, y: 1, z: 1.00000012} m_Children: - {fileID: 464000} - {fileID: 405252} @@ -11747,10 +11673,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 112622} - m_LocalRotation: {x: 0.000000032596294, y: -0.000000001396984, z: -9.313225e-10, - w: 1} - m_LocalPosition: {x: -0.000000013271347, y: 0.00000000797445, z: 0.000000008381903} - m_LocalScale: {x: 1, y: 0.99999994, z: 0.99999994} + m_LocalRotation: {x: 3.25962937e-08, y: -1.39698397e-09, z: -9.31322519e-10, w: 1} + m_LocalPosition: {x: -1.32713467e-08, y: 7.97445043e-09, z: 8.38190317e-09} + m_LocalScale: {x: 1, y: .99999994, z: .99999994} m_Children: [] m_Father: {fileID: 468046} m_RootOrder: 0 @@ -11760,10 +11685,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 153850} - m_LocalRotation: {x: -0.000000007450581, y: 0.0000000018626454, z: -0.0000000016298147, - w: 1} - m_LocalPosition: {x: -0, y: -0.000000034458935, z: 0.000000022351742} - m_LocalScale: {x: 0.99999994, y: 1, z: 0.99999994} + m_LocalRotation: {x: -7.4505806e-09, y: 1.86264537e-09, z: -1.62981473e-09, w: 1} + m_LocalPosition: {x: -0, y: -3.44589353e-08, z: 2.23517418e-08} + m_LocalScale: {x: .99999994, y: 1, z: .99999994} m_Children: [] m_Father: {fileID: 430802} m_RootOrder: 0 @@ -11773,8 +11697,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 148706} - m_LocalRotation: {x: 0.00000020187608, y: 0.70361584, z: -0.00000014729683, w: 0.7105805} - m_LocalPosition: {x: -0.000000002316042, y: 1.81737e-10, z: -0.00000012505929} + m_LocalRotation: {x: 2.01876077e-07, y: .703615844, z: -1.47296831e-07, w: .710580528} + m_LocalPosition: {x: -2.31604202e-09, y: 1.81737e-10, z: -1.25059287e-07} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 438632} @@ -11785,9 +11709,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 160002} - m_LocalRotation: {x: -0.0000014542602, y: -0.0000000037252843, z: -0.000000004190957, - w: 1} - m_LocalPosition: {x: -0.020808123, y: -0.000000074505806, z: 0.000000013504177} + m_LocalRotation: {x: -1.4542602e-06, y: -3.7252843e-09, z: -4.19095691e-09, w: 1} + m_LocalPosition: {x: -.0208081231, y: -7.4505806e-08, z: 1.35041773e-08} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 406650} @@ -11798,9 +11721,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 167290} - m_LocalRotation: {x: -0.00169773, y: 0.68059355, z: -0.027261488, w: 0.73215187} - m_LocalPosition: {x: -0.00000000155098, y: 0, z: 0.000000031820598} - m_LocalScale: {x: 0.99999994, y: 0.99999976, z: 0.9999999} + m_LocalRotation: {x: -.00169773004, y: .68059355, z: -.0272614881, w: .732151866} + m_LocalPosition: {x: -1.55098001e-09, y: 0, z: 3.18205977e-08} + m_LocalScale: {x: .99999994, y: .999999762, z: .999999881} m_Children: - {fileID: 462546} m_Father: {fileID: 420618} @@ -11811,9 +11734,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 101298} - m_LocalRotation: {x: -0.33004907, y: 0.941489, z: -0.043783583, w: 0.052432302} - m_LocalPosition: {x: 0.023440322, y: 0.09799999, z: -0.0014274048} - m_LocalScale: {x: 1.0000002, y: 1.0000002, z: 1.0000001} + m_LocalRotation: {x: -.330049068, y: .941488981, z: -.0437835827, w: .0524323024} + m_LocalPosition: {x: .0234403219, y: .09799999, z: -.00142740482} + m_LocalScale: {x: 1.00000024, y: 1.00000024, z: 1.00000012} m_Children: - {fileID: 403770} - {fileID: 482052} @@ -11826,9 +11749,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 148700} - m_LocalRotation: {x: -0.00000004004687, y: 6.806621e-16, z: -0.000000016996637, - w: 1} - m_LocalPosition: {x: 0.000000008381903, y: -0.000000008614734, z: 0.00000000372529} + m_LocalRotation: {x: -4.00468707e-08, y: 6.80662124e-16, z: -1.6996637e-08, w: 1} + m_LocalPosition: {x: 8.38190317e-09, y: -8.61473382e-09, z: 3.72529008e-09} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 480000} @@ -11840,10 +11762,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 184382} - m_LocalRotation: {x: 0.0000025345942, y: -0.000000007450608, z: -0.000000010710191, - w: 1} - m_LocalPosition: {x: 0.000000022351742, y: -0.000000020954758, z: -0.000000022351742} - m_LocalScale: {x: 1, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: 2.53459416e-06, y: -7.45060813e-09, z: -1.0710191e-08, w: 1} + m_LocalPosition: {x: 2.23517418e-08, y: -2.09547579e-08, z: -2.23517418e-08} + m_LocalScale: {x: 1, y: 1.00000012, z: 1.00000012} m_Children: - {fileID: 456878} m_Father: {fileID: 490724} @@ -11854,9 +11775,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 115582} - m_LocalRotation: {x: -0.073600836, y: -0.036371335, z: 0.07448041, w: 0.9938374} - m_LocalPosition: {x: -0.058772292, y: -0.000000013038516, z: 0} - m_LocalScale: {x: 1.0000001, y: 1, z: 0.99999994} + m_LocalRotation: {x: -.0736008361, y: -.0363713354, z: .0744804069, w: .993837416} + m_LocalPosition: {x: -.058772292, y: -1.3038516e-08, z: 0} + m_LocalScale: {x: 1.00000012, y: 1, z: .99999994} m_Children: [] m_Father: {fileID: 403770} m_RootOrder: 0 @@ -11866,9 +11787,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 105478} - m_LocalRotation: {x: 0.45019507, y: 0.368021, z: -0.23618099, w: 0.7785265} - m_LocalPosition: {x: -0.1877487, y: 0, z: -0.000000019557774} - m_LocalScale: {x: 0.9949029, y: 0.9922951, z: 1.0165057} + m_LocalRotation: {x: .450195074, y: .368021011, z: -.236180991, w: .778526485} + m_LocalPosition: {x: -.1877487, y: 0, z: -1.95577741e-08} + m_LocalScale: {x: .994902909, y: .992295086, z: 1.01650572} m_Children: - {fileID: 485286} - {fileID: 402816} @@ -11884,10 +11805,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 146324} - m_LocalRotation: {x: -0.000000103629134, y: -0.048460033, z: -0.000000057253246, - w: 0.99882513} - m_LocalPosition: {x: -0.1959242, y: -0.000000002983406, z: 3.17058e-10} - m_LocalScale: {x: 1.0000001, y: 1, z: 1.0000001} + m_LocalRotation: {x: -1.03629134e-07, y: -.0484600328, z: -5.72532457e-08, w: .998825133} + m_LocalPosition: {x: -.195924193, y: -2.98340597e-09, z: 3.17057991e-10} + m_LocalScale: {x: 1.00000012, y: 1, z: 1.00000012} m_Children: - {fileID: 426732} m_Father: {fileID: 454864} @@ -11898,9 +11818,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 151032} - m_LocalRotation: {x: 0.7719318, y: -0.15167035, z: 0.4610976, w: 0.4104954} - m_LocalPosition: {x: 0.000000064610504, y: -0.000000019557774, z: -0.0000002469169} - m_LocalScale: {x: 1.0526584, y: 0.9746665, z: 0.9746669} + m_LocalRotation: {x: .771931827, y: -.151670352, z: .461097598, w: .4104954} + m_LocalPosition: {x: 6.46105036e-08, y: -1.95577741e-08, z: -2.46916898e-07} + m_LocalScale: {x: 1.05265844, y: .974666476, z: .974666893} m_Children: [] m_Father: {fileID: 478276} m_RootOrder: 4 @@ -11910,9 +11830,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 190642} - m_LocalRotation: {x: -0.26486596, y: 0.96348166, z: 0.030568855, w: 0.024791516} - m_LocalPosition: {x: 0.091289446, y: 0.07359065, z: 0.008207825} - m_LocalScale: {x: 0.9999999, y: 1.0000001, z: 0.9999999} + m_LocalRotation: {x: -.264865965, y: .963481665, z: .0305688549, w: .0247915164} + m_LocalPosition: {x: .0912894458, y: .0735906512, z: .00820782501} + m_LocalScale: {x: .999999881, y: 1.00000012, z: .999999881} m_Children: - {fileID: 446118} m_Father: {fileID: 477260} @@ -11923,8 +11843,8 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 163290} - m_LocalRotation: {x: -3.604105e-15, y: 7.10349e-15, z: -1.3351769e-15, w: 1} - m_LocalPosition: {x: 0.023440277, y: -0.098000005, z: -0.0014273685} + m_LocalRotation: {x: -3.60410486e-15, y: 7.10349019e-15, z: -1.33517687e-15, w: 1} + m_LocalPosition: {x: .0234402772, y: -.0980000049, z: -.00142736849} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 474682} @@ -11935,9 +11855,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 124160} - m_LocalRotation: {x: 0.000001717359, y: 4.656687e-10, z: 0.0000000043073665, w: 1} - m_LocalPosition: {x: -0.016814377, y: -0.000000007450581, z: 0.000000070780516} - m_LocalScale: {x: 0.99999994, y: 0.9999999, z: 0.99999994} + m_LocalRotation: {x: 1.71735905e-06, y: 4.65668726e-10, z: 4.30736646e-09, w: 1} + m_LocalPosition: {x: -.0168143772, y: -7.4505806e-09, z: 7.07805157e-08} + m_LocalScale: {x: .99999994, y: .999999881, z: .99999994} m_Children: [] m_Father: {fileID: 448370} m_RootOrder: 0 @@ -11947,9 +11867,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 185332} - m_LocalRotation: {x: 0.0000000754979, y: 1, z: -0.000000043711395, w: 0.00000013315805} - m_LocalPosition: {x: 0.98865503, y: -0.029027596, z: 0.008100573} - m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001} + m_LocalRotation: {x: 7.54979013e-08, y: 1, z: -4.37113954e-08, w: 1.33158053e-07} + m_LocalPosition: {x: .988655031, y: -.0290275961, z: .00810057297} + m_LocalScale: {x: 1.00000012, y: 1.00000012, z: 1.00000012} m_Children: [] m_Father: {fileID: 466826} m_RootOrder: 0 @@ -11959,10 +11879,9 @@ Transform: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} m_GameObject: {fileID: 121616} - m_LocalRotation: {x: -0.000000099393816, y: -0.048460346, z: 0.000000020289145, - w: 0.99882513} - m_LocalPosition: {x: -0.19592418, y: 0.000000004332577, z: -0.000000011088005} - m_LocalScale: {x: 1, y: 0.99999994, z: 1} + m_LocalRotation: {x: -9.93938158e-08, y: -.0484603457, z: 2.02891446e-08, w: .998825133} + m_LocalPosition: {x: -.195924178, y: 4.33257696e-09, z: -1.10880052e-08} + m_LocalScale: {x: 1, y: .99999994, z: 1} m_Children: [] m_Father: {fileID: 469096} m_RootOrder: 0 @@ -11984,10 +11903,8 @@ MeshRenderer: m_ProbeAnchor: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 1 - m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxDistance: .5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 @@ -12008,7 +11925,7 @@ Rigidbody: serializedVersion: 2 m_Mass: 1 m_Drag: 0 - m_AngularDrag: 0.05 + m_AngularDrag: .0500000007 m_UseGravity: 0 m_IsKinematic: 1 m_Interpolate: 0 @@ -12080,7 +11997,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0, g: 0, b: 0.941, a: 1} + m_Color: {r: 0, g: 0, b: .940999985, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -12095,7 +12012,6 @@ MonoBehaviour: m_MinSize: 1 m_MaxSize: 40 m_Alignment: 1 - m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 @@ -12110,10 +12026,10 @@ CapsuleCollider: m_Material: {fileID: 0} m_IsTrigger: 0 m_Enabled: 1 - m_Radius: 0.5 - m_Height: 2.35 + m_Radius: .5 + m_Height: 2.3499999 m_Direction: 1 - m_Center: {x: 0, y: 1.22, z: 0} + m_Center: {x: 0, y: 1.22000003, z: 0} --- !u!137 &13776172 SkinnedMeshRenderer: m_ObjectHideFlags: 1 @@ -12132,10 +12048,8 @@ SkinnedMeshRenderer: m_ProbeAnchor: {fileID: 0} m_ScaleInLightmap: 1 m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 m_ImportantGI: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxDistance: .5 m_AutoUVMaxAngle: 89 m_LightmapParameters: {fileID: 0} m_SortingLayerID: 0 @@ -12230,8 +12144,8 @@ SkinnedMeshRenderer: m_BlendShapeWeights: [] m_RootBone: {fileID: 417182} m_AABB: - m_Center: {x: -0.03514433, y: -0.014258891, z: 0.006768048} - m_Extent: {x: 1.5761135, y: 0.8246441, z: 0.7527864} + m_Center: {x: -.0351443291, y: -.0142588913, z: .00676804781} + m_Extent: {x: 1.57611346, y: .824644089, z: .752786398} m_DirtyAABB: 0 --- !u!222 &22257718 CanvasRenderer: @@ -12254,10 +12168,8 @@ Canvas: m_ReceivesEvents: 1 m_OverrideSorting: 0 m_OverridePixelPerfect: 0 - m_SortingBucketNormalizedSize: 0 m_SortingLayerID: 0 m_SortingOrder: 0 - m_TargetDisplay: 0 --- !u!224 &22416086 RectTransform: m_ObjectHideFlags: 1 @@ -12270,11 +12182,11 @@ RectTransform: m_Children: [] m_Father: {fileID: 22475558} m_RootOrder: 0 - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchorMin: {x: .5, y: .5} + m_AnchorMax: {x: .5, y: .5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 5, y: 1.3} - m_Pivot: {x: 0.5, y: 0.5} + m_SizeDelta: {x: 5, y: 1.29999995} + m_Pivot: {x: .5, y: .5} --- !u!224 &22475558 RectTransform: m_ObjectHideFlags: 1 @@ -12290,9 +12202,9 @@ RectTransform: m_RootOrder: 3 m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 3.7} - m_SizeDelta: {x: 5, y: 1.3} - m_Pivot: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 3.70000005} + m_SizeDelta: {x: 5, y: 1.29999995} + m_Pivot: {x: .5, y: .5} --- !u!1001 &100100000 Prefab: m_ObjectHideFlags: 1 @@ -12326,7 +12238,7 @@ Prefab: objectReference: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} - target: {fileID: 0} propertyPath: m_Layer - value: 0 + value: 9 objectReference: {fileID: 0} m_RemovedComponents: [] m_ParentPrefab: {fileID: 0} diff --git a/Assets/StriveGame/Res/View/GameWorldPanel.prefab b/Assets/StriveGame/Res/View/GameWorldPanel.prefab index 9bfc325..821df93 100644 --- a/Assets/StriveGame/Res/View/GameWorldPanel.prefab +++ b/Assets/StriveGame/Res/View/GameWorldPanel.prefab @@ -279,7 +279,7 @@ GameObject: m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 1 + m_IsActive: 0 --- !u!1 &131602 GameObject: m_ObjectHideFlags: 1 @@ -3537,7 +3537,7 @@ RectTransform: m_GameObject: {fileID: 113692} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 22482538} - {fileID: 22491164} @@ -3560,9 +3560,9 @@ RectTransform: m_RootOrder: 0 m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 355.50003, y: 199.91336} - m_SizeDelta: {x: 711.00006, y: 399.8267} - m_Pivot: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} --- !u!224 &22453724 RectTransform: m_ObjectHideFlags: 1 @@ -3930,7 +3930,7 @@ RectTransform: m_Father: {fileID: 22442964} m_RootOrder: 0 m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMax: {x: 0.1, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} diff --git a/Assets/StriveGame/Scripts/EquipWeapon.cs b/Assets/StriveGame/Scripts/EquipWeapon.cs new file mode 100644 index 0000000..880d816 --- /dev/null +++ b/Assets/StriveGame/Scripts/EquipWeapon.cs @@ -0,0 +1,48 @@ +using UnityEngine; +using System.Collections; +using System.Collections.Generic; + +public class EquipWeapon : MonoBehaviour { + public Transform[] weapon; + public Transform weaponHand; + + private Transform currentweapon = null; + private Dictionary models = new Dictionary(); + bool isInit = false; + // Use this for initialization + void Start () { + init(); + } + void init() + { + models[6] = weapon[0]; + models[5] = weapon[1]; + models[9] = weapon[2]; + models[10] = weapon[3]; + isInit = true; + } + + public void equipWeapon(int wIndex) + { + if (!isInit) + init(); + clearWeapon(); + currentweapon = Instantiate(models[wIndex], weaponHand.position, + Quaternion.Euler(new Vector3(weaponHand.rotation.eulerAngles.x, weaponHand.rotation.eulerAngles.y, weaponHand.rotation.eulerAngles.z + 270))) as Transform; + currentweapon.parent = weaponHand; + } + + public void clearWeapon() + { + if (currentweapon != null) + { + currentweapon.parent = null; + Destroy(currentweapon.gameObject); + } + } + + void OnDestroy() + { + clearWeapon(); + } +} diff --git a/Assets/StriveGame/ToLua/Source/Generate/LuaBinder.cs b/Assets/StriveGame/ToLua/Source/Generate/LuaBinder.cs index 8cf0594..08361ea 100644 --- a/Assets/StriveGame/ToLua/Source/Generate/LuaBinder.cs +++ b/Assets/StriveGame/ToLua/Source/Generate/LuaBinder.cs @@ -12,6 +12,7 @@ public static void Bind(LuaState L) DebuggerWrap.Register(L); EasyJoystickWrap.Register(L); MovingJoystickWrap.Register(L); + NcEffectFlyingWrap.Register(L); bl_HUDTextWrap.Register(L); ViewWrap.Register(L); BaseWrap.Register(L); diff --git a/ProjectSettings/TagManager.asset b/ProjectSettings/TagManager.asset index 52a210e..90c9516 100644 --- a/ProjectSettings/TagManager.asset +++ b/ProjectSettings/TagManager.asset @@ -17,7 +17,7 @@ TagManager: - - - Map - - + - CanAttack - - - From f9aa6f84fb65eb3938ddfffdc96d2700f15f1048 Mon Sep 17 00:00:00 2001 From: ren19890419 <302842818@qq.com> Date: Sat, 18 Jun 2016 14:19:21 +0800 Subject: [PATCH 10/12] =?UTF-8?q?=E9=81=97=E6=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/StriveGame/Editor/CustomSettings.cs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Assets/StriveGame/Editor/CustomSettings.cs b/Assets/StriveGame/Editor/CustomSettings.cs index 3e1bfd5..7a8f006 100644 --- a/Assets/StriveGame/Editor/CustomSettings.cs +++ b/Assets/StriveGame/Editor/CustomSettings.cs @@ -115,8 +115,8 @@ public static class CustomSettings _GT(typeof(InputField)), _GT(typeof(Toggle)), _GT(typeof(Scrollbar)), - _GT(typeof(Slider)), - + _GT(typeof(Slider)), + _GT(typeof(Util)), _GT(typeof(AppConst)), _GT(typeof(LuaHelper)), @@ -137,10 +137,12 @@ public static class CustomSettings _GT(typeof(KBEngine.PersistentInofs)), _GT(typeof(EasyJoystick)), _GT(typeof(MovingJoystick)), + _GT(typeof(NcEffectFlying)), + //UGUI HUD TEXT - _GT(typeof(bl_HUDText)).SetBaseType(typeof(System.Object)), - + _GT(typeof(bl_HUDText)).SetBaseType(typeof(System.Object)), + }; public static List dynamicList = new List() From 52ab992cc14a5b0e9dcd9ec935aa6ef3176ae1f5 Mon Sep 17 00:00:00 2001 From: ren19890419 <302842818@qq.com> Date: Sat, 18 Jun 2016 15:37:45 +0800 Subject: [PATCH 11/12] =?UTF-8?q?=E5=8F=96=E6=B6=88=E5=A4=9A=E4=BD=99?= =?UTF-8?q?=E7=9A=84=E4=BB=A3=E7=A0=81=20VS=E5=BC=80=E5=90=AF=E7=95=8C?= =?UTF-8?q?=E9=9D=A2=E7=A7=8D=E7=94=B0=E7=9A=84Tick=E7=9A=84=E6=97=B6?= =?UTF-8?q?=E5=80=99=E5=92=8Cunity=E8=BF=9E=E6=8E=A5=E8=B0=83=E8=AF=95?= =?UTF-8?q?=E5=81=87=E6=AD=BBbug=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/StriveGame/Lua/Logic/World.lua | 24 +++++++++---------- Assets/StriveGame/Lua/View/LoginPanel.lua | 5 ++++ Assets/StriveGame/Lua/kbe/Avatar.lua | 18 +++++++------- .../StriveGame/Scripts/Common/LuaBehaviour.cs | 5 +++- 4 files changed, 30 insertions(+), 22 deletions(-) diff --git a/Assets/StriveGame/Lua/Logic/World.lua b/Assets/StriveGame/Lua/Logic/World.lua index a274b19..44209e5 100644 --- a/Assets/StriveGame/Lua/Logic/World.lua +++ b/Assets/StriveGame/Lua/Logic/World.lua @@ -151,18 +151,18 @@ function World.set_name( entity , v) end end -function World.set_HP( entity , v) - if entity:isPlayer() then - GameWorldCtrl.Set_HP(v); - end -end - -function World.set_HP_Max( entity , v) --- print("rensiwei Set_HP_Max"..v) - if entity:isPlayer() then--当前选择的角色 - GameWorldCtrl.Set_HP_Max(v); - end -end +--function World.set_HP( entity , v) +-- if entity:isPlayer() then +-- GameWorldCtrl.Set_HP(v); +-- end +--end + +--function World.set_HP_Max( entity , v) +---- print("rensiwei Set_HP_Max"..v) +-- if entity:isPlayer() then--当前选择的角色 +-- GameWorldCtrl.Set_HP_Max(v); +-- end +--end function World.set_state( entity , v) if entity.gameEntity then diff --git a/Assets/StriveGame/Lua/View/LoginPanel.lua b/Assets/StriveGame/Lua/View/LoginPanel.lua index 72d1059..3208934 100644 --- a/Assets/StriveGame/Lua/View/LoginPanel.lua +++ b/Assets/StriveGame/Lua/View/LoginPanel.lua @@ -27,3 +27,8 @@ function LoginPanel.OnDestroy() logWarn("OnDestroy---->>>"); end +function LoginPanel.Tick() + print("rensiwei int tick!"); +end + + diff --git a/Assets/StriveGame/Lua/kbe/Avatar.lua b/Assets/StriveGame/Lua/kbe/Avatar.lua index 1592a4b..ae5d686 100644 --- a/Assets/StriveGame/Lua/kbe/Avatar.lua +++ b/Assets/StriveGame/Lua/kbe/Avatar.lua @@ -125,12 +125,12 @@ function KBEngineLua.Avatar:onRemoveSkill(skillID) SkillBox.Remove(skillID); end -function KBEngineLua.Avatar:set_HP_Max(old) - local v = self.HP_Max; - Event.Brocast("set_HP_Max", self, v); -end - -function KBEngineLua.Avatar:set_MP_Max(old) - local v = self.MP_Max; --- Event.Brocast("set_MP_Max", self, v);endendend -end +--function KBEngineLua.Avatar:set_HP_Max(old) +-- local v = self.HP_Max; +-- Event.Brocast("set_HP_Max", self, v); +--end + +--function KBEngineLua.Avatar:set_MP_Max(old) +-- local v = self.MP_Max; +---- Event.Brocast("set_MP_Max", self, v);endendend +--end diff --git a/Assets/StriveGame/Scripts/Common/LuaBehaviour.cs b/Assets/StriveGame/Scripts/Common/LuaBehaviour.cs index ca004d5..a2dca1e 100644 --- a/Assets/StriveGame/Scripts/Common/LuaBehaviour.cs +++ b/Assets/StriveGame/Scripts/Common/LuaBehaviour.cs @@ -20,7 +20,10 @@ protected void Start() { protected void Update() { - Util.CallMethod(name, "Tick"); + LuaManager luaMgr = AppFacade.Instance.GetManager(ManagerName.Lua); + if (luaMgr == null) return; + if (null != luaMgr.lua.GetFunction(name + "." + "Tick",false)) + Util.CallMethod(name, "Tick"); } protected void OnClick() { Util.CallMethod(name, "OnClick"); From 722df61f9711926c533c2bb7dcd3fe5e8fe33b61 Mon Sep 17 00:00:00 2001 From: ren19890419 <302842818@qq.com> Date: Mon, 20 Jun 2016 17:09:44 +0800 Subject: [PATCH 12/12] =?UTF-8?q?=E7=9B=AE=E6=A0=87=E9=80=89=E5=8F=96?= =?UTF-8?q?=E4=B8=8D=E8=83=BD=E6=98=AF=E4=B8=BB=E8=A7=92=E8=87=AA=E5=B7=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/StriveGame/Lua/KbePlugins/Entity.lua | 2 +- Assets/StriveGame/Lua/Logic/Character.lua | 3 +-- Assets/StriveGame/Lua/Logic/SelectControl.lua | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Assets/StriveGame/Lua/KbePlugins/Entity.lua b/Assets/StriveGame/Lua/KbePlugins/Entity.lua index 7dd0421..99019f5 100644 --- a/Assets/StriveGame/Lua/KbePlugins/Entity.lua +++ b/Assets/StriveGame/Lua/KbePlugins/Entity.lua @@ -46,7 +46,7 @@ KBEngineLua.Entity.callPropertysSetMethods = function(self) if(setmethod ~= nil) then -- base类属性或者进入世界后cell类属性会触发set_*方法 - print("rensiwei_"..self.className.."_callPropertysSetMethods_"..name); +-- print("rensiwei_"..self.className.."_callPropertysSetMethods_"..name); if(flags == 0x00000020 or flags == 0x00000040) then if(self.inited and not self.inWorld) then setmethod(self, oldval); diff --git a/Assets/StriveGame/Lua/Logic/Character.lua b/Assets/StriveGame/Lua/Logic/Character.lua index fe3d722..841172f 100644 --- a/Assets/StriveGame/Lua/Logic/Character.lua +++ b/Assets/StriveGame/Lua/Logic/Character.lua @@ -58,10 +58,9 @@ end function Character:recvDamage( receiver, attacker, skillID, damageType, damage ) -- local objHUDText = find("HUDText"); local HUDText = Game.objHUDText:GetComponent("bl_HUDText"); - HUDText:NewText(tostring(damage),self.entity.renderObj.transform,Color.red,10,20,-1,2.5,0);--, 8, 20, -1, 2.2); + HUDText:NewText("Loss: -"..tostring(damage),self.entity.renderObj.transform,Color.red,10,20,-1,2.5,0);--, 8, 20, -1, 2.2); -- bl_HUDText.NewText(tostring(damage),self.entity.renderObj.transform,Color.green0, 8, 20, -1, 2.2, 0); end - function Character:OnState( v ) --状态 if v == 1 then diff --git a/Assets/StriveGame/Lua/Logic/SelectControl.lua b/Assets/StriveGame/Lua/Logic/SelectControl.lua index 984f0c9..fffc2f9 100644 --- a/Assets/StriveGame/Lua/Logic/SelectControl.lua +++ b/Assets/StriveGame/Lua/Logic/SelectControl.lua @@ -8,7 +8,7 @@ function SelectControl.Update() local isHit, hit = UnityEngine.Physics.Raycast(ray, nil, 100.0, bit.lshift(1,LayerMask.NameToLayer("CanAttack"))); if isHit then for i,v in pairs(KBEngineLua.entities) do - if v.renderObj == hit.collider.gameObject then + if v.renderObj == hit.collider.gameObject and not v:isPlayer() then TargetHeadCtrl.target = v; TargetHeadCtrl.UpdateTargetUI(); end