mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
Bug fixes
This commit is contained in:
parent
721443592f
commit
c63e08b554
157 changed files with 134 additions and 116 deletions
Binary file not shown.
|
@ -4293,7 +4293,7 @@ MonoBehaviour:
|
|||
m_OnEndEdit:
|
||||
m_PersistentCalls:
|
||||
m_Calls:
|
||||
- m_Target: {fileID: 0}
|
||||
- m_Target: {fileID: 2130812670}
|
||||
m_MethodName: UpdateAnimationDef
|
||||
m_Mode: 1
|
||||
m_Arguments:
|
||||
|
@ -10026,7 +10026,7 @@ RectTransform:
|
|||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0.5}
|
||||
m_AnchorMax: {x: 1, y: 0.5}
|
||||
m_AnchoredPosition: {x: 0, y: 84.999985}
|
||||
m_AnchoredPosition: {x: 0, y: 84.99986}
|
||||
m_SizeDelta: {x: 0, y: 5}
|
||||
m_Pivot: {x: 0, y: 1}
|
||||
--- !u!114 &542629604
|
||||
|
@ -16479,7 +16479,7 @@ RectTransform:
|
|||
m_Father: {fileID: 971413406}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMin: {x: 0, y: 0.003863871}
|
||||
m_AnchorMax: {x: 1, y: 1}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 20, y: 20}
|
||||
|
@ -19822,8 +19822,8 @@ MonoBehaviour:
|
|||
m_TargetGraphic: {fileID: 922060210}
|
||||
m_HandleRect: {fileID: 922060209}
|
||||
m_Direction: 2
|
||||
m_Value: 0
|
||||
m_Size: 1
|
||||
m_Value: 1
|
||||
m_Size: 0.9961361
|
||||
m_NumberOfSteps: 0
|
||||
m_OnValueChanged:
|
||||
m_PersistentCalls:
|
||||
|
@ -24740,7 +24740,7 @@ MonoBehaviour:
|
|||
m_OnEndEdit:
|
||||
m_PersistentCalls:
|
||||
m_Calls:
|
||||
- m_Target: {fileID: 0}
|
||||
- m_Target: {fileID: 2130812670}
|
||||
m_MethodName: UpdateAnimationDef
|
||||
m_Mode: 1
|
||||
m_Arguments:
|
||||
|
@ -35640,6 +35640,7 @@ GameObject:
|
|||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 2130812669}
|
||||
- component: {fileID: 2130812670}
|
||||
m_Layer: 5
|
||||
m_Name: AnimationDefCard
|
||||
m_TagString: Untagged
|
||||
|
@ -35673,6 +35674,20 @@ RectTransform:
|
|||
m_AnchoredPosition: {x: 155, y: -66.99603}
|
||||
m_SizeDelta: {x: 310, y: 133.99207}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &2130812670
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 2130812668}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: e1d8f33927e6b4d44914a445362b802d, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
defNameField: {fileID: 295308631}
|
||||
labelField: {fileID: 1402648198}
|
||||
--- !u!1 &2134497163
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
|
|
|
@ -12,7 +12,7 @@ namespace RimWorldAnimationStudio
|
|||
{
|
||||
public InputField defNameField;
|
||||
public InputField labelField;
|
||||
public Toggle playSoundsToggle;
|
||||
//public Toggle playSoundsToggle;
|
||||
|
||||
public void Update()
|
||||
{
|
||||
|
@ -24,14 +24,14 @@ namespace RimWorldAnimationStudio
|
|||
if (labelField.isFocused == false)
|
||||
{ labelField.text = Workspace.animationDef.label; }
|
||||
|
||||
playSoundsToggle.isOn = Workspace.animationDef.sounds;
|
||||
//playSoundsToggle.isOn = Workspace.animationDef.sounds;
|
||||
}
|
||||
|
||||
public void UpdateAnimationDef()
|
||||
{
|
||||
Workspace.animationDef.defName = defNameField.text;
|
||||
Workspace.animationDef.label = labelField.text;
|
||||
Workspace.animationDef.sounds = playSoundsToggle.isOn;
|
||||
//Workspace.animationDef.sounds = playSoundsToggle.isOn;
|
||||
|
||||
Workspace.Instance.MakeHistoricRecord("AnimationDef update");
|
||||
}
|
||||
|
|
|
@ -57,7 +57,7 @@ namespace RimWorldAnimationStudio
|
|||
public void Update()
|
||||
{
|
||||
if (IsDialogBoxIsActive()) return;
|
||||
|
||||
if (EventSystem.current.currentSelectedGameObject?.GetComponent<InputField>()?.isFocused == true) return;
|
||||
bool canRepeatThisUpdate = CanRepeatThisUpdate();
|
||||
|
||||
// Check keybinds
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Library/Artifacts/02/02fd097c22712033223733e7f18433bd
Normal file
BIN
Library/Artifacts/02/02fd097c22712033223733e7f18433bd
Normal file
Binary file not shown.
BIN
Library/Artifacts/04/0480c11b9f8e6ddf4bb2d9fd119d31e6
Normal file
BIN
Library/Artifacts/04/0480c11b9f8e6ddf4bb2d9fd119d31e6
Normal file
Binary file not shown.
BIN
Library/Artifacts/08/085e282851c94fb9ca37a6652d25008e
Normal file
BIN
Library/Artifacts/08/085e282851c94fb9ca37a6652d25008e
Normal file
Binary file not shown.
BIN
Library/Artifacts/09/090beff0d5480349c1a25e3c256f1931
Normal file
BIN
Library/Artifacts/09/090beff0d5480349c1a25e3c256f1931
Normal file
Binary file not shown.
BIN
Library/Artifacts/0b/0b7e3c557ce264fc8f6c5c86668ed279
Normal file
BIN
Library/Artifacts/0b/0b7e3c557ce264fc8f6c5c86668ed279
Normal file
Binary file not shown.
BIN
Library/Artifacts/0b/0bf7a525500634431a6d78157589f701
Normal file
BIN
Library/Artifacts/0b/0bf7a525500634431a6d78157589f701
Normal file
Binary file not shown.
BIN
Library/Artifacts/0c/0c6a06d2f5a15b0ab2400695787d8e04
Normal file
BIN
Library/Artifacts/0c/0c6a06d2f5a15b0ab2400695787d8e04
Normal file
Binary file not shown.
BIN
Library/Artifacts/0d/0d0113f1abe015d1d6819fabcb998a02
Normal file
BIN
Library/Artifacts/0d/0d0113f1abe015d1d6819fabcb998a02
Normal file
Binary file not shown.
BIN
Library/Artifacts/10/10b7ccf0a4d3d8977c8976a7567f70f3
Normal file
BIN
Library/Artifacts/10/10b7ccf0a4d3d8977c8976a7567f70f3
Normal file
Binary file not shown.
BIN
Library/Artifacts/11/11bd44d7fd1713220dd66033b9b93180
Normal file
BIN
Library/Artifacts/11/11bd44d7fd1713220dd66033b9b93180
Normal file
Binary file not shown.
BIN
Library/Artifacts/11/11f8a7bce3315eb54778c22a6e3d506c
Normal file
BIN
Library/Artifacts/11/11f8a7bce3315eb54778c22a6e3d506c
Normal file
Binary file not shown.
Binary file not shown.
BIN
Library/Artifacts/14/142e9577f9166a331e47f6b76c592ad6
Normal file
BIN
Library/Artifacts/14/142e9577f9166a331e47f6b76c592ad6
Normal file
Binary file not shown.
Binary file not shown.
BIN
Library/Artifacts/21/214742af563cd13f5255e2bdf3b47da4
Normal file
BIN
Library/Artifacts/21/214742af563cd13f5255e2bdf3b47da4
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Library/Artifacts/25/251f363b1a65dec7213bb85595fdf57b
Normal file
BIN
Library/Artifacts/25/251f363b1a65dec7213bb85595fdf57b
Normal file
Binary file not shown.
BIN
Library/Artifacts/25/25805a6391ad6e67acf3c5c7a0a75e19
Normal file
BIN
Library/Artifacts/25/25805a6391ad6e67acf3c5c7a0a75e19
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Library/Artifacts/27/2750b62777cd0fd429efa6c77a07e502
Normal file
BIN
Library/Artifacts/27/2750b62777cd0fd429efa6c77a07e502
Normal file
Binary file not shown.
BIN
Library/Artifacts/28/28b729754523f05c1d8a0989d427ef43
Normal file
BIN
Library/Artifacts/28/28b729754523f05c1d8a0989d427ef43
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Library/Artifacts/34/34cabd8ce1e13c76c7db940cdd0d801d
Normal file
BIN
Library/Artifacts/34/34cabd8ce1e13c76c7db940cdd0d801d
Normal file
Binary file not shown.
Binary file not shown.
BIN
Library/Artifacts/36/3650b669cea3b44f0ff72d99ed61f070
Normal file
BIN
Library/Artifacts/36/3650b669cea3b44f0ff72d99ed61f070
Normal file
Binary file not shown.
BIN
Library/Artifacts/37/37e721b761729d5e0f2f502cf2d9217b
Normal file
BIN
Library/Artifacts/37/37e721b761729d5e0f2f502cf2d9217b
Normal file
Binary file not shown.
Binary file not shown.
BIN
Library/Artifacts/3e/3ed300da66827ee897ac193688262620
Normal file
BIN
Library/Artifacts/3e/3ed300da66827ee897ac193688262620
Normal file
Binary file not shown.
BIN
Library/Artifacts/3f/3f42300d79c5cdc9e10e904591bebf9a
Normal file
BIN
Library/Artifacts/3f/3f42300d79c5cdc9e10e904591bebf9a
Normal file
Binary file not shown.
Binary file not shown.
BIN
Library/Artifacts/42/42760d7289a3d59774b49545c2a9c409
Normal file
BIN
Library/Artifacts/42/42760d7289a3d59774b49545c2a9c409
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Library/Artifacts/52/52bd74331d14a40fb6f0c558545cd8aa
Normal file
BIN
Library/Artifacts/52/52bd74331d14a40fb6f0c558545cd8aa
Normal file
Binary file not shown.
BIN
Library/Artifacts/53/53334ac4588c2e462e44ed7d8bcd3367
Normal file
BIN
Library/Artifacts/53/53334ac4588c2e462e44ed7d8bcd3367
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Library/Artifacts/55/5537050977cc01440e07ce819e7472df
Normal file
BIN
Library/Artifacts/55/5537050977cc01440e07ce819e7472df
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Library/Artifacts/5d/5dbb0c36b668d7ef4f824c284fd08878
Normal file
BIN
Library/Artifacts/5d/5dbb0c36b668d7ef4f824c284fd08878
Normal file
Binary file not shown.
BIN
Library/Artifacts/61/61249c654bddfecef29bb076f88401d8
Normal file
BIN
Library/Artifacts/61/61249c654bddfecef29bb076f88401d8
Normal file
Binary file not shown.
BIN
Library/Artifacts/63/63250da560ad781b04d76c7aef278722
Normal file
BIN
Library/Artifacts/63/63250da560ad781b04d76c7aef278722
Normal file
Binary file not shown.
BIN
Library/Artifacts/64/643eede5a102eb5136882f77ff4ce0df
Normal file
BIN
Library/Artifacts/64/643eede5a102eb5136882f77ff4ce0df
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Library/Artifacts/70/704ff1829b76882fa0d6959f0009d870
Normal file
BIN
Library/Artifacts/70/704ff1829b76882fa0d6959f0009d870
Normal file
Binary file not shown.
BIN
Library/Artifacts/72/723f71a6274b900e944e57cff8bf53da
Normal file
BIN
Library/Artifacts/72/723f71a6274b900e944e57cff8bf53da
Normal file
Binary file not shown.
BIN
Library/Artifacts/7a/7aac19e441b97b4fa240297074764ae2
Normal file
BIN
Library/Artifacts/7a/7aac19e441b97b4fa240297074764ae2
Normal file
Binary file not shown.
BIN
Library/Artifacts/7f/7fe9bb417bad4320311b29a71d467136
Normal file
BIN
Library/Artifacts/7f/7fe9bb417bad4320311b29a71d467136
Normal file
Binary file not shown.
BIN
Library/Artifacts/83/83dcbe0910a0602462d1b7d1e0bf6479
Normal file
BIN
Library/Artifacts/83/83dcbe0910a0602462d1b7d1e0bf6479
Normal file
Binary file not shown.
BIN
Library/Artifacts/84/84e75cbc1d1701da9852d8904fc274d6
Normal file
BIN
Library/Artifacts/84/84e75cbc1d1701da9852d8904fc274d6
Normal file
Binary file not shown.
BIN
Library/Artifacts/86/8647c4f683dfe4c149d9a7307d7daeb5
Normal file
BIN
Library/Artifacts/86/8647c4f683dfe4c149d9a7307d7daeb5
Normal file
Binary file not shown.
BIN
Library/Artifacts/87/87810859afc6b9a0c615673ee4eee961
Normal file
BIN
Library/Artifacts/87/87810859afc6b9a0c615673ee4eee961
Normal file
Binary file not shown.
BIN
Library/Artifacts/8b/8b8870fdf7e7c1705331d43589b5a836
Normal file
BIN
Library/Artifacts/8b/8b8870fdf7e7c1705331d43589b5a836
Normal file
Binary file not shown.
BIN
Library/Artifacts/8d/8db5dae5de2e0f6a0906f18416483a8c
Normal file
BIN
Library/Artifacts/8d/8db5dae5de2e0f6a0906f18416483a8c
Normal file
Binary file not shown.
BIN
Library/Artifacts/8e/8e7d253d037fe01f0128557d3d5c2d11
Normal file
BIN
Library/Artifacts/8e/8e7d253d037fe01f0128557d3d5c2d11
Normal file
Binary file not shown.
BIN
Library/Artifacts/91/910fa26e21d35ad4a6d56c401c497853
Normal file
BIN
Library/Artifacts/91/910fa26e21d35ad4a6d56c401c497853
Normal file
Binary file not shown.
BIN
Library/Artifacts/91/91b12928d24c668757442087f03e7a95
Normal file
BIN
Library/Artifacts/91/91b12928d24c668757442087f03e7a95
Normal file
Binary file not shown.
Binary file not shown.
BIN
Library/Artifacts/98/989c4831a028a58c74ec4095ab278a7d
Normal file
BIN
Library/Artifacts/98/989c4831a028a58c74ec4095ab278a7d
Normal file
Binary file not shown.
BIN
Library/Artifacts/9b/9b1a1897e765d3b2acdc39784a1aa3dc
Normal file
BIN
Library/Artifacts/9b/9b1a1897e765d3b2acdc39784a1aa3dc
Normal file
Binary file not shown.
BIN
Library/Artifacts/9d/9d294e05f426f6f44f2c54977123c8cd
Normal file
BIN
Library/Artifacts/9d/9d294e05f426f6f44f2c54977123c8cd
Normal file
Binary file not shown.
Binary file not shown.
BIN
Library/Artifacts/9f/9fa41e036345bb86a4fd3be745a960c8
Normal file
BIN
Library/Artifacts/9f/9fa41e036345bb86a4fd3be745a960c8
Normal file
Binary file not shown.
BIN
Library/Artifacts/a0/a00b57a424408e6f55b04df72bb8cdde
Normal file
BIN
Library/Artifacts/a0/a00b57a424408e6f55b04df72bb8cdde
Normal file
Binary file not shown.
BIN
Library/Artifacts/a7/a721134ca424020693658ac01f9b2e0b
Normal file
BIN
Library/Artifacts/a7/a721134ca424020693658ac01f9b2e0b
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Library/Artifacts/ae/aeb2d88e8fe373daf135e6749dd467f1
Normal file
BIN
Library/Artifacts/ae/aeb2d88e8fe373daf135e6749dd467f1
Normal file
Binary file not shown.
BIN
Library/Artifacts/b1/b19437f454d81ec6855f69e6d5727687
Normal file
BIN
Library/Artifacts/b1/b19437f454d81ec6855f69e6d5727687
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Library/Artifacts/b6/b615af93e11076a9460b5acaea0ae31a
Normal file
BIN
Library/Artifacts/b6/b615af93e11076a9460b5acaea0ae31a
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue