com.valectric.mooserunner 2.1.21 → 2.1.23
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.
- package/CHANGELOG.md +23 -23
- package/CLI~/mooserunnerCli.exe +0 -0
- package/CLI~/mooserunnerCliDaemon.exe +0 -0
- package/Editor/HotReloadIntegration/MooseRunner.HotReloadIntegration.dll +0 -0
- package/Editor/HotReloadIntegration/MooseRunner.HotReloadIntegration.dll.meta +32 -32
- package/Editor/MooseRunner.Editor.asmdef +15 -15
- package/Editor/MooseRunner.Editor.asmdef.meta +6 -6
- package/Editor/MooseRunner.Internal.Editor.dll +0 -0
- package/Editor/MooseRunner.Internal.Editor.dll.meta +32 -32
- package/Editor/MooseRunner.Worker.dll +0 -0
- package/Editor/MooseRunner.Worker.dll.meta +32 -32
- package/Editor/SessionRecorder/MooseRunner.SessionRecorder.dll +0 -0
- package/Editor/SessionRecorder/MooseRunner.SessionRecorder.dll.meta +32 -32
- package/Editor/_WrapperStub.cs.meta +10 -10
- package/LICENSE.md +28 -28
- package/Runtime/MooseRunner.Helpers.Runtime.dll +0 -0
- package/Runtime/MooseRunner.Helpers.Runtime.dll.meta +26 -26
- package/Runtime/MooseRunner.Internal.dll +0 -0
- package/Runtime/MooseRunner.Internal.dll.meta +26 -26
- package/Runtime/MooseRunner.Multiplaytest.Types.dll +0 -0
- package/Runtime/MooseRunner.Multiplaytest.Types.dll.meta +26 -26
- package/Runtime/MooseRunner.Runtime.asmdef +15 -15
- package/Runtime/MooseRunner.Runtime.asmdef.meta +6 -6
- package/Runtime/MooseRunner.SessionRecorder.Public.dll +0 -0
- package/Runtime/MooseRunner.SessionRecorder.Public.dll.meta +26 -26
- package/Runtime/MooseRunner.SessionRecorder.Runtime.dll +0 -0
- package/Runtime/MooseRunner.SessionRecorder.Runtime.dll.meta +26 -26
- package/Runtime/MooseRunner.dll +0 -0
- package/Runtime/MooseRunner.dll.meta +26 -26
- package/Runtime/_WrapperStub.cs.meta +10 -10
- package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/BatchCancellationTests.cs +37 -37
- package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/CancellationTokenTests.cs +186 -186
- package/Samples~/Demos/MooseRunner.Demo.CancellationTokens.Tests/SetupTeardownCancellationTests.cs +85 -85
- package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/LogEntry.cs +51 -51
- package/Samples~/Demos/MooseRunner.Demo.Flow.TestSupport/LogFileParser.cs +69 -69
- package/Samples~/Demos/MooseRunner.Demo.OrderAttribute/MethodOrderAttributeTests.cs +62 -62
- package/Samples~/Demos/MooseRunner.Demo.RealUseCase/Enemy.cs +100 -100
- package/Samples~/Demos/MooseRunner.Demo.RealUseCase/FireComponent.cs +18 -18
- package/Samples~/Demos/MooseRunner.Demo.Support/MessageDisplayManager.cs +291 -291
- package/Samples~/Demos/MooseRunner.Demo.Support/MooseRunnerSampleVersionCheck.cs +57 -57
- package/Samples~/Demos/MooseRunner.Demo.Support/MooseRunnerSampleVersionCheck.cs.meta +1 -1
- package/Samples~/Demos/MooseRunner.Demo.Tests/ExplicitAttributeTests.cs +36 -36
- package/Samples~/Demos/MooseRunner.Demo.Tests/InstanceHandlingVerificationTest.cs +99 -99
- package/Third Party Notices.md +37 -37
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to MooseRunner are documented in this file.
|
|
4
|
-
|
|
5
|
-
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
-
|
|
8
|
-
## [Unreleased]
|
|
9
|
-
|
|
10
|
-
### Added
|
|
11
|
-
- Binary distribution pipeline producing a UPM package with pre-built DLLs
|
|
12
|
-
(`Build~/` build harness, `Build~/tools/build.ps1`).
|
|
13
|
-
- Wrapper asmdefs `MooseRunner.Editor` and `MooseRunner.Runtime` exposing the
|
|
14
|
-
shipped DLLs to consumer asmdefs by name reference.
|
|
15
|
-
- `CliPackageInstaller` `[InitializeOnLoad]` class auto-copies the CLI EXEs
|
|
16
|
-
from the package's `CLI~/` folder into `<projectRoot>/MooseRunner/` on first
|
|
17
|
-
Editor load.
|
|
18
|
-
- Reference samples shipped under `Samples~/Demos` (importable from the
|
|
19
|
-
Package Manager UI).
|
|
20
|
-
|
|
21
|
-
## [2.1.3] - 2026-05
|
|
22
|
-
|
|
23
|
-
Initial versioned baseline for the commercial release pipeline.
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to MooseRunner are documented in this file.
|
|
4
|
+
|
|
5
|
+
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Binary distribution pipeline producing a UPM package with pre-built DLLs
|
|
12
|
+
(`Build~/` build harness, `Build~/tools/build.ps1`).
|
|
13
|
+
- Wrapper asmdefs `MooseRunner.Editor` and `MooseRunner.Runtime` exposing the
|
|
14
|
+
shipped DLLs to consumer asmdefs by name reference.
|
|
15
|
+
- `CliPackageInstaller` `[InitializeOnLoad]` class auto-copies the CLI EXEs
|
|
16
|
+
from the package's `CLI~/` folder into `<projectRoot>/MooseRunner/` on first
|
|
17
|
+
Editor load.
|
|
18
|
+
- Reference samples shipped under `Samples~/Demos` (importable from the
|
|
19
|
+
Package Manager UI).
|
|
20
|
+
|
|
21
|
+
## [2.1.3] - 2026-05
|
|
22
|
+
|
|
23
|
+
Initial versioned baseline for the commercial release pipeline.
|
package/CLI~/mooserunnerCli.exe
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 6c5ba827f074dde5f311d1b365f7dffa
|
|
3
|
-
PluginImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
serializedVersion: 2
|
|
6
|
-
iconMap: {}
|
|
7
|
-
executionOrder: {}
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 6c5ba827f074dde5f311d1b365f7dffa
|
|
3
|
+
PluginImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
iconMap: {}
|
|
7
|
+
executionOrder: {}
|
|
8
8
|
defineConstraints:
|
|
9
|
-
- HOT_RELOAD_PRESENT
|
|
10
|
-
isPreloaded: 0
|
|
11
|
-
isOverridable: 1
|
|
12
|
-
isExplicitlyReferenced: 0
|
|
13
|
-
validateReferences: 0
|
|
14
|
-
platformData:
|
|
15
|
-
- first:
|
|
16
|
-
Any:
|
|
17
|
-
second:
|
|
18
|
-
enabled: 0
|
|
19
|
-
settings: {}
|
|
20
|
-
- first:
|
|
21
|
-
Editor: Editor
|
|
22
|
-
second:
|
|
23
|
-
enabled: 1
|
|
24
|
-
settings:
|
|
25
|
-
DefaultValueInitialized: true
|
|
26
|
-
- first:
|
|
27
|
-
Windows Store Apps: WindowsStoreApps
|
|
28
|
-
second:
|
|
29
|
-
enabled: 0
|
|
30
|
-
settings:
|
|
31
|
-
CPU: AnyCPU
|
|
32
|
-
userData:
|
|
33
|
-
assetBundleName:
|
|
9
|
+
- HOT_RELOAD_PRESENT
|
|
10
|
+
isPreloaded: 0
|
|
11
|
+
isOverridable: 1
|
|
12
|
+
isExplicitlyReferenced: 0
|
|
13
|
+
validateReferences: 0
|
|
14
|
+
platformData:
|
|
15
|
+
- first:
|
|
16
|
+
Any:
|
|
17
|
+
second:
|
|
18
|
+
enabled: 0
|
|
19
|
+
settings: {}
|
|
20
|
+
- first:
|
|
21
|
+
Editor: Editor
|
|
22
|
+
second:
|
|
23
|
+
enabled: 1
|
|
24
|
+
settings:
|
|
25
|
+
DefaultValueInitialized: true
|
|
26
|
+
- first:
|
|
27
|
+
Windows Store Apps: WindowsStoreApps
|
|
28
|
+
second:
|
|
29
|
+
enabled: 0
|
|
30
|
+
settings:
|
|
31
|
+
CPU: AnyCPU
|
|
32
|
+
userData:
|
|
33
|
+
assetBundleName:
|
|
34
34
|
assetBundleVariant:
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "MooseRunner.Editor",
|
|
3
|
-
"rootNamespace": "",
|
|
4
|
-
"references": [],
|
|
5
|
-
"includePlatforms": ["Editor"],
|
|
6
|
-
"excludePlatforms": [],
|
|
7
|
-
"allowUnsafeCode": false,
|
|
8
|
-
"overrideReferences": true,
|
|
9
|
-
"precompiledReferences": [
|
|
10
|
-
"MooseRunner.Worker.dll"
|
|
11
|
-
],
|
|
12
|
-
"autoReferenced": false,
|
|
13
|
-
"defineConstraints": [],
|
|
1
|
+
{
|
|
2
|
+
"name": "MooseRunner.Editor",
|
|
3
|
+
"rootNamespace": "",
|
|
4
|
+
"references": [],
|
|
5
|
+
"includePlatforms": ["Editor"],
|
|
6
|
+
"excludePlatforms": [],
|
|
7
|
+
"allowUnsafeCode": false,
|
|
8
|
+
"overrideReferences": true,
|
|
9
|
+
"precompiledReferences": [
|
|
10
|
+
"MooseRunner.Worker.dll"
|
|
11
|
+
],
|
|
12
|
+
"autoReferenced": false,
|
|
13
|
+
"defineConstraints": [],
|
|
14
14
|
"versionDefines": [
|
|
15
15
|
{
|
|
16
16
|
"name": "com.singularitygroup.hotreload",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"expression": "",
|
|
23
23
|
"define": "UNITY_RECORDER_PRESENT"
|
|
24
24
|
}
|
|
25
|
-
],
|
|
26
|
-
"noEngineReferences": false
|
|
25
|
+
],
|
|
26
|
+
"noEngineReferences": false
|
|
27
27
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: d53c2af5453c966cf870da3f5549a1ca
|
|
3
|
-
AssemblyDefinitionImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
userData:
|
|
6
|
-
assetBundleName:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: d53c2af5453c966cf870da3f5549a1ca
|
|
3
|
+
AssemblyDefinitionImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
userData:
|
|
6
|
+
assetBundleName:
|
|
7
7
|
assetBundleVariant:
|
|
Binary file
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: ef66ab52f9747fed2e539063c9142b8c
|
|
3
|
-
PluginImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
serializedVersion: 2
|
|
6
|
-
iconMap: {}
|
|
7
|
-
executionOrder: {}
|
|
8
|
-
defineConstraints: []
|
|
9
|
-
isPreloaded: 0
|
|
10
|
-
isOverridable: 1
|
|
11
|
-
isExplicitlyReferenced: 0
|
|
12
|
-
validateReferences: 0
|
|
13
|
-
platformData:
|
|
14
|
-
- first:
|
|
15
|
-
Any:
|
|
16
|
-
second:
|
|
17
|
-
enabled: 0
|
|
18
|
-
settings: {}
|
|
19
|
-
- first:
|
|
20
|
-
Editor: Editor
|
|
21
|
-
second:
|
|
22
|
-
enabled: 1
|
|
23
|
-
settings:
|
|
24
|
-
DefaultValueInitialized: true
|
|
25
|
-
- first:
|
|
26
|
-
Windows Store Apps: WindowsStoreApps
|
|
27
|
-
second:
|
|
28
|
-
enabled: 0
|
|
29
|
-
settings:
|
|
30
|
-
CPU: AnyCPU
|
|
31
|
-
userData:
|
|
32
|
-
assetBundleName:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: ef66ab52f9747fed2e539063c9142b8c
|
|
3
|
+
PluginImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
iconMap: {}
|
|
7
|
+
executionOrder: {}
|
|
8
|
+
defineConstraints: []
|
|
9
|
+
isPreloaded: 0
|
|
10
|
+
isOverridable: 1
|
|
11
|
+
isExplicitlyReferenced: 0
|
|
12
|
+
validateReferences: 0
|
|
13
|
+
platformData:
|
|
14
|
+
- first:
|
|
15
|
+
Any:
|
|
16
|
+
second:
|
|
17
|
+
enabled: 0
|
|
18
|
+
settings: {}
|
|
19
|
+
- first:
|
|
20
|
+
Editor: Editor
|
|
21
|
+
second:
|
|
22
|
+
enabled: 1
|
|
23
|
+
settings:
|
|
24
|
+
DefaultValueInitialized: true
|
|
25
|
+
- first:
|
|
26
|
+
Windows Store Apps: WindowsStoreApps
|
|
27
|
+
second:
|
|
28
|
+
enabled: 0
|
|
29
|
+
settings:
|
|
30
|
+
CPU: AnyCPU
|
|
31
|
+
userData:
|
|
32
|
+
assetBundleName:
|
|
33
33
|
assetBundleVariant:
|
|
Binary file
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 7edad386282dc9e40b4dc8b02f11efb5
|
|
3
|
-
PluginImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
serializedVersion: 2
|
|
6
|
-
iconMap: {}
|
|
7
|
-
executionOrder: {}
|
|
8
|
-
defineConstraints: []
|
|
9
|
-
isPreloaded: 0
|
|
10
|
-
isOverridable: 1
|
|
11
|
-
isExplicitlyReferenced: 0
|
|
12
|
-
validateReferences: 0
|
|
13
|
-
platformData:
|
|
14
|
-
- first:
|
|
15
|
-
Any:
|
|
16
|
-
second:
|
|
17
|
-
enabled: 0
|
|
18
|
-
settings: {}
|
|
19
|
-
- first:
|
|
20
|
-
Editor: Editor
|
|
21
|
-
second:
|
|
22
|
-
enabled: 1
|
|
23
|
-
settings:
|
|
24
|
-
DefaultValueInitialized: true
|
|
25
|
-
- first:
|
|
26
|
-
Windows Store Apps: WindowsStoreApps
|
|
27
|
-
second:
|
|
28
|
-
enabled: 0
|
|
29
|
-
settings:
|
|
30
|
-
CPU: AnyCPU
|
|
31
|
-
userData:
|
|
32
|
-
assetBundleName:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 7edad386282dc9e40b4dc8b02f11efb5
|
|
3
|
+
PluginImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
iconMap: {}
|
|
7
|
+
executionOrder: {}
|
|
8
|
+
defineConstraints: []
|
|
9
|
+
isPreloaded: 0
|
|
10
|
+
isOverridable: 1
|
|
11
|
+
isExplicitlyReferenced: 0
|
|
12
|
+
validateReferences: 0
|
|
13
|
+
platformData:
|
|
14
|
+
- first:
|
|
15
|
+
Any:
|
|
16
|
+
second:
|
|
17
|
+
enabled: 0
|
|
18
|
+
settings: {}
|
|
19
|
+
- first:
|
|
20
|
+
Editor: Editor
|
|
21
|
+
second:
|
|
22
|
+
enabled: 1
|
|
23
|
+
settings:
|
|
24
|
+
DefaultValueInitialized: true
|
|
25
|
+
- first:
|
|
26
|
+
Windows Store Apps: WindowsStoreApps
|
|
27
|
+
second:
|
|
28
|
+
enabled: 0
|
|
29
|
+
settings:
|
|
30
|
+
CPU: AnyCPU
|
|
31
|
+
userData:
|
|
32
|
+
assetBundleName:
|
|
33
33
|
assetBundleVariant:
|
|
Binary file
|
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 32836dad46841cc2933266e8991f384e
|
|
3
|
-
PluginImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
serializedVersion: 2
|
|
6
|
-
iconMap: {}
|
|
7
|
-
executionOrder: {}
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 32836dad46841cc2933266e8991f384e
|
|
3
|
+
PluginImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
iconMap: {}
|
|
7
|
+
executionOrder: {}
|
|
8
8
|
defineConstraints:
|
|
9
|
-
- UNITY_RECORDER_PRESENT
|
|
10
|
-
isPreloaded: 0
|
|
11
|
-
isOverridable: 1
|
|
12
|
-
isExplicitlyReferenced: 0
|
|
13
|
-
validateReferences: 0
|
|
14
|
-
platformData:
|
|
15
|
-
- first:
|
|
16
|
-
Any:
|
|
17
|
-
second:
|
|
18
|
-
enabled: 0
|
|
19
|
-
settings: {}
|
|
20
|
-
- first:
|
|
21
|
-
Editor: Editor
|
|
22
|
-
second:
|
|
23
|
-
enabled: 1
|
|
24
|
-
settings:
|
|
25
|
-
DefaultValueInitialized: true
|
|
26
|
-
- first:
|
|
27
|
-
Windows Store Apps: WindowsStoreApps
|
|
28
|
-
second:
|
|
29
|
-
enabled: 0
|
|
30
|
-
settings:
|
|
31
|
-
CPU: AnyCPU
|
|
32
|
-
userData:
|
|
33
|
-
assetBundleName:
|
|
9
|
+
- UNITY_RECORDER_PRESENT
|
|
10
|
+
isPreloaded: 0
|
|
11
|
+
isOverridable: 1
|
|
12
|
+
isExplicitlyReferenced: 0
|
|
13
|
+
validateReferences: 0
|
|
14
|
+
platformData:
|
|
15
|
+
- first:
|
|
16
|
+
Any:
|
|
17
|
+
second:
|
|
18
|
+
enabled: 0
|
|
19
|
+
settings: {}
|
|
20
|
+
- first:
|
|
21
|
+
Editor: Editor
|
|
22
|
+
second:
|
|
23
|
+
enabled: 1
|
|
24
|
+
settings:
|
|
25
|
+
DefaultValueInitialized: true
|
|
26
|
+
- first:
|
|
27
|
+
Windows Store Apps: WindowsStoreApps
|
|
28
|
+
second:
|
|
29
|
+
enabled: 0
|
|
30
|
+
settings:
|
|
31
|
+
CPU: AnyCPU
|
|
32
|
+
userData:
|
|
33
|
+
assetBundleName:
|
|
34
34
|
assetBundleVariant:
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: dcf4651cf1b5bbde7229b3a22f1ab0c7
|
|
3
|
-
MonoImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
serializedVersion: 2
|
|
6
|
-
defaultReferences: []
|
|
7
|
-
executionOrder: 0
|
|
8
|
-
icon: {instanceID: 0}
|
|
9
|
-
userData:
|
|
10
|
-
assetBundleName:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: dcf4651cf1b5bbde7229b3a22f1ab0c7
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData:
|
|
10
|
+
assetBundleName:
|
|
11
11
|
assetBundleVariant:
|
package/LICENSE.md
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
# MooseRunner — Commercial License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 Valectric AB. All rights reserved.
|
|
4
|
-
|
|
5
|
-
This software and associated documentation files (the "Software") are
|
|
6
|
-
licensed, not sold, to the licensee under a commercial license agreement.
|
|
7
|
-
Use of the Software is governed by the terms of that agreement.
|
|
8
|
-
|
|
9
|
-
## Summary
|
|
10
|
-
|
|
11
|
-
- Use of the Software requires an active license issued by Valectric AB.
|
|
12
|
-
- The Software, including all source code shipped in source form (samples,
|
|
13
|
-
examples) and all binary form (DLLs, executables), is proprietary.
|
|
14
|
-
- You may use the Software in projects you develop, internal and commercial,
|
|
15
|
-
subject to the terms of your license agreement.
|
|
16
|
-
- You may not redistribute, sublicense, sell, or transfer the Software to
|
|
17
|
-
third parties without express written permission from Valectric AB.
|
|
18
|
-
- You may not reverse engineer, decompile, or disassemble the binary
|
|
19
|
-
components of the Software, except to the extent expressly permitted by
|
|
20
|
-
applicable law.
|
|
21
|
-
|
|
22
|
-
For the full license terms or to purchase a license, see
|
|
23
|
-
https://www.mooserunner.com or contact sales@mooserunner.com.
|
|
24
|
-
|
|
25
|
-
## Third party components
|
|
26
|
-
|
|
27
|
-
This package depends on third-party libraries with their own licenses. See
|
|
28
|
-
`Third Party Notices.md` for attributions.
|
|
1
|
+
# MooseRunner — Commercial License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Valectric AB. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software and associated documentation files (the "Software") are
|
|
6
|
+
licensed, not sold, to the licensee under a commercial license agreement.
|
|
7
|
+
Use of the Software is governed by the terms of that agreement.
|
|
8
|
+
|
|
9
|
+
## Summary
|
|
10
|
+
|
|
11
|
+
- Use of the Software requires an active license issued by Valectric AB.
|
|
12
|
+
- The Software, including all source code shipped in source form (samples,
|
|
13
|
+
examples) and all binary form (DLLs, executables), is proprietary.
|
|
14
|
+
- You may use the Software in projects you develop, internal and commercial,
|
|
15
|
+
subject to the terms of your license agreement.
|
|
16
|
+
- You may not redistribute, sublicense, sell, or transfer the Software to
|
|
17
|
+
third parties without express written permission from Valectric AB.
|
|
18
|
+
- You may not reverse engineer, decompile, or disassemble the binary
|
|
19
|
+
components of the Software, except to the extent expressly permitted by
|
|
20
|
+
applicable law.
|
|
21
|
+
|
|
22
|
+
For the full license terms or to purchase a license, see
|
|
23
|
+
https://www.mooserunner.com or contact sales@mooserunner.com.
|
|
24
|
+
|
|
25
|
+
## Third party components
|
|
26
|
+
|
|
27
|
+
This package depends on third-party libraries with their own licenses. See
|
|
28
|
+
`Third Party Notices.md` for attributions.
|
|
Binary file
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 4b0d06f854cbfcb0fa36cc3d79c7e1b0
|
|
3
|
-
PluginImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
serializedVersion: 2
|
|
6
|
-
iconMap: {}
|
|
7
|
-
executionOrder: {}
|
|
8
|
-
defineConstraints: []
|
|
9
|
-
isPreloaded: 0
|
|
10
|
-
isOverridable: 1
|
|
11
|
-
isExplicitlyReferenced: 0
|
|
12
|
-
validateReferences: 0
|
|
13
|
-
platformData:
|
|
14
|
-
- first:
|
|
15
|
-
Any:
|
|
16
|
-
second:
|
|
17
|
-
enabled: 1
|
|
18
|
-
settings: {}
|
|
19
|
-
- first:
|
|
20
|
-
Editor: Editor
|
|
21
|
-
second:
|
|
22
|
-
enabled: 1
|
|
23
|
-
settings:
|
|
24
|
-
DefaultValueInitialized: true
|
|
25
|
-
userData:
|
|
26
|
-
assetBundleName:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 4b0d06f854cbfcb0fa36cc3d79c7e1b0
|
|
3
|
+
PluginImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
iconMap: {}
|
|
7
|
+
executionOrder: {}
|
|
8
|
+
defineConstraints: []
|
|
9
|
+
isPreloaded: 0
|
|
10
|
+
isOverridable: 1
|
|
11
|
+
isExplicitlyReferenced: 0
|
|
12
|
+
validateReferences: 0
|
|
13
|
+
platformData:
|
|
14
|
+
- first:
|
|
15
|
+
Any:
|
|
16
|
+
second:
|
|
17
|
+
enabled: 1
|
|
18
|
+
settings: {}
|
|
19
|
+
- first:
|
|
20
|
+
Editor: Editor
|
|
21
|
+
second:
|
|
22
|
+
enabled: 1
|
|
23
|
+
settings:
|
|
24
|
+
DefaultValueInitialized: true
|
|
25
|
+
userData:
|
|
26
|
+
assetBundleName:
|
|
27
27
|
assetBundleVariant:
|
|
Binary file
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: 713db1752abb20966b165166885e0381
|
|
3
|
-
PluginImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
serializedVersion: 2
|
|
6
|
-
iconMap: {}
|
|
7
|
-
executionOrder: {}
|
|
8
|
-
defineConstraints: []
|
|
9
|
-
isPreloaded: 0
|
|
10
|
-
isOverridable: 1
|
|
11
|
-
isExplicitlyReferenced: 0
|
|
12
|
-
validateReferences: 0
|
|
13
|
-
platformData:
|
|
14
|
-
- first:
|
|
15
|
-
Any:
|
|
16
|
-
second:
|
|
17
|
-
enabled: 1
|
|
18
|
-
settings: {}
|
|
19
|
-
- first:
|
|
20
|
-
Editor: Editor
|
|
21
|
-
second:
|
|
22
|
-
enabled: 1
|
|
23
|
-
settings:
|
|
24
|
-
DefaultValueInitialized: true
|
|
25
|
-
userData:
|
|
26
|
-
assetBundleName:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 713db1752abb20966b165166885e0381
|
|
3
|
+
PluginImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
iconMap: {}
|
|
7
|
+
executionOrder: {}
|
|
8
|
+
defineConstraints: []
|
|
9
|
+
isPreloaded: 0
|
|
10
|
+
isOverridable: 1
|
|
11
|
+
isExplicitlyReferenced: 0
|
|
12
|
+
validateReferences: 0
|
|
13
|
+
platformData:
|
|
14
|
+
- first:
|
|
15
|
+
Any:
|
|
16
|
+
second:
|
|
17
|
+
enabled: 1
|
|
18
|
+
settings: {}
|
|
19
|
+
- first:
|
|
20
|
+
Editor: Editor
|
|
21
|
+
second:
|
|
22
|
+
enabled: 1
|
|
23
|
+
settings:
|
|
24
|
+
DefaultValueInitialized: true
|
|
25
|
+
userData:
|
|
26
|
+
assetBundleName:
|
|
27
27
|
assetBundleVariant:
|
|
Binary file
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
fileFormatVersion: 2
|
|
2
|
-
guid: c0e5dbf54d954ef1921a971eaa94f967
|
|
3
|
-
PluginImporter:
|
|
4
|
-
externalObjects: {}
|
|
5
|
-
serializedVersion: 2
|
|
6
|
-
iconMap: {}
|
|
7
|
-
executionOrder: {}
|
|
8
|
-
defineConstraints: []
|
|
9
|
-
isPreloaded: 0
|
|
10
|
-
isOverridable: 1
|
|
11
|
-
isExplicitlyReferenced: 0
|
|
12
|
-
validateReferences: 0
|
|
13
|
-
platformData:
|
|
14
|
-
- first:
|
|
15
|
-
Any:
|
|
16
|
-
second:
|
|
17
|
-
enabled: 1
|
|
18
|
-
settings: {}
|
|
19
|
-
- first:
|
|
20
|
-
Editor: Editor
|
|
21
|
-
second:
|
|
22
|
-
enabled: 1
|
|
23
|
-
settings:
|
|
24
|
-
DefaultValueInitialized: true
|
|
25
|
-
userData:
|
|
26
|
-
assetBundleName:
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: c0e5dbf54d954ef1921a971eaa94f967
|
|
3
|
+
PluginImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
iconMap: {}
|
|
7
|
+
executionOrder: {}
|
|
8
|
+
defineConstraints: []
|
|
9
|
+
isPreloaded: 0
|
|
10
|
+
isOverridable: 1
|
|
11
|
+
isExplicitlyReferenced: 0
|
|
12
|
+
validateReferences: 0
|
|
13
|
+
platformData:
|
|
14
|
+
- first:
|
|
15
|
+
Any:
|
|
16
|
+
second:
|
|
17
|
+
enabled: 1
|
|
18
|
+
settings: {}
|
|
19
|
+
- first:
|
|
20
|
+
Editor: Editor
|
|
21
|
+
second:
|
|
22
|
+
enabled: 1
|
|
23
|
+
settings:
|
|
24
|
+
DefaultValueInitialized: true
|
|
25
|
+
userData:
|
|
26
|
+
assetBundleName:
|
|
27
27
|
assetBundleVariant:
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "MooseRunner.Runtime",
|
|
3
|
-
"rootNamespace": "",
|
|
4
|
-
"references": [],
|
|
5
|
-
"includePlatforms": [],
|
|
6
|
-
"excludePlatforms": [],
|
|
7
|
-
"allowUnsafeCode": false,
|
|
8
|
-
"overrideReferences": true,
|
|
9
|
-
"precompiledReferences": [
|
|
1
|
+
{
|
|
2
|
+
"name": "MooseRunner.Runtime",
|
|
3
|
+
"rootNamespace": "",
|
|
4
|
+
"references": [],
|
|
5
|
+
"includePlatforms": [],
|
|
6
|
+
"excludePlatforms": [],
|
|
7
|
+
"allowUnsafeCode": false,
|
|
8
|
+
"overrideReferences": true,
|
|
9
|
+
"precompiledReferences": [
|
|
10
10
|
"MooseRunner.SessionRecorder.Runtime.dll",
|
|
11
11
|
"MooseRunner.SessionRecorder.Public.dll",
|
|
12
12
|
"MooseRunner.Multiplaytest.Types.dll",
|
|
13
13
|
"MooseRunner.Helpers.Runtime.dll",
|
|
14
14
|
"MooseRunner.dll",
|
|
15
|
-
"MooseRunner.Internal.dll"
|
|
16
|
-
],
|
|
17
|
-
"autoReferenced": false,
|
|
18
|
-
"defineConstraints": [],
|
|
19
|
-
"versionDefines": [],
|
|
20
|
-
"noEngineReferences": false
|
|
15
|
+
"MooseRunner.Internal.dll"
|
|
16
|
+
],
|
|
17
|
+
"autoReferenced": false,
|
|
18
|
+
"defineConstraints": [],
|
|
19
|
+
"versionDefines": [],
|
|
20
|
+
"noEngineReferences": false
|
|
21
21
|
}
|