com.valectric.mooserunner 2.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/CLI~/mooserunnerCli.exe +0 -0
  3. package/CLI~/mooserunnerCliDaemon.exe +0 -0
  4. package/Editor/GUI/MooseRunnerFail.png +0 -0
  5. package/Editor/GUI/MooseRunnerFail.png.meta +140 -0
  6. package/Editor/GUI/MooseRunnerGreenLED.png +0 -0
  7. package/Editor/GUI/MooseRunnerGreenLED.png.meta +140 -0
  8. package/Editor/GUI/MooseRunnerLogoBannerSmall.png +0 -0
  9. package/Editor/GUI/MooseRunnerLogoBannerSmall.png.meta +140 -0
  10. package/Editor/GUI/MooseRunnerNotRun.png +0 -0
  11. package/Editor/GUI/MooseRunnerNotRun.png.meta +140 -0
  12. package/Editor/GUI/MooseRunnerPass.png +0 -0
  13. package/Editor/GUI/MooseRunnerPass.png.meta +140 -0
  14. package/Editor/GUI/MooseRunnerYellowLED.png +0 -0
  15. package/Editor/GUI/MooseRunnerYellowLED.png.meta +140 -0
  16. package/Editor/MooseRunner.Editor.asmdef +17 -0
  17. package/Editor/MooseRunner.Editor.asmdef.meta +7 -0
  18. package/Editor/MooseRunner.Internal.Editor.dll +0 -0
  19. package/Editor/MooseRunner.Internal.Editor.dll.meta +33 -0
  20. package/Editor/MooseRunner.SessionRecorder.dll +0 -0
  21. package/Editor/MooseRunner.SessionRecorder.dll.meta +33 -0
  22. package/Editor/MooseRunner.Worker.dll +0 -0
  23. package/Editor/MooseRunner.Worker.dll.meta +33 -0
  24. package/Editor/_WrapperStub.cs +3 -0
  25. package/Editor/_WrapperStub.cs.meta +11 -0
  26. package/LICENSE.md +28 -0
  27. package/README.md +347 -0
  28. package/Runtime/Helpers/DoNotDestroyOnTeardown/DoNotDestroyOnTeardown.cs +262 -0
  29. package/Runtime/Helpers/DoNotDestroyOnTeardown/DoNotDestroyOnTeardown.cs.meta +2 -0
  30. package/Runtime/Helpers/DoNotDestroyOnTeardown/MooseRunner.helper.asmdef +18 -0
  31. package/Runtime/Helpers/DoNotDestroyOnTeardown/MooseRunner.helper.asmdef.meta +7 -0
  32. package/Runtime/MooseRunner.Helpers.Runtime.dll +0 -0
  33. package/Runtime/MooseRunner.Helpers.Runtime.dll.meta +27 -0
  34. package/Runtime/MooseRunner.Internal.dll +0 -0
  35. package/Runtime/MooseRunner.Internal.dll.meta +27 -0
  36. package/Runtime/MooseRunner.Multiplaytest.Types.dll +0 -0
  37. package/Runtime/MooseRunner.Multiplaytest.Types.dll.meta +27 -0
  38. package/Runtime/MooseRunner.Runtime.asmdef +20 -0
  39. package/Runtime/MooseRunner.Runtime.asmdef.meta +7 -0
  40. package/Runtime/MooseRunner.SessionRecorder.Runtime.dll +0 -0
  41. package/Runtime/MooseRunner.SessionRecorder.Runtime.dll.meta +27 -0
  42. package/Runtime/MooseRunner.dll +0 -0
  43. package/Runtime/MooseRunner.dll.meta +27 -0
  44. package/Runtime/_WrapperStub.cs +3 -0
  45. package/Runtime/_WrapperStub.cs.meta +11 -0
  46. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/BatchCancellationTests.cs +37 -0
  47. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/BatchCancellationTests.cs.meta +2 -0
  48. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/CancellationTokenTests.cs +186 -0
  49. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/CancellationTokenTests.cs.meta +2 -0
  50. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/MooseRunner.Demo.CancellationTokens.Tests.asmdef +28 -0
  51. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/MooseRunner.Demo.CancellationTokens.Tests.asmdef.meta +7 -0
  52. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/SetupTeardownCancellationTests.cs +84 -0
  53. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/SetupTeardownCancellationTests.cs.meta +2 -0
  54. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/TESTING_INSTRUCTIONS.md +491 -0
  55. package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/TESTING_INSTRUCTIONS.md.meta +7 -0
  56. package/Samples~/Demos/MooseRunner.Demo.ErrorHandling.Tests/ErrorHandelingTest.cs +177 -0
  57. package/Samples~/Demos/MooseRunner.Demo.ErrorHandling.Tests/ErrorHandelingTest.cs.meta +11 -0
  58. package/Samples~/Demos/MooseRunner.Demo.ErrorHandling.Tests/MooseRunner.Demo.ErrorHandling.Tests.asmdef +28 -0
  59. package/Samples~/Demos/MooseRunner.Demo.ErrorHandling.Tests/MooseRunner.Demo.ErrorHandling.Tests.asmdef.meta +7 -0
  60. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/LogEntry.cs +51 -0
  61. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/LogEntry.cs.meta +11 -0
  62. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/LogFileParser.cs +70 -0
  63. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/LogFileParser.cs.meta +11 -0
  64. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/MooseRunner.Demo.Flow.TestSupport.asmdef +22 -0
  65. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/MooseRunner.Demo.Flow.TestSupport.asmdef.meta +7 -0
  66. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/MooseRunnerLogReference.json +62 -0
  67. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/MooseRunnerLogReference.json.meta +7 -0
  68. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/MooseRunnerLogReference_2.json +33 -0
  69. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/MooseRunnerLogReference_2.json.meta +7 -0
  70. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/MooseRunnerLogReference_No_UniTask.json +57 -0
  71. package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/MooseRunnerLogReference_No_UniTask.json.meta +7 -0
  72. package/Samples~/Demos/MooseRunner.Demo.OrderAttribute/MethodOrderAttributeTests.cs +62 -0
  73. package/Samples~/Demos/MooseRunner.Demo.OrderAttribute/MethodOrderAttributeTests.cs.meta +2 -0
  74. package/Samples~/Demos/MooseRunner.Demo.OrderAttribute/MooseRunner.Demo.OrderAttribute.asmdef +20 -0
  75. package/Samples~/Demos/MooseRunner.Demo.OrderAttribute/MooseRunner.Demo.OrderAttribute.asmdef.meta +7 -0
  76. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/CatAnimation.controller +276 -0
  77. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/CatAnimation.controller.meta +8 -0
  78. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/Enemy.cs +101 -0
  79. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/Enemy.cs.meta +11 -0
  80. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/FireComponent.cs +19 -0
  81. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/FireComponent.cs.meta +3 -0
  82. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/Model/Ghost_cat.fbx +0 -0
  83. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/Model/Ghost_cat.fbx.meta +547 -0
  84. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/Model.meta +8 -0
  85. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/MooseRunner.Demo.RealUseCase.asmdef +29 -0
  86. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/MooseRunner.Demo.RealUseCase.asmdef.meta +7 -0
  87. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/RealUseCaseScene.unity +4758 -0
  88. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/RealUseCaseScene.unity.meta +7 -0
  89. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/RealUseCaseTest.cs +307 -0
  90. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/RealUseCaseTest.cs.meta +3 -0
  91. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/Resources/Ghost_cat.prefab +157 -0
  92. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/Resources/Ghost_cat.prefab.meta +7 -0
  93. package/Samples~/Demos/MooseRunner.Demo.RealUseCase/Resources.meta +8 -0
  94. package/Samples~/Demos/MooseRunner.Demo.Support/MessageDisplayManager.cs +291 -0
  95. package/Samples~/Demos/MooseRunner.Demo.Support/MessageDisplayManager.cs.meta +11 -0
  96. package/Samples~/Demos/MooseRunner.Demo.Support/MooseRunner.Demo.Support.asmdef +19 -0
  97. package/Samples~/Demos/MooseRunner.Demo.Support/MooseRunner.Demo.Support.asmdef.meta +7 -0
  98. package/Samples~/Demos/MooseRunner.Demo.Tests/DummyTestBase1.cs +71 -0
  99. package/Samples~/Demos/MooseRunner.Demo.Tests/DummyTestBase1.cs.meta +11 -0
  100. package/Samples~/Demos/MooseRunner.Demo.Tests/DummyTestClass1.cs +301 -0
  101. package/Samples~/Demos/MooseRunner.Demo.Tests/DummyTestClass1.cs.meta +11 -0
  102. package/Samples~/Demos/MooseRunner.Demo.Tests/DummyTestClass2.cs +69 -0
  103. package/Samples~/Demos/MooseRunner.Demo.Tests/DummyTestClass2.cs.meta +11 -0
  104. package/Samples~/Demos/MooseRunner.Demo.Tests/ExplicitAttributeTests.cs +36 -0
  105. package/Samples~/Demos/MooseRunner.Demo.Tests/ExplicitAttributeTests.cs.meta +2 -0
  106. package/Samples~/Demos/MooseRunner.Demo.Tests/HumanReviewModeDemo.cs +99 -0
  107. package/Samples~/Demos/MooseRunner.Demo.Tests/HumanReviewModeDemo.cs.meta +2 -0
  108. package/Samples~/Demos/MooseRunner.Demo.Tests/InstanceHandlingVerificationTest.cs +99 -0
  109. package/Samples~/Demos/MooseRunner.Demo.Tests/InstanceHandlingVerificationTest.cs.meta +2 -0
  110. package/Samples~/Demos/MooseRunner.Demo.Tests/MooseRunner.Demo.Tests.asmdef +23 -0
  111. package/Samples~/Demos/MooseRunner.Demo.Tests/MooseRunner.Demo.Tests.asmdef.meta +7 -0
  112. package/Samples~/Demos/MooseRunner.Demo.Tests/PauseTestExecutionDemo.cs +74 -0
  113. package/Samples~/Demos/MooseRunner.Demo.Tests/PauseTestExecutionDemo.cs.meta +2 -0
  114. package/Samples~/Demos/TestResources/OneCamera/Materials/Background.mat +137 -0
  115. package/Samples~/Demos/TestResources/OneCamera/Materials/Background.mat.meta +8 -0
  116. package/Samples~/Demos/TestResources/OneCamera/Materials/Background.png +0 -0
  117. package/Samples~/Demos/TestResources/OneCamera/Materials/Background.png.meta +127 -0
  118. package/Samples~/Demos/TestResources/OneCamera/Materials/Grid.mat +71 -0
  119. package/Samples~/Demos/TestResources/OneCamera/Materials/Grid.mat.meta +8 -0
  120. package/Samples~/Demos/TestResources/OneCamera/Materials/Grid.png +0 -0
  121. package/Samples~/Demos/TestResources/OneCamera/Materials/Grid.png.meta +127 -0
  122. package/Samples~/Demos/TestResources/OneCamera/Materials/Grid.shadergraph +1910 -0
  123. package/Samples~/Demos/TestResources/OneCamera/Materials/Grid.shadergraph.meta +10 -0
  124. package/Samples~/Demos/TestResources/OneCamera/Materials/GridNormal.png +0 -0
  125. package/Samples~/Demos/TestResources/OneCamera/Materials/GridNormal.png.meta +127 -0
  126. package/Samples~/Demos/TestResources/OneCamera/Materials.meta +8 -0
  127. package/Samples~/Demos/TestResources/OneCamera/OneCameraScene.unity +598 -0
  128. package/Samples~/Demos/TestResources/OneCamera/OneCameraScene.unity.meta +7 -0
  129. package/Samples~/Demos/TestResources/OneCamera.meta +8 -0
  130. package/Third Party Notices.md +37 -0
  131. package/package.json +38 -0
@@ -0,0 +1,547 @@
1
+ fileFormatVersion: 2
2
+ guid: 11f102f6c7bba8348be5b03d99bb9022
3
+ ModelImporter:
4
+ serializedVersion: 22200
5
+ internalIDToNameTable: []
6
+ externalObjects: {}
7
+ materials:
8
+ materialImportMode: 2
9
+ materialName: 0
10
+ materialSearch: 1
11
+ materialLocation: 1
12
+ animations:
13
+ legacyGenerateAnimations: 4
14
+ bakeSimulation: 0
15
+ resampleCurves: 1
16
+ optimizeGameObjects: 0
17
+ removeConstantScaleCurves: 0
18
+ motionNodeName:
19
+ rigImportErrors:
20
+ rigImportWarnings:
21
+ animationImportErrors:
22
+ animationImportWarnings:
23
+ animationRetargetingWarnings:
24
+ animationDoRetargetingWarnings: 0
25
+ importAnimatedCustomProperties: 0
26
+ importConstraints: 0
27
+ animationCompression: 3
28
+ animationRotationError: 0.5
29
+ animationPositionError: 0.5
30
+ animationScaleError: 0.5
31
+ animationWrapMode: 0
32
+ extraExposedTransformPaths: []
33
+ extraUserProperties: []
34
+ clipAnimations:
35
+ - serializedVersion: 16
36
+ name: idle
37
+ takeName: idle
38
+ internalID: -5252816984213320552
39
+ firstFrame: 0
40
+ lastFrame: 298
41
+ wrapMode: 0
42
+ orientationOffsetY: 0
43
+ level: 0
44
+ cycleOffset: 0
45
+ loop: 0
46
+ hasAdditiveReferencePose: 0
47
+ loopTime: 1
48
+ loopBlend: 1
49
+ loopBlendOrientation: 0
50
+ loopBlendPositionY: 0
51
+ loopBlendPositionXZ: 0
52
+ keepOriginalOrientation: 0
53
+ keepOriginalPositionY: 1
54
+ keepOriginalPositionXZ: 1
55
+ heightFromFeet: 0
56
+ mirror: 0
57
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
58
+ curves: []
59
+ events: []
60
+ transformMask: []
61
+ maskType: 3
62
+ maskSource: {instanceID: 0}
63
+ additiveReferencePoseFrame: 298
64
+ - serializedVersion: 16
65
+ name: walk
66
+ takeName: walk
67
+ internalID: -3419257869308726280
68
+ firstFrame: 299
69
+ lastFrame: 332
70
+ wrapMode: 0
71
+ orientationOffsetY: 0
72
+ level: 0
73
+ cycleOffset: 0
74
+ loop: 0
75
+ hasAdditiveReferencePose: 0
76
+ loopTime: 1
77
+ loopBlend: 1
78
+ loopBlendOrientation: 0
79
+ loopBlendPositionY: 0
80
+ loopBlendPositionXZ: 0
81
+ keepOriginalOrientation: 0
82
+ keepOriginalPositionY: 1
83
+ keepOriginalPositionXZ: 0
84
+ heightFromFeet: 0
85
+ mirror: 0
86
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
87
+ curves: []
88
+ events: []
89
+ transformMask: []
90
+ maskType: 3
91
+ maskSource: {instanceID: 0}
92
+ additiveReferencePoseFrame: 299
93
+ - serializedVersion: 16
94
+ name: take damage
95
+ takeName: take damage
96
+ internalID: 772023809631997582
97
+ firstFrame: 333
98
+ lastFrame: 376
99
+ wrapMode: 0
100
+ orientationOffsetY: 0
101
+ level: 0
102
+ cycleOffset: 0
103
+ loop: 0
104
+ hasAdditiveReferencePose: 0
105
+ loopTime: 0
106
+ loopBlend: 0
107
+ loopBlendOrientation: 0
108
+ loopBlendPositionY: 0
109
+ loopBlendPositionXZ: 0
110
+ keepOriginalOrientation: 0
111
+ keepOriginalPositionY: 1
112
+ keepOriginalPositionXZ: 0
113
+ heightFromFeet: 0
114
+ mirror: 0
115
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
116
+ curves: []
117
+ events: []
118
+ transformMask: []
119
+ maskType: 3
120
+ maskSource: {instanceID: 0}
121
+ additiveReferencePoseFrame: 0
122
+ - serializedVersion: 16
123
+ name: dying
124
+ takeName: dying
125
+ internalID: -2343641868178226514
126
+ firstFrame: 377
127
+ lastFrame: 483
128
+ wrapMode: 0
129
+ orientationOffsetY: 0
130
+ level: 0
131
+ cycleOffset: 0
132
+ loop: 0
133
+ hasAdditiveReferencePose: 0
134
+ loopTime: 0
135
+ loopBlend: 0
136
+ loopBlendOrientation: 0
137
+ loopBlendPositionY: 1
138
+ loopBlendPositionXZ: 1
139
+ keepOriginalOrientation: 1
140
+ keepOriginalPositionY: 1
141
+ keepOriginalPositionXZ: 1
142
+ heightFromFeet: 0
143
+ mirror: 0
144
+ bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
145
+ curves: []
146
+ events: []
147
+ transformMask: []
148
+ maskType: 3
149
+ maskSource: {instanceID: 0}
150
+ additiveReferencePoseFrame: 377
151
+ isReadable: 0
152
+ meshes:
153
+ lODScreenPercentages: []
154
+ globalScale: 1
155
+ meshCompression: 0
156
+ addColliders: 0
157
+ useSRGBMaterialColor: 1
158
+ sortHierarchyByName: 1
159
+ importPhysicalCameras: 1
160
+ importVisibility: 1
161
+ importBlendShapes: 1
162
+ importCameras: 1
163
+ importLights: 1
164
+ nodeNameCollisionStrategy: 1
165
+ fileIdsGeneration: 2
166
+ swapUVChannels: 0
167
+ generateSecondaryUV: 0
168
+ useFileUnits: 1
169
+ keepQuads: 0
170
+ weldVertices: 1
171
+ bakeAxisConversion: 0
172
+ preserveHierarchy: 0
173
+ skinWeightsMode: 0
174
+ maxBonesPerVertex: 4
175
+ minBoneWeight: 0.001
176
+ optimizeBones: 1
177
+ meshOptimizationFlags: -1
178
+ indexFormat: 0
179
+ secondaryUVAngleDistortion: 8
180
+ secondaryUVAreaDistortion: 15.000001
181
+ secondaryUVHardAngle: 88
182
+ secondaryUVMarginMethod: 1
183
+ secondaryUVMinLightmapResolution: 40
184
+ secondaryUVMinObjectScale: 1
185
+ secondaryUVPackMargin: 4
186
+ useFileScale: 1
187
+ strictVertexDataChecks: 0
188
+ tangentSpace:
189
+ normalSmoothAngle: 60
190
+ normalImportMode: 0
191
+ tangentImportMode: 3
192
+ normalCalculationMode: 4
193
+ legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
194
+ blendShapeNormalImportMode: 1
195
+ normalSmoothingSource: 0
196
+ referencedClips: []
197
+ importAnimation: 1
198
+ humanDescription:
199
+ serializedVersion: 3
200
+ human:
201
+ - boneName: Hips
202
+ humanName: Hips
203
+ limit:
204
+ min: {x: 0, y: 0, z: 0}
205
+ max: {x: 0, y: 0, z: 0}
206
+ value: {x: 0, y: 0, z: 0}
207
+ length: 0
208
+ modified: 0
209
+ - boneName: LeftUpLeg
210
+ humanName: LeftUpperLeg
211
+ limit:
212
+ min: {x: 0, y: 0, z: 0}
213
+ max: {x: 0, y: 0, z: 0}
214
+ value: {x: 0, y: 0, z: 0}
215
+ length: 0
216
+ modified: 0
217
+ - boneName: RightUpLeg
218
+ humanName: RightUpperLeg
219
+ limit:
220
+ min: {x: 0, y: 0, z: 0}
221
+ max: {x: 0, y: 0, z: 0}
222
+ value: {x: 0, y: 0, z: 0}
223
+ length: 0
224
+ modified: 0
225
+ - boneName: LeftLeg
226
+ humanName: LeftLowerLeg
227
+ limit:
228
+ min: {x: 0, y: 0, z: 0}
229
+ max: {x: 0, y: 0, z: 0}
230
+ value: {x: 0, y: 0, z: 0}
231
+ length: 0
232
+ modified: 0
233
+ - boneName: RightLeg
234
+ humanName: RightLowerLeg
235
+ limit:
236
+ min: {x: 0, y: 0, z: 0}
237
+ max: {x: 0, y: 0, z: 0}
238
+ value: {x: 0, y: 0, z: 0}
239
+ length: 0
240
+ modified: 0
241
+ - boneName: LeftFoot
242
+ humanName: LeftFoot
243
+ limit:
244
+ min: {x: 0, y: 0, z: 0}
245
+ max: {x: 0, y: 0, z: 0}
246
+ value: {x: 0, y: 0, z: 0}
247
+ length: 0
248
+ modified: 0
249
+ - boneName: RightFoot
250
+ humanName: RightFoot
251
+ limit:
252
+ min: {x: 0, y: 0, z: 0}
253
+ max: {x: 0, y: 0, z: 0}
254
+ value: {x: 0, y: 0, z: 0}
255
+ length: 0
256
+ modified: 0
257
+ - boneName: Spine
258
+ humanName: Spine
259
+ limit:
260
+ min: {x: 0, y: 0, z: 0}
261
+ max: {x: 0, y: 0, z: 0}
262
+ value: {x: 0, y: 0, z: 0}
263
+ length: 0
264
+ modified: 0
265
+ - boneName: Spine1
266
+ humanName: Chest
267
+ limit:
268
+ min: {x: 0, y: 0, z: 0}
269
+ max: {x: 0, y: 0, z: 0}
270
+ value: {x: 0, y: 0, z: 0}
271
+ length: 0
272
+ modified: 0
273
+ - boneName: Neck
274
+ humanName: Neck
275
+ limit:
276
+ min: {x: 0, y: 0, z: 0}
277
+ max: {x: 0, y: 0, z: 0}
278
+ value: {x: 0, y: 0, z: 0}
279
+ length: 0
280
+ modified: 0
281
+ - boneName: Head
282
+ humanName: Head
283
+ limit:
284
+ min: {x: 0, y: 0, z: 0}
285
+ max: {x: 0, y: 0, z: 0}
286
+ value: {x: 0, y: 0, z: 0}
287
+ length: 0
288
+ modified: 0
289
+ - boneName: LeftShoulder
290
+ humanName: LeftShoulder
291
+ limit:
292
+ min: {x: 0, y: 0, z: 0}
293
+ max: {x: 0, y: 0, z: 0}
294
+ value: {x: 0, y: 0, z: 0}
295
+ length: 0
296
+ modified: 0
297
+ - boneName: RightShoulder
298
+ humanName: RightShoulder
299
+ limit:
300
+ min: {x: 0, y: 0, z: 0}
301
+ max: {x: 0, y: 0, z: 0}
302
+ value: {x: 0, y: 0, z: 0}
303
+ length: 0
304
+ modified: 0
305
+ - boneName: LeftArm
306
+ humanName: LeftUpperArm
307
+ limit:
308
+ min: {x: 0, y: 0, z: 0}
309
+ max: {x: 0, y: 0, z: 0}
310
+ value: {x: 0, y: 0, z: 0}
311
+ length: 0
312
+ modified: 0
313
+ - boneName: RightArm
314
+ humanName: RightUpperArm
315
+ limit:
316
+ min: {x: 0, y: 0, z: 0}
317
+ max: {x: 0, y: 0, z: 0}
318
+ value: {x: 0, y: 0, z: 0}
319
+ length: 0
320
+ modified: 0
321
+ - boneName: LeftForeArm
322
+ humanName: LeftLowerArm
323
+ limit:
324
+ min: {x: 0, y: 0, z: 0}
325
+ max: {x: 0, y: 0, z: 0}
326
+ value: {x: 0, y: 0, z: 0}
327
+ length: 0
328
+ modified: 0
329
+ - boneName: RightForeArm
330
+ humanName: RightLowerArm
331
+ limit:
332
+ min: {x: 0, y: 0, z: 0}
333
+ max: {x: 0, y: 0, z: 0}
334
+ value: {x: 0, y: 0, z: 0}
335
+ length: 0
336
+ modified: 0
337
+ - boneName: LeftHand
338
+ humanName: LeftHand
339
+ limit:
340
+ min: {x: 0, y: 0, z: 0}
341
+ max: {x: 0, y: 0, z: 0}
342
+ value: {x: 0, y: 0, z: 0}
343
+ length: 0
344
+ modified: 0
345
+ - boneName: RightHand
346
+ humanName: RightHand
347
+ limit:
348
+ min: {x: 0, y: 0, z: 0}
349
+ max: {x: 0, y: 0, z: 0}
350
+ value: {x: 0, y: 0, z: 0}
351
+ length: 0
352
+ modified: 0
353
+ - boneName: LeftToeBase
354
+ humanName: LeftToes
355
+ limit:
356
+ min: {x: 0, y: 0, z: 0}
357
+ max: {x: 0, y: 0, z: 0}
358
+ value: {x: 0, y: 0, z: 0}
359
+ length: 0
360
+ modified: 0
361
+ - boneName: RightToeBase
362
+ humanName: RightToes
363
+ limit:
364
+ min: {x: 0, y: 0, z: 0}
365
+ max: {x: 0, y: 0, z: 0}
366
+ value: {x: 0, y: 0, z: 0}
367
+ length: 0
368
+ modified: 0
369
+ - boneName: Spine2
370
+ humanName: UpperChest
371
+ limit:
372
+ min: {x: 0, y: 0, z: 0}
373
+ max: {x: 0, y: 0, z: 0}
374
+ value: {x: 0, y: 0, z: 0}
375
+ length: 0
376
+ modified: 0
377
+ skeleton:
378
+ - name: Ghost_cat(Clone)
379
+ parentName:
380
+ position: {x: 0, y: 0, z: 0}
381
+ rotation: {x: 0, y: 0, z: 0, w: 1}
382
+ scale: {x: 1, y: 1, z: 1}
383
+ - name: cat.003
384
+ parentName: Ghost_cat(Clone)
385
+ position: {x: -0, y: 0, z: 0}
386
+ rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067}
387
+ scale: {x: 100, y: 100, z: 100}
388
+ - name: face ext.003
389
+ parentName: Ghost_cat(Clone)
390
+ position: {x: -0, y: 0, z: 0}
391
+ rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067}
392
+ scale: {x: 100, y: 100, z: 100}
393
+ - name: tail.003
394
+ parentName: Ghost_cat(Clone)
395
+ position: {x: -0, y: 0, z: 0}
396
+ rotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067}
397
+ scale: {x: 100, y: 100, z: 100}
398
+ - name: Hips
399
+ parentName: Ghost_cat(Clone)
400
+ position: {x: 0.0010221973, y: 0.5945097, z: -0.014765839}
401
+ rotation: {x: 0.000000024214382, y: -1.1641521e-10, z: 7.275959e-10, w: 1}
402
+ scale: {x: 1, y: 1, z: 0.99999994}
403
+ - name: Spine
404
+ parentName: Hips
405
+ position: {x: -0, y: 0.092253, z: -0.000417}
406
+ rotation: {x: -0.0022619483, y: 3.517918e-10, z: -0.0000000011251617, w: 0.99999744}
407
+ scale: {x: 1, y: 1, z: 0.9999999}
408
+ - name: Spine1
409
+ parentName: Spine
410
+ position: {x: -0, y: 0.10762999, z: 0}
411
+ rotation: {x: -0, y: -0.0000000039640313, z: 0.0000000012972108, w: 1}
412
+ scale: {x: 1, y: 1, z: 1.0000001}
413
+ - name: Spine2
414
+ parentName: Spine1
415
+ position: {x: -0, y: 0.123006, z: 0}
416
+ rotation: {x: 9.313226e-10, y: 0.0000000037272945, z: -4.3425274e-10, w: 1}
417
+ scale: {x: 0.99999994, y: 1, z: 1}
418
+ - name: LeftShoulder
419
+ parentName: Spine2
420
+ position: {x: -0.056149997, y: 0.116881, z: -0.000026}
421
+ rotation: {x: 0.5753965, y: -0.41090643, z: 0.5756823, w: 0.41068798}
422
+ scale: {x: 1.0000002, y: 1.0000004, z: 1.0000001}
423
+ - name: LeftArm
424
+ parentName: LeftShoulder
425
+ position: {x: -0, y: 0.119756, z: 0}
426
+ rotation: {x: -0.13806121, y: 0.000008434058, z: 0.0006216169, w: 0.9904235}
427
+ scale: {x: 1, y: 1, z: 1.0000004}
428
+ - name: LeftForeArm
429
+ parentName: LeftArm
430
+ position: {x: -0, y: 0.279486, z: 0}
431
+ rotation: {x: -0.009301321, y: 0.0000071345135, z: -0.0007702957, w: 0.9999565}
432
+ scale: {x: 1, y: 1.0000004, z: 1.0000005}
433
+ - name: LeftHand
434
+ parentName: LeftForeArm
435
+ position: {x: -0, y: 0.271826, z: 0}
436
+ rotation: {x: 9.313226e-10, y: -0, z: 3.659295e-12, w: 1}
437
+ scale: {x: 1.0000004, y: 1.0000005, z: 1.0000004}
438
+ - name: RightShoulder
439
+ parentName: Spine2
440
+ position: {x: 0.056149997, y: 0.116882, z: -0.00016899999}
441
+ rotation: {x: -0.5747497, y: -0.411304, z: 0.5763239, w: -0.41029558}
442
+ scale: {x: 1, y: 0.9999999, z: 1}
443
+ - name: RightArm
444
+ parentName: RightShoulder
445
+ position: {x: -0, y: 0.119756, z: 0}
446
+ rotation: {x: -0.13805088, y: -0.00034978986, z: 0.0015927553, w: 0.9904238}
447
+ scale: {x: 1, y: 1, z: 1}
448
+ - name: RightForeArm
449
+ parentName: RightArm
450
+ position: {x: -0, y: 0.279486, z: 0}
451
+ rotation: {x: -0.009294091, y: -0.000015579684, z: 0.0016745967, w: 0.9999554}
452
+ scale: {x: 1.0000002, y: 1.0000005, z: 1.0000004}
453
+ - name: RightHand
454
+ parentName: RightForeArm
455
+ position: {x: -0, y: 0.27182502, z: 0}
456
+ rotation: {x: -0, y: -0, z: 2.1628916e-11, w: 1}
457
+ scale: {x: 1.0000002, y: 1.0000004, z: 1.0000002}
458
+ - name: Neck
459
+ parentName: Spine2
460
+ position: {x: -0, y: 0.138381, z: 0}
461
+ rotation: {x: 0.0022619436, y: 2.7648994e-12, z: -0.000000001222358, w: 0.99999744}
462
+ scale: {x: 1.0000001, y: 1, z: 1}
463
+ - name: Head
464
+ parentName: Neck
465
+ position: {x: -0, y: 0.140322, z: 0.0032539999}
466
+ rotation: {x: -0.0000000055879354, y: -0.0000000037252903, z: 7.5670037e-10,
467
+ w: 1}
468
+ scale: {x: 1, y: 1.0000001, z: 1.0000001}
469
+ - name: HeadTop_End
470
+ parentName: Head
471
+ position: {x: -0, y: 0.958855, z: 0.022234}
472
+ rotation: {x: 0, y: -0, z: -0, w: 1}
473
+ scale: {x: 1, y: 1, z: 1}
474
+ - name: LeftUpLeg
475
+ parentName: Hips
476
+ position: {x: -0.112426005, y: -0.051097997, z: 0.0143490005}
477
+ rotation: {x: -0.00055366993, y: 0.018942906, z: 0.99939364, w: 0.029210674}
478
+ scale: {x: 1.0000006, y: 1.0000006, z: 1}
479
+ - name: LeftLeg
480
+ parentName: LeftUpLeg
481
+ position: {x: -0, y: 0.24102, z: 0}
482
+ rotation: {x: -0.097800516, y: -0.0020000497, z: 0.020347865, w: 0.994996}
483
+ scale: {x: 1.0000007, y: 1.0000006, z: 1.0000002}
484
+ - name: LeftFoot
485
+ parentName: LeftLeg
486
+ position: {x: -0, y: 0.18408199, z: 0}
487
+ rotation: {x: 0.4735428, y: -0.024174653, z: 0.013003751, w: 0.880343}
488
+ scale: {x: 1.0000005, y: 1, z: 1.0000004}
489
+ - name: LeftToeBase
490
+ parentName: LeftFoot
491
+ position: {x: -0, y: 0.159798, z: 0}
492
+ rotation: {x: 0.34804654, y: 0.02702544, z: -0.010038203, w: 0.9370339}
493
+ scale: {x: 1.0000006, y: 1.0000007, z: 1.0000001}
494
+ - name: LeftToe_End
495
+ parentName: LeftToeBase
496
+ position: {x: -0, y: 0.057188, z: 0}
497
+ rotation: {x: 0, y: -0, z: -0, w: 1}
498
+ scale: {x: 1, y: 1, z: 1}
499
+ - name: RightUpLeg
500
+ parentName: Hips
501
+ position: {x: 0.112426005, y: -0.051097997, z: 0.015149999}
502
+ rotation: {x: 0.00026821482, y: 0.009171763, z: 0.9995306, w: -0.029230705}
503
+ scale: {x: 1.0000008, y: 1.0000008, z: 1.0000001}
504
+ - name: RightLeg
505
+ parentName: RightUpLeg
506
+ position: {x: -0, y: 0.240888, z: 0}
507
+ rotation: {x: -0.07580339, y: 0.0015541232, z: -0.020438919, w: 0.9969121}
508
+ scale: {x: 1.0000001, y: 1, z: 1.0000002}
509
+ - name: RightFoot
510
+ parentName: RightLeg
511
+ position: {x: -0, y: 0.183421, z: 0}
512
+ rotation: {x: 0.45519927, y: 0.02543962, z: -0.013012329, w: 0.88993096}
513
+ scale: {x: 1.0000005, y: 1.0000002, z: 1.0000006}
514
+ - name: RightToeBase
515
+ parentName: RightFoot
516
+ position: {x: -0, y: 0.15692899, z: 0}
517
+ rotation: {x: 0.35628724, y: -0.028571181, z: 0.010900317, w: 0.933876}
518
+ scale: {x: 1.0000007, y: 1.0000004, z: 1.0000001}
519
+ - name: RightToe_End
520
+ parentName: RightToeBase
521
+ position: {x: -0, y: 0.058505997, z: 0}
522
+ rotation: {x: 0, y: -0, z: -0, w: 1}
523
+ scale: {x: 1, y: 1, z: 1}
524
+ armTwist: 0.5
525
+ foreArmTwist: 0.5
526
+ upperLegTwist: 0.5
527
+ legTwist: 0.5
528
+ armStretch: 0.05
529
+ legStretch: 0.05
530
+ feetSpacing: 0
531
+ globalScale: 1
532
+ rootMotionBoneName:
533
+ hasTranslationDoF: 0
534
+ hasExtraRoot: 1
535
+ skeletonHasParents: 1
536
+ lastHumanDescriptionAvatarSource: {instanceID: 0}
537
+ autoGenerateAvatarMappingIfUnspecified: 1
538
+ animationType: 3
539
+ humanoidOversampling: 1
540
+ avatarSetup: 1
541
+ addHumanoidExtraRootOnlyWhenUsingAvatar: 1
542
+ importBlendShapeDeformPercent: 1
543
+ remapMaterialsIfMaterialImportModeIsNone: 0
544
+ additionalBone: 0
545
+ userData:
546
+ assetBundleName:
547
+ assetBundleVariant:
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: 9b7ba14c31189dd4e9196c0172cb4564
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "MooseRunner.Demo.RealUseCase",
3
+ "rootNamespace": "",
4
+ "references": [
5
+ "UnityEngine.TestRunner",
6
+ "MooseRunner.Demo.Support",
7
+ "UniTask",
8
+ "MooseRunner.helper",
9
+ "MooseRunner.Runtime"
10
+ ],
11
+ "includePlatforms": [],
12
+ "excludePlatforms": [],
13
+ "allowUnsafeCode": false,
14
+ "precompiledReferences": [
15
+ "nunit.framework.dll"
16
+ ],
17
+ "autoReferenced": false,
18
+ "defineConstraints": [
19
+ "UNITY_INCLUDE_TESTS"
20
+ ],
21
+ "versionDefines": [
22
+ {
23
+ "name": "com.cysharp.unitask",
24
+ "expression": "",
25
+ "define": "UNITASK_PRESENT"
26
+ }
27
+ ],
28
+ "noEngineReferences": false
29
+ }
@@ -0,0 +1,7 @@
1
+ fileFormatVersion: 2
2
+ guid: 1ec41473bf988874e85270b0983797d5
3
+ AssemblyDefinitionImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant: