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,598 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!29 &1
4
+ OcclusionCullingSettings:
5
+ m_ObjectHideFlags: 0
6
+ serializedVersion: 2
7
+ m_OcclusionBakeSettings:
8
+ smallestOccluder: 5
9
+ smallestHole: 0.25
10
+ backfaceThreshold: 100
11
+ m_SceneGUID: 00000000000000000000000000000000
12
+ m_OcclusionCullingData: {fileID: 0}
13
+ --- !u!104 &2
14
+ RenderSettings:
15
+ m_ObjectHideFlags: 0
16
+ serializedVersion: 9
17
+ m_Fog: 0
18
+ m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
19
+ m_FogMode: 3
20
+ m_FogDensity: 0.01
21
+ m_LinearFogStart: 0
22
+ m_LinearFogEnd: 300
23
+ m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
24
+ m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
25
+ m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
26
+ m_AmbientIntensity: 1
27
+ m_AmbientMode: 0
28
+ m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
29
+ m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0}
30
+ m_HaloStrength: 0.5
31
+ m_FlareStrength: 1
32
+ m_FlareFadeSpeed: 3
33
+ m_HaloTexture: {fileID: 0}
34
+ m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
35
+ m_DefaultReflectionMode: 0
36
+ m_DefaultReflectionResolution: 128
37
+ m_ReflectionBounces: 1
38
+ m_ReflectionIntensity: 1
39
+ m_CustomReflection: {fileID: 0}
40
+ m_Sun: {fileID: 0}
41
+ m_UseRadianceAmbientProbe: 0
42
+ --- !u!157 &3
43
+ LightmapSettings:
44
+ m_ObjectHideFlags: 0
45
+ serializedVersion: 12
46
+ m_GIWorkflowMode: 1
47
+ m_GISettings:
48
+ serializedVersion: 2
49
+ m_BounceScale: 1
50
+ m_IndirectOutputScale: 1
51
+ m_AlbedoBoost: 1
52
+ m_EnvironmentLightingMode: 0
53
+ m_EnableBakedLightmaps: 1
54
+ m_EnableRealtimeLightmaps: 0
55
+ m_LightmapEditorSettings:
56
+ serializedVersion: 12
57
+ m_Resolution: 2
58
+ m_BakeResolution: 40
59
+ m_AtlasSize: 1024
60
+ m_AO: 0
61
+ m_AOMaxDistance: 1
62
+ m_CompAOExponent: 1
63
+ m_CompAOExponentDirect: 0
64
+ m_ExtractAmbientOcclusion: 0
65
+ m_Padding: 2
66
+ m_LightmapParameters: {fileID: 0}
67
+ m_LightmapsBakeMode: 1
68
+ m_TextureCompression: 1
69
+ m_FinalGather: 0
70
+ m_FinalGatherFiltering: 1
71
+ m_FinalGatherRayCount: 256
72
+ m_ReflectionCompression: 2
73
+ m_MixedBakeMode: 2
74
+ m_BakeBackend: 1
75
+ m_PVRSampling: 1
76
+ m_PVRDirectSampleCount: 32
77
+ m_PVRSampleCount: 512
78
+ m_PVRBounces: 2
79
+ m_PVREnvironmentSampleCount: 256
80
+ m_PVREnvironmentReferencePointCount: 2048
81
+ m_PVRFilteringMode: 1
82
+ m_PVRDenoiserTypeDirect: 1
83
+ m_PVRDenoiserTypeIndirect: 1
84
+ m_PVRDenoiserTypeAO: 1
85
+ m_PVRFilterTypeDirect: 0
86
+ m_PVRFilterTypeIndirect: 0
87
+ m_PVRFilterTypeAO: 0
88
+ m_PVREnvironmentMIS: 1
89
+ m_PVRCulling: 1
90
+ m_PVRFilteringGaussRadiusDirect: 1
91
+ m_PVRFilteringGaussRadiusIndirect: 5
92
+ m_PVRFilteringGaussRadiusAO: 2
93
+ m_PVRFilteringAtrousPositionSigmaDirect: 0.5
94
+ m_PVRFilteringAtrousPositionSigmaIndirect: 2
95
+ m_PVRFilteringAtrousPositionSigmaAO: 1
96
+ m_ExportTrainingData: 0
97
+ m_TrainingDataDestination: TrainingData
98
+ m_LightProbeSampleCountMultiplier: 4
99
+ m_LightingDataAsset: {fileID: 0}
100
+ m_LightingSettings: {fileID: 0}
101
+ --- !u!196 &4
102
+ NavMeshSettings:
103
+ serializedVersion: 2
104
+ m_ObjectHideFlags: 0
105
+ m_BuildSettings:
106
+ serializedVersion: 3
107
+ agentTypeID: 0
108
+ agentRadius: 0.5
109
+ agentHeight: 2
110
+ agentSlope: 45
111
+ agentClimb: 0.4
112
+ ledgeDropHeight: 0
113
+ maxJumpAcrossDistance: 0
114
+ minRegionArea: 2
115
+ manualCellSize: 0
116
+ cellSize: 0.16666667
117
+ manualTileSize: 0
118
+ tileSize: 256
119
+ buildHeightMesh: 0
120
+ maxJobWorkers: 0
121
+ preserveTilesOutsideBounds: 0
122
+ debug:
123
+ m_Flags: 0
124
+ m_NavMeshData: {fileID: 0}
125
+ --- !u!1 &1367343017
126
+ GameObject:
127
+ m_ObjectHideFlags: 0
128
+ m_CorrespondingSourceObject: {fileID: 0}
129
+ m_PrefabInstance: {fileID: 0}
130
+ m_PrefabAsset: {fileID: 0}
131
+ serializedVersion: 6
132
+ m_Component:
133
+ - component: {fileID: 1367343021}
134
+ - component: {fileID: 1367343020}
135
+ - component: {fileID: 1367343019}
136
+ - component: {fileID: 1367343018}
137
+ m_Layer: 0
138
+ m_Name: Background
139
+ m_TagString: Untagged
140
+ m_Icon: {fileID: 0}
141
+ m_NavMeshLayer: 0
142
+ m_StaticEditorFlags: 0
143
+ m_IsActive: 1
144
+ --- !u!64 &1367343018
145
+ MeshCollider:
146
+ m_ObjectHideFlags: 0
147
+ m_CorrespondingSourceObject: {fileID: 0}
148
+ m_PrefabInstance: {fileID: 0}
149
+ m_PrefabAsset: {fileID: 0}
150
+ m_GameObject: {fileID: 1367343017}
151
+ m_Material: {fileID: 0}
152
+ m_IncludeLayers:
153
+ serializedVersion: 2
154
+ m_Bits: 0
155
+ m_ExcludeLayers:
156
+ serializedVersion: 2
157
+ m_Bits: 0
158
+ m_LayerOverridePriority: 0
159
+ m_IsTrigger: 0
160
+ m_ProvidesContacts: 0
161
+ m_Enabled: 1
162
+ serializedVersion: 5
163
+ m_Convex: 0
164
+ m_CookingOptions: 30
165
+ m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0}
166
+ --- !u!23 &1367343019
167
+ MeshRenderer:
168
+ m_ObjectHideFlags: 0
169
+ m_CorrespondingSourceObject: {fileID: 0}
170
+ m_PrefabInstance: {fileID: 0}
171
+ m_PrefabAsset: {fileID: 0}
172
+ m_GameObject: {fileID: 1367343017}
173
+ m_Enabled: 1
174
+ m_CastShadows: 1
175
+ m_ReceiveShadows: 1
176
+ m_DynamicOccludee: 1
177
+ m_StaticShadowCaster: 0
178
+ m_MotionVectors: 1
179
+ m_LightProbeUsage: 1
180
+ m_ReflectionProbeUsage: 1
181
+ m_RayTracingMode: 2
182
+ m_RayTraceProcedural: 0
183
+ m_RenderingLayerMask: 1
184
+ m_RendererPriority: 0
185
+ m_Materials:
186
+ - {fileID: 2100000, guid: 618166499ed942a41b5ae21c032ed2ff, type: 2}
187
+ m_StaticBatchInfo:
188
+ firstSubMesh: 0
189
+ subMeshCount: 0
190
+ m_StaticBatchRoot: {fileID: 0}
191
+ m_ProbeAnchor: {fileID: 0}
192
+ m_LightProbeVolumeOverride: {fileID: 0}
193
+ m_ScaleInLightmap: 1
194
+ m_ReceiveGI: 1
195
+ m_PreserveUVs: 0
196
+ m_IgnoreNormalsForChartDetection: 0
197
+ m_ImportantGI: 0
198
+ m_StitchLightmapSeams: 1
199
+ m_SelectedEditorRenderState: 3
200
+ m_MinimumChartSize: 4
201
+ m_AutoUVMaxDistance: 0.5
202
+ m_AutoUVMaxAngle: 89
203
+ m_LightmapParameters: {fileID: 0}
204
+ m_SortingLayerID: 0
205
+ m_SortingLayer: 0
206
+ m_SortingOrder: 0
207
+ m_AdditionalVertexStreams: {fileID: 0}
208
+ --- !u!33 &1367343020
209
+ MeshFilter:
210
+ m_ObjectHideFlags: 0
211
+ m_CorrespondingSourceObject: {fileID: 0}
212
+ m_PrefabInstance: {fileID: 0}
213
+ m_PrefabAsset: {fileID: 0}
214
+ m_GameObject: {fileID: 1367343017}
215
+ m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0}
216
+ --- !u!4 &1367343021
217
+ Transform:
218
+ m_ObjectHideFlags: 0
219
+ m_CorrespondingSourceObject: {fileID: 0}
220
+ m_PrefabInstance: {fileID: 0}
221
+ m_PrefabAsset: {fileID: 0}
222
+ m_GameObject: {fileID: 1367343017}
223
+ serializedVersion: 2
224
+ m_LocalRotation: {x: 0.5, y: 0.5, z: -0.5, w: 0.5}
225
+ m_LocalPosition: {x: -3.99, y: 4.92, z: 0.41}
226
+ m_LocalScale: {x: 3, y: 1, z: 3}
227
+ m_ConstrainProportionsScale: 0
228
+ m_Children: []
229
+ m_Father: {fileID: 0}
230
+ m_LocalEulerAnglesHint: {x: 90, y: 0, z: -90}
231
+ --- !u!1 &1516912472
232
+ GameObject:
233
+ m_ObjectHideFlags: 0
234
+ m_CorrespondingSourceObject: {fileID: 0}
235
+ m_PrefabInstance: {fileID: 0}
236
+ m_PrefabAsset: {fileID: 0}
237
+ serializedVersion: 6
238
+ m_Component:
239
+ - component: {fileID: 1516912475}
240
+ - component: {fileID: 1516912474}
241
+ - component: {fileID: 1516912473}
242
+ - component: {fileID: 1516912476}
243
+ m_Layer: 0
244
+ m_Name: Main Camera
245
+ m_TagString: MainCamera
246
+ m_Icon: {fileID: 0}
247
+ m_NavMeshLayer: 0
248
+ m_StaticEditorFlags: 0
249
+ m_IsActive: 1
250
+ --- !u!81 &1516912473
251
+ AudioListener:
252
+ m_ObjectHideFlags: 0
253
+ m_CorrespondingSourceObject: {fileID: 0}
254
+ m_PrefabInstance: {fileID: 0}
255
+ m_PrefabAsset: {fileID: 0}
256
+ m_GameObject: {fileID: 1516912472}
257
+ m_Enabled: 1
258
+ --- !u!20 &1516912474
259
+ Camera:
260
+ m_ObjectHideFlags: 0
261
+ m_CorrespondingSourceObject: {fileID: 0}
262
+ m_PrefabInstance: {fileID: 0}
263
+ m_PrefabAsset: {fileID: 0}
264
+ m_GameObject: {fileID: 1516912472}
265
+ m_Enabled: 1
266
+ serializedVersion: 2
267
+ m_ClearFlags: 1
268
+ m_BackGroundColor: {r: 0, g: 0, b: 0, a: 1}
269
+ m_projectionMatrixMode: 1
270
+ m_GateFitMode: 2
271
+ m_FOVAxisMode: 0
272
+ m_Iso: 200
273
+ m_ShutterSpeed: 0.005
274
+ m_Aperture: 16
275
+ m_FocusDistance: 10
276
+ m_FocalLength: 50
277
+ m_BladeCount: 5
278
+ m_Curvature: {x: 2, y: 11}
279
+ m_BarrelClipping: 0.25
280
+ m_Anamorphism: 0
281
+ m_SensorSize: {x: 36, y: 24}
282
+ m_LensShift: {x: 0, y: 0}
283
+ m_NormalizedViewPortRect:
284
+ serializedVersion: 2
285
+ x: 0
286
+ y: 0
287
+ width: 1
288
+ height: 1
289
+ near clip plane: 0.3
290
+ far clip plane: 1000
291
+ field of view: 60
292
+ orthographic: 0
293
+ orthographic size: 5
294
+ m_Depth: -1
295
+ m_CullingMask:
296
+ serializedVersion: 2
297
+ m_Bits: 4294967295
298
+ m_RenderingPath: -1
299
+ m_TargetTexture: {fileID: 0}
300
+ m_TargetDisplay: 0
301
+ m_TargetEye: 3
302
+ m_HDR: 1
303
+ m_AllowMSAA: 1
304
+ m_AllowDynamicResolution: 0
305
+ m_ForceIntoRT: 0
306
+ m_OcclusionCulling: 1
307
+ m_StereoConvergence: 10
308
+ m_StereoSeparation: 0.022
309
+ --- !u!4 &1516912475
310
+ Transform:
311
+ m_ObjectHideFlags: 0
312
+ m_CorrespondingSourceObject: {fileID: 0}
313
+ m_PrefabInstance: {fileID: 0}
314
+ m_PrefabAsset: {fileID: 0}
315
+ m_GameObject: {fileID: 1516912472}
316
+ serializedVersion: 2
317
+ m_LocalRotation: {x: 0.018303571, y: -0.7068699, z: 0.018303571, w: 0.7068699}
318
+ m_LocalPosition: {x: 9.8, y: 1.44, z: -0.43}
319
+ m_LocalScale: {x: 1, y: 1, z: 1}
320
+ m_ConstrainProportionsScale: 0
321
+ m_Children: []
322
+ m_Father: {fileID: 0}
323
+ m_LocalEulerAnglesHint: {x: 2.967, y: -90, z: 0}
324
+ --- !u!114 &1516912476
325
+ MonoBehaviour:
326
+ m_ObjectHideFlags: 0
327
+ m_CorrespondingSourceObject: {fileID: 0}
328
+ m_PrefabInstance: {fileID: 0}
329
+ m_PrefabAsset: {fileID: 0}
330
+ m_GameObject: {fileID: 1516912472}
331
+ m_Enabled: 1
332
+ m_EditorHideFlags: 0
333
+ m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3}
334
+ m_Name:
335
+ m_EditorClassIdentifier:
336
+ m_RenderShadows: 1
337
+ m_RequiresDepthTextureOption: 2
338
+ m_RequiresOpaqueTextureOption: 2
339
+ m_CameraType: 0
340
+ m_Cameras: []
341
+ m_RendererIndex: -1
342
+ m_VolumeLayerMask:
343
+ serializedVersion: 2
344
+ m_Bits: 1
345
+ m_VolumeTrigger: {fileID: 0}
346
+ m_VolumeFrameworkUpdateModeOption: 2
347
+ m_RenderPostProcessing: 0
348
+ m_Antialiasing: 0
349
+ m_AntialiasingQuality: 2
350
+ m_StopNaN: 0
351
+ m_Dithering: 0
352
+ m_ClearDepth: 1
353
+ m_AllowXRRendering: 1
354
+ m_AllowHDROutput: 1
355
+ m_UseScreenCoordOverride: 0
356
+ m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0}
357
+ m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0}
358
+ m_RequiresDepthTexture: 0
359
+ m_RequiresColorTexture: 0
360
+ m_Version: 2
361
+ m_TaaSettings:
362
+ m_Quality: 3
363
+ m_FrameInfluence: 0.1
364
+ m_JitterScale: 1
365
+ m_MipBias: 0
366
+ m_VarianceClampScale: 0.9
367
+ m_ContrastAdaptiveSharpening: 0
368
+ --- !u!1 &1640009483
369
+ GameObject:
370
+ m_ObjectHideFlags: 0
371
+ m_CorrespondingSourceObject: {fileID: 0}
372
+ m_PrefabInstance: {fileID: 0}
373
+ m_PrefabAsset: {fileID: 0}
374
+ serializedVersion: 6
375
+ m_Component:
376
+ - component: {fileID: 1640009485}
377
+ - component: {fileID: 1640009484}
378
+ - component: {fileID: 1640009486}
379
+ m_Layer: 0
380
+ m_Name: Directional Light
381
+ m_TagString: Untagged
382
+ m_Icon: {fileID: 0}
383
+ m_NavMeshLayer: 0
384
+ m_StaticEditorFlags: 0
385
+ m_IsActive: 1
386
+ --- !u!108 &1640009484
387
+ Light:
388
+ m_ObjectHideFlags: 0
389
+ m_CorrespondingSourceObject: {fileID: 0}
390
+ m_PrefabInstance: {fileID: 0}
391
+ m_PrefabAsset: {fileID: 0}
392
+ m_GameObject: {fileID: 1640009483}
393
+ m_Enabled: 1
394
+ serializedVersion: 10
395
+ m_Type: 1
396
+ m_Shape: 0
397
+ m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1}
398
+ m_Intensity: 1
399
+ m_Range: 10
400
+ m_SpotAngle: 30
401
+ m_InnerSpotAngle: 21.80208
402
+ m_CookieSize: 10
403
+ m_Shadows:
404
+ m_Type: 2
405
+ m_Resolution: -1
406
+ m_CustomResolution: -1
407
+ m_Strength: 1
408
+ m_Bias: 0.05
409
+ m_NormalBias: 0.4
410
+ m_NearPlane: 0.2
411
+ m_CullingMatrixOverride:
412
+ e00: 1
413
+ e01: 0
414
+ e02: 0
415
+ e03: 0
416
+ e10: 0
417
+ e11: 1
418
+ e12: 0
419
+ e13: 0
420
+ e20: 0
421
+ e21: 0
422
+ e22: 1
423
+ e23: 0
424
+ e30: 0
425
+ e31: 0
426
+ e32: 0
427
+ e33: 1
428
+ m_UseCullingMatrixOverride: 0
429
+ m_Cookie: {fileID: 0}
430
+ m_DrawHalo: 0
431
+ m_Flare: {fileID: 0}
432
+ m_RenderMode: 0
433
+ m_CullingMask:
434
+ serializedVersion: 2
435
+ m_Bits: 4294967295
436
+ m_RenderingLayerMask: 1
437
+ m_Lightmapping: 4
438
+ m_LightShadowCasterMode: 0
439
+ m_AreaSize: {x: 1, y: 1}
440
+ m_BounceIntensity: 1
441
+ m_ColorTemperature: 6570
442
+ m_UseColorTemperature: 0
443
+ m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
444
+ m_UseBoundingSphereOverride: 0
445
+ m_UseViewFrustumForShadowCasterCull: 1
446
+ m_ShadowRadius: 0
447
+ m_ShadowAngle: 0
448
+ --- !u!4 &1640009485
449
+ Transform:
450
+ m_ObjectHideFlags: 0
451
+ m_CorrespondingSourceObject: {fileID: 0}
452
+ m_PrefabInstance: {fileID: 0}
453
+ m_PrefabAsset: {fileID: 0}
454
+ m_GameObject: {fileID: 1640009483}
455
+ serializedVersion: 2
456
+ m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261}
457
+ m_LocalPosition: {x: 0, y: 3, z: 0}
458
+ m_LocalScale: {x: 1, y: 1, z: 1}
459
+ m_ConstrainProportionsScale: 0
460
+ m_Children: []
461
+ m_Father: {fileID: 0}
462
+ m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0}
463
+ --- !u!114 &1640009486
464
+ MonoBehaviour:
465
+ m_ObjectHideFlags: 0
466
+ m_CorrespondingSourceObject: {fileID: 0}
467
+ m_PrefabInstance: {fileID: 0}
468
+ m_PrefabAsset: {fileID: 0}
469
+ m_GameObject: {fileID: 1640009483}
470
+ m_Enabled: 1
471
+ m_EditorHideFlags: 0
472
+ m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3}
473
+ m_Name:
474
+ m_EditorClassIdentifier:
475
+ m_Version: 3
476
+ m_UsePipelineSettings: 1
477
+ m_AdditionalLightsShadowResolutionTier: 2
478
+ m_LightLayerMask: 1
479
+ m_RenderingLayers: 1
480
+ m_CustomShadowLayers: 0
481
+ m_ShadowLayerMask: 1
482
+ m_ShadowRenderingLayers: 1
483
+ m_LightCookieSize: {x: 1, y: 1}
484
+ m_LightCookieOffset: {x: 0, y: 0}
485
+ m_SoftShadowQuality: 0
486
+ --- !u!1 &1835796994
487
+ GameObject:
488
+ m_ObjectHideFlags: 0
489
+ m_CorrespondingSourceObject: {fileID: 0}
490
+ m_PrefabInstance: {fileID: 0}
491
+ m_PrefabAsset: {fileID: 0}
492
+ serializedVersion: 6
493
+ m_Component:
494
+ - component: {fileID: 1835796998}
495
+ - component: {fileID: 1835796997}
496
+ - component: {fileID: 1835796996}
497
+ - component: {fileID: 1835796995}
498
+ m_Layer: 0
499
+ m_Name: Ground
500
+ m_TagString: Untagged
501
+ m_Icon: {fileID: 0}
502
+ m_NavMeshLayer: 0
503
+ m_StaticEditorFlags: 0
504
+ m_IsActive: 1
505
+ --- !u!65 &1835796995
506
+ BoxCollider:
507
+ m_ObjectHideFlags: 0
508
+ m_CorrespondingSourceObject: {fileID: 0}
509
+ m_PrefabInstance: {fileID: 0}
510
+ m_PrefabAsset: {fileID: 0}
511
+ m_GameObject: {fileID: 1835796994}
512
+ m_Material: {fileID: 0}
513
+ m_IncludeLayers:
514
+ serializedVersion: 2
515
+ m_Bits: 0
516
+ m_ExcludeLayers:
517
+ serializedVersion: 2
518
+ m_Bits: 0
519
+ m_LayerOverridePriority: 0
520
+ m_IsTrigger: 0
521
+ m_ProvidesContacts: 0
522
+ m_Enabled: 1
523
+ serializedVersion: 3
524
+ m_Size: {x: 1, y: 1, z: 1}
525
+ m_Center: {x: 0, y: 0, z: 0}
526
+ --- !u!23 &1835796996
527
+ MeshRenderer:
528
+ m_ObjectHideFlags: 0
529
+ m_CorrespondingSourceObject: {fileID: 0}
530
+ m_PrefabInstance: {fileID: 0}
531
+ m_PrefabAsset: {fileID: 0}
532
+ m_GameObject: {fileID: 1835796994}
533
+ m_Enabled: 1
534
+ m_CastShadows: 0
535
+ m_ReceiveShadows: 1
536
+ m_DynamicOccludee: 1
537
+ m_StaticShadowCaster: 0
538
+ m_MotionVectors: 1
539
+ m_LightProbeUsage: 1
540
+ m_ReflectionProbeUsage: 1
541
+ m_RayTracingMode: 2
542
+ m_RayTraceProcedural: 0
543
+ m_RenderingLayerMask: 1
544
+ m_RendererPriority: 0
545
+ m_Materials:
546
+ - {fileID: 2100000, guid: 40be0a0f9fc9d14429d2dd45e35c11f0, type: 2}
547
+ m_StaticBatchInfo:
548
+ firstSubMesh: 0
549
+ subMeshCount: 0
550
+ m_StaticBatchRoot: {fileID: 0}
551
+ m_ProbeAnchor: {fileID: 0}
552
+ m_LightProbeVolumeOverride: {fileID: 0}
553
+ m_ScaleInLightmap: 1
554
+ m_ReceiveGI: 1
555
+ m_PreserveUVs: 0
556
+ m_IgnoreNormalsForChartDetection: 0
557
+ m_ImportantGI: 0
558
+ m_StitchLightmapSeams: 1
559
+ m_SelectedEditorRenderState: 3
560
+ m_MinimumChartSize: 4
561
+ m_AutoUVMaxDistance: 0.5
562
+ m_AutoUVMaxAngle: 89
563
+ m_LightmapParameters: {fileID: 0}
564
+ m_SortingLayerID: 0
565
+ m_SortingLayer: 0
566
+ m_SortingOrder: 0
567
+ m_AdditionalVertexStreams: {fileID: 0}
568
+ --- !u!33 &1835796997
569
+ MeshFilter:
570
+ m_ObjectHideFlags: 0
571
+ m_CorrespondingSourceObject: {fileID: 0}
572
+ m_PrefabInstance: {fileID: 0}
573
+ m_PrefabAsset: {fileID: 0}
574
+ m_GameObject: {fileID: 1835796994}
575
+ m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
576
+ --- !u!4 &1835796998
577
+ Transform:
578
+ m_ObjectHideFlags: 0
579
+ m_CorrespondingSourceObject: {fileID: 0}
580
+ m_PrefabInstance: {fileID: 0}
581
+ m_PrefabAsset: {fileID: 0}
582
+ m_GameObject: {fileID: 1835796994}
583
+ serializedVersion: 2
584
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
585
+ m_LocalPosition: {x: 0, y: -0.52, z: 3}
586
+ m_LocalScale: {x: 4, y: 1, z: 8}
587
+ m_ConstrainProportionsScale: 0
588
+ m_Children: []
589
+ m_Father: {fileID: 0}
590
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
591
+ --- !u!1660057539 &9223372036854775807
592
+ SceneRoots:
593
+ m_ObjectHideFlags: 0
594
+ m_Roots:
595
+ - {fileID: 1516912475}
596
+ - {fileID: 1640009485}
597
+ - {fileID: 1835796998}
598
+ - {fileID: 1367343021}
@@ -0,0 +1,7 @@
1
+ fileFormatVersion: 2
2
+ guid: 942eb227ebf4c794d9d78fdc62e55f50
3
+ DefaultImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
@@ -0,0 +1,8 @@
1
+ fileFormatVersion: 2
2
+ guid: 877fb46bd6a08ae49af9354a00bc1a2b
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -0,0 +1,37 @@
1
+ # Third Party Notices
2
+
3
+ MooseRunner depends on the following third-party components. Each is
4
+ distributed under its own license, summarized below. The full text of each
5
+ license is available at the linked source.
6
+
7
+ ## Customer-installed dependencies
8
+
9
+ These are declared as UPM `dependencies` in `package.json` and installed by
10
+ the Package Manager into the customer's project. We do not redistribute
11
+ their binaries.
12
+
13
+ - **Newtonsoft.Json** (`com.unity.nuget.newtonsoft-json`) — MIT License.
14
+ https://github.com/JamesNK/Newtonsoft.Json
15
+ - **UniTask** (`com.cysharp.unitask`) — MIT License.
16
+ https://github.com/Cysharp/UniTask
17
+
18
+ ## Optional integrations
19
+
20
+ If the customer has any of the following installed, MooseRunner integrates
21
+ with them. We do not redistribute their binaries.
22
+
23
+ - **Hot Reload for Unity** (`com.singularitygroup.hotreload`) — commercial,
24
+ Singularity Group. https://hotreload.net
25
+ - **Unity Recorder** (`com.unity.recorder`) — Unity Companion License.
26
+ https://docs.unity3d.com/Packages/com.unity.recorder@latest
27
+ - **ParrelSync** (`com.veriorpies.parrelsync`) — MIT License.
28
+ https://github.com/VeriorPies/ParrelSync
29
+ - **MCP-for-Unity** (`com.coplaydev.unity-mcp`) — used only as a defensive
30
+ hook (CloneBootstrapper prevents MCP auto-start in ParrelSync clones).
31
+ https://github.com/CoplayDev/unity-mcp
32
+
33
+ ## NUnit
34
+
35
+ Tests use NUnit 3 via Unity's Test Framework
36
+ (`com.unity.test-framework`) — MIT License.
37
+ https://github.com/nunit/nunit
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "com.valectric.mooserunner",
3
+ "version": "2.1.4",
4
+ "displayName": "MooseRunner",
5
+ "description": "MooseRunner boosts PlayMode testing with Hot Reload, MCP for AIs, timescale control, and Task support. It enables rapid iteration, auto test reruns, full documentation and dedicated support.",
6
+ "unity": "6000.2",
7
+ "license": "UNLICENSED",
8
+ "homepage": "https://www.mooserunner.com",
9
+ "bugs": {
10
+ "url": "https://www.mooserunner.com/#faq",
11
+ "email": "support@mooserunner.com"
12
+ },
13
+ "dependencies": {
14
+ "com.unity.nuget.newtonsoft-json": "3.2.1",
15
+ "com.cysharp.unitask": "2.5.10"
16
+ },
17
+ "keywords": [
18
+ "Unity",
19
+ "ai",
20
+ "Test Automation",
21
+ "mcp",
22
+ "model-context-protocol",
23
+ "HotReload",
24
+ "MooseRunner"
25
+ ],
26
+ "author": {
27
+ "name": "Valectric",
28
+ "email": "support@mooserunner.com",
29
+ "url": "https://www.mooserunner.com"
30
+ },
31
+ "samples": [
32
+ {
33
+ "displayName": "Demos",
34
+ "description": "Reference test patterns: usage, error handling, async, ordering, real use case.",
35
+ "path": "Samples~/Demos"
36
+ }
37
+ ]
38
+ }