Tree command, and more fixes.
This commit is contained in:
parent
d15151a473
commit
14b374f216
@ -1,6 +1,3 @@
|
||||
using System.Collections.Generic;
|
||||
using OpenCover.Framework.Model;
|
||||
using Unity.VisualScripting;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Cogwheel
|
||||
@ -58,13 +55,13 @@ namespace Cogwheel
|
||||
if (arg == "-a")
|
||||
{
|
||||
Log(CommandsManager.IsCommandContextValid(command)
|
||||
? $"<color=green>({command.Method.DeclaringType.Name})</color> : {command.Name} - {command.Description}"
|
||||
: $"<color=#333333>({command.Method.DeclaringType.Name})</color> : {command.Name} - {command.Description}");
|
||||
? $"<color=green>({command.Method.DeclaringType.Name})</color> : {command.Name} - <i>{command.Description}</i>"
|
||||
: $"<color=#333333>({command.Method.DeclaringType.Name})</color> : {command.Name} - <i>{command.Description}</i>");
|
||||
}
|
||||
|
||||
if (CommandsManager.IsCommandContextValid(command))
|
||||
{
|
||||
Log($"<color=green>({command.Method.DeclaringType.Name})</color> : {command.Name} - {command.Description}");
|
||||
Log($"<color=green>({command.Method.DeclaringType.Name})</color> : {command.Name} - <i>{command.Description}</i>");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -86,16 +83,50 @@ namespace Cogwheel
|
||||
$"Usage: {CommandsManager.GetCommandUsage(command)}");
|
||||
}
|
||||
|
||||
[Command(CommandName = "search", Description = "Searches the scene for a GameObject with the given name and sets the Context to it.")]
|
||||
[Command(CommandName = "cd", Description = "Sets the context to the given path\n(If no specific path is given, it will set the context to the first object with the given name found in the scene)")]
|
||||
public static void SetContextByName(string name)
|
||||
{
|
||||
CommandsManager.SetContext(name);
|
||||
}
|
||||
|
||||
[Command(CommandName = "whois", Description = "Prints out the current Context name")]
|
||||
[Command(CommandName = "ctx", Description = "Prints out the current Context name")]
|
||||
public static void PrintContext()
|
||||
{
|
||||
Log($"Current context is: {CommandsManager.Context.name}");
|
||||
if (CommandsManager.Context is null)
|
||||
{
|
||||
LogWarning("No context set.");
|
||||
return;
|
||||
}
|
||||
Log($"-- CONTEXT <i>{CommandsManager.Context.name}</i> --");
|
||||
Log("-Components-");
|
||||
if (CommandsManager.Context.GetComponentCount() < 1)
|
||||
{
|
||||
LogWarning("No components found on this object.");
|
||||
return;
|
||||
}
|
||||
foreach (var component in CommandsManager.Context.GetComponents<MonoBehaviour>())
|
||||
{
|
||||
Log($"<color=green>- {component.GetType()}</color>");
|
||||
}
|
||||
}
|
||||
|
||||
[Command(CommandName = "tree", Description = "Prints the hierarchy of the scene")]
|
||||
public static void PrintObjectsInHierarchy()
|
||||
{
|
||||
foreach (var rootObject in UnityEngine.SceneManagement.SceneManager.GetActiveScene().GetRootGameObjects())
|
||||
{
|
||||
PrintHierarchy(rootObject.transform, 0);
|
||||
}
|
||||
}
|
||||
|
||||
private static void PrintHierarchy(Transform transform, int indentLevel)
|
||||
{
|
||||
string indent = new string(' ', indentLevel * 2);
|
||||
Log($"{indent}- {transform.name}");
|
||||
for (int i = 0; i < transform.childCount; i++)
|
||||
{
|
||||
PrintHierarchy(transform.GetChild(i), indentLevel + 1);
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
@ -257,10 +257,7 @@ namespace Cogwheel
|
||||
{
|
||||
var commandName = attribute.CommandName ?? method.Name;
|
||||
var newCommand = new Command(commandName, method, attribute.Description);
|
||||
if (!Commands.Values.Contains(newCommand))
|
||||
{
|
||||
Commands.TryAdd(newCommand.Name, newCommand);
|
||||
}
|
||||
Commands.TryAdd(newCommand.Name, newCommand);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using Cogwheel;
|
||||
using Unity.VisualScripting;
|
||||
using UnityEngine;
|
||||
@ -18,4 +19,10 @@ public class Test : MonoBehaviour
|
||||
{
|
||||
Debug.Log($"PrivateCommand called: int is {value} and string is {text} and float is {f}");
|
||||
}
|
||||
|
||||
[Command]
|
||||
private void What()
|
||||
{
|
||||
COGWHEEL.Log("WHAT");
|
||||
}
|
||||
}
|
||||
|
@ -122,6 +122,50 @@ NavMeshSettings:
|
||||
debug:
|
||||
m_Flags: 0
|
||||
m_NavMeshData: {fileID: 0}
|
||||
--- !u!1 &510361092
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 510361094}
|
||||
- component: {fileID: 510361093}
|
||||
m_Layer: 0
|
||||
m_Name: Test2
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!114 &510361093
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 510361092}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: a2c4c2a5f3f0432eaf914b6d27031ca6, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
--- !u!4 &510361094
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 510361092}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 758753411}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!1 &705507993
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
@ -216,6 +260,51 @@ Transform:
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0}
|
||||
--- !u!1 &758753409
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 758753411}
|
||||
- component: {fileID: 758753410}
|
||||
m_Layer: 0
|
||||
m_Name: Test
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!114 &758753410
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 758753409}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 5f2dd85165475cf7a81bf4b02e9502f4, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
--- !u!4 &758753411
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 758753409}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 6.010771, y: 13.350267, z: 7.386556}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children:
|
||||
- {fileID: 510361094}
|
||||
m_Father: {fileID: 0}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!1 &963194225
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
@ -360,6 +449,10 @@ PrefabInstance:
|
||||
propertyPath: m_Name
|
||||
value: Cogwheel
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 6812011641737714985, guid: bfba73797df1fe94c91fd68237bdb897, type: 3}
|
||||
propertyPath: m_IsActive
|
||||
value: 1
|
||||
objectReference: {fileID: 0}
|
||||
m_RemovedComponents: []
|
||||
m_RemovedGameObjects: []
|
||||
m_AddedGameObjects: []
|
||||
@ -372,3 +465,4 @@ SceneRoots:
|
||||
- {fileID: 963194228}
|
||||
- {fileID: 705507995}
|
||||
- {fileID: 1414270578}
|
||||
- {fileID: 758753411}
|
||||
|
@ -1,3 +1,6 @@
|
||||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003A0200026E_002Eil_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003Fhome_003Fspudnut_003F_002Econfig_003FJetBrains_003FRider2024_002E2_003Fresharper_002Dhost_003FDecompilerCache_003FILViewer_003Fbc0b3991ca4b4196aabcebbbb7b1f100175c00_003Fd7_003Facfdb5c6_003F0200026E_002Eil/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AGameObject_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003Fhome_003Fspudnut_003F_002Econfig_003FJetBrains_003FRider2024_002E2_003Fresharper_002Dhost_003FDecompilerCache_003Fdecompiler_003Fbc0b3991ca4b4196aabcebbbb7b1f100175c00_003Fed_003F72b1cbd0_003FGameObject_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AObject_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003Fhome_003Fspudnut_003F_002Econfig_003FJetBrains_003FRider2024_002E2_003Fresharper_002Dhost_003FDecompilerCache_003Fdecompiler_003Fbc0b3991ca4b4196aabcebbbb7b1f100175c00_003F07_003Fe8a094ab_003FObject_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ASystem_002ECollections_002EGeneric_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003Fhome_003Fspudnut_003F_002Econfig_003FJetBrains_003FRider2024_002E2_003Fresharper_002Dhost_003FSourcesCache_003Fd44b17e136d09081da1e8fd0e8c83fde60e11818b9f2442d7ed8cb733fae895e_003FSystem_002ECollections_002EGeneric_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ATextField_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003F_002E_002E_003Fhome_003Fspudnut_003F_002Econfig_003FJetBrains_003FRider2024_002E2_003Fresharper_002Dhost_003FDecompilerCache_003Fdecompiler_003F0573bd80495f428abbe796964d4fd509178400_003F21_003F331cf713_003FTextField_002Ecs/@EntryIndexedValue">ForceIncluded</s:String></wpf:ResourceDictionary>
|
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.
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.
Binary file not shown.
Binary file not shown.
1
Cogwheel/Library/Bee/2400b0aESkipCompile-inputdata.json
Normal file
1
Cogwheel/Library/Bee/2400b0aESkipCompile-inputdata.json
Normal file
File diff suppressed because one or more lines are too long
BIN
Cogwheel/Library/Bee/2400b0aESkipCompile.dag
Normal file
BIN
Cogwheel/Library/Bee/2400b0aESkipCompile.dag
Normal file
Binary file not shown.
245
Cogwheel/Library/Bee/2400b0aESkipCompile.dag.json
Normal file
245
Cogwheel/Library/Bee/2400b0aESkipCompile.dag.json
Normal file
@ -0,0 +1,245 @@
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"Annotation": "all_tundra_nodes",
|
||||
"DisplayName": null,
|
||||
"Inputs": [],
|
||||
"Outputs": [],
|
||||
"ToBuildDependencies": [
|
||||
1,
|
||||
2,
|
||||
3
|
||||
],
|
||||
"OverwriteOutputs": false,
|
||||
"DebugActionIndex": 0
|
||||
},
|
||||
{
|
||||
"Annotation": "ScriptAssemblies",
|
||||
"DisplayName": null,
|
||||
"Inputs": [],
|
||||
"Outputs": [],
|
||||
"OverwriteOutputs": false,
|
||||
"DebugActionIndex": 1
|
||||
},
|
||||
{
|
||||
"Annotation": "BuildPlayerDataGenerator Library/BuildPlayerData/Editor/TypeDb-All.json",
|
||||
"DisplayName": "BuildPlayerDataGenerator TypeDb-All",
|
||||
"Action": "\"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPlayerDataGenerator/BuildPlayerDataGenerator.exe\" -a=\"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/ScriptAssemblies/Assembly-CSharp.dll\" -a=\"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/ScriptAssemblies/Unity.TextMeshPro.dll\" -a=\"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/ScriptAssemblies/Unity.Timeline.dll\" -a=\"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/ScriptAssemblies/Unity.VisualScripting.Core.dll\" -a=\"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/ScriptAssemblies/Unity.VisualScripting.Flow.dll\" -a=\"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/ScriptAssemblies/Unity.VisualScripting.State.dll\" -a=\"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/ScriptAssemblies/UnityEngine.TestRunner.dll\" -a=\"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/ScriptAssemblies/UnityEngine.UI.dll\" -a=\"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/PackageCache/com.unity.ext.nunit@1.0.6/net35/unity-custom/nunit.framework.dll\" -a=\"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/PackageCache/com.unity.testtools.codecoverage@1.2.5/lib/ReportGenerator/ReportGeneratorMerged.dll\" -a=\"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/PackageCache/com.unity.visualscripting@1.9.4/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll\" -s=\"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Managed/UnityEngine\" -s=\"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx\" -s=\"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard\" -s=\"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/Extensions/2.0.0\" -s=\"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/ref/2.1.0\" -s=\"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/ScriptAssemblies\" -s=\"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/PackageCache/com.unity.ext.nunit@1.0.6/net35/unity-custom\" -s=\"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/PackageCache/com.unity.testtools.codecoverage@1.2.5/lib/ReportGenerator\" -s=\"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/PackageCache/com.unity.visualscripting@1.9.4/Runtime/VisualScripting.Flow/Dependencies/NCalc\" -o=\"Library/BuildPlayerData/Editor\" -rn=\"\" -tn=\"TypeDb-All.json\"",
|
||||
"Inputs": [
|
||||
"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/netcorerun/netcorerun",
|
||||
"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPlayerDataGenerator/BuildPlayerDataGenerator.exe",
|
||||
"Library/ScriptAssemblies/Assembly-CSharp.dll",
|
||||
"Library/ScriptAssemblies/Unity.TextMeshPro.dll",
|
||||
"Library/ScriptAssemblies/Unity.Timeline.dll",
|
||||
"Library/ScriptAssemblies/Unity.VisualScripting.Core.dll",
|
||||
"Library/ScriptAssemblies/Unity.VisualScripting.Flow.dll",
|
||||
"Library/ScriptAssemblies/Unity.VisualScripting.State.dll",
|
||||
"Library/ScriptAssemblies/UnityEngine.TestRunner.dll",
|
||||
"Library/ScriptAssemblies/UnityEngine.UI.dll",
|
||||
"Library/PackageCache/com.unity.ext.nunit@1.0.6/net35/unity-custom/nunit.framework.dll",
|
||||
"Library/PackageCache/com.unity.testtools.codecoverage@1.2.5/lib/ReportGenerator/ReportGeneratorMerged.dll",
|
||||
"Library/PackageCache/com.unity.visualscripting@1.9.4/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll"
|
||||
],
|
||||
"Outputs": [
|
||||
"Library/BuildPlayerData/Editor/TypeDb-All.json"
|
||||
],
|
||||
"AllowUnexpectedOutput": true,
|
||||
"Env": [],
|
||||
"DebugActionIndex": 2
|
||||
},
|
||||
{
|
||||
"Annotation": "ScriptAssembliesAndTypeDB",
|
||||
"DisplayName": null,
|
||||
"Inputs": [],
|
||||
"Outputs": [],
|
||||
"ToBuildDependencies": [
|
||||
1,
|
||||
2
|
||||
],
|
||||
"OverwriteOutputs": false,
|
||||
"DebugActionIndex": 3
|
||||
}
|
||||
],
|
||||
"FileSignatures": [
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Bee.BuildTools.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Bee.CSharpSupport.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Bee.Core.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Bee.DotNet.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Bee.NativeProgramSupport.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Bee.Stevedore.Program.exe"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Bee.TinyProfiler2.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Bee.Toolchain.GNU.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Bee.Toolchain.LLVM.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Bee.Toolchain.VisualStudio.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Bee.Toolchain.Xcode.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Bee.Tools.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Bee.TundraBackend.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Bee.VisualStudioSolution.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/BeeBuildProgramCommon.Data.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/BeeBuildProgramCommon.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Newtonsoft.Json.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/NiceIO.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/PlayerBuildProgramLibrary.Data.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/PlayerBuildProgramLibrary.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/ScriptCompilationBuildProgram.Data.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/ScriptCompilationBuildProgram.exe"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/SharpYaml.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Unity.Api.Attributes.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Unity.Cecil.Mdb.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Unity.Cecil.Pdb.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Unity.Cecil.Rocks.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Unity.Cecil.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Unity.IL2CPP.Api.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Unity.IL2CPP.Bee.BuildLogic.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Unity.Linker.Api.dll"
|
||||
},
|
||||
{
|
||||
"File": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline/Unity.Options.dll"
|
||||
},
|
||||
{
|
||||
"File": "Library/Bee/2400b0aESkipCompile-inputdata.json"
|
||||
}
|
||||
],
|
||||
"StatSignatures": [
|
||||
{
|
||||
"File": "Assets/csc.rsp"
|
||||
},
|
||||
{
|
||||
"File": "Assets/mcs.rsp"
|
||||
},
|
||||
{
|
||||
"File": "Library/Bee/2400b0aESkipCompile-inputdata.json"
|
||||
},
|
||||
{
|
||||
"File": "Library/PackageCache/com.unity.ext.nunit@1.0.6/net35/unity-custom/nunit.framework.dll"
|
||||
},
|
||||
{
|
||||
"File": "Library/PackageCache/com.unity.testtools.codecoverage@1.2.5/lib/ReportGenerator/ReportGeneratorMerged.dll"
|
||||
},
|
||||
{
|
||||
"File": "Library/PackageCache/com.unity.visualscripting@1.9.4/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll"
|
||||
},
|
||||
{
|
||||
"File": "Library/ScriptAssemblies/Assembly-CSharp.dll"
|
||||
},
|
||||
{
|
||||
"File": "Library/ScriptAssemblies/Unity.TextMeshPro.dll"
|
||||
},
|
||||
{
|
||||
"File": "Library/ScriptAssemblies/Unity.Timeline.dll"
|
||||
},
|
||||
{
|
||||
"File": "Library/ScriptAssemblies/Unity.VisualScripting.Core.dll"
|
||||
},
|
||||
{
|
||||
"File": "Library/ScriptAssemblies/Unity.VisualScripting.Flow.dll"
|
||||
},
|
||||
{
|
||||
"File": "Library/ScriptAssemblies/Unity.VisualScripting.State.dll"
|
||||
},
|
||||
{
|
||||
"File": "Library/ScriptAssemblies/UnityEngine.TestRunner.dll"
|
||||
},
|
||||
{
|
||||
"File": "Library/ScriptAssemblies/UnityEngine.UI.dll"
|
||||
}
|
||||
],
|
||||
"GlobSignatures": [
|
||||
{
|
||||
"Path": "/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/BuildPipeline"
|
||||
}
|
||||
],
|
||||
"ContentDigestExtensions": [
|
||||
".rsp",
|
||||
".dll",
|
||||
".exe",
|
||||
".pdb"
|
||||
],
|
||||
"StructuredLogFileName": "Library/Bee/tundra.log.json",
|
||||
"StateFileName": "Library/Bee/TundraBuildState.state",
|
||||
"StateFileNameTmp": "Library/Bee/TundraBuildState.state.tmp",
|
||||
"StateFileNameMapped": "Library/Bee/TundraBuildState.state.map",
|
||||
"ScanCacheFileName": "Library/Bee/tundra.scancache",
|
||||
"ScanCacheFileNameTmp": "Library/Bee/tundra.scancache.tmp",
|
||||
"DigestCacheFileName": "Library/Bee/tundra.digestcache",
|
||||
"DigestCacheFileNameTmp": "Library/Bee/tundra.digestcache.tmp",
|
||||
"CachedNodeOutputDirectoryName": "Library/Bee/CachedNodeOutput",
|
||||
"EmitDataForBeeWhy": 0,
|
||||
"NamedNodes": {
|
||||
"all_tundra_nodes": 0,
|
||||
"ScriptAssemblies": 1,
|
||||
"ScriptAssembliesAndTypeDB": 3
|
||||
}
|
||||
, "DefaultNodes": [
|
||||
0
|
||||
],
|
||||
"SharedResources": [],
|
||||
"Scanners": [],
|
||||
"Identifier": "Library/Bee/2400b0aESkipCompile.dag.json",
|
||||
"PayloadsFile": "/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/Bee/2400b0aESkipCompile.dag.payloads",
|
||||
"RelativePathToRoot": "../.."
|
||||
}
|
1
Cogwheel/Library/Bee/2400b0aESkipCompile.dag.outputdata
Normal file
1
Cogwheel/Library/Bee/2400b0aESkipCompile.dag.outputdata
Normal file
@ -0,0 +1 @@
|
||||
{"ScriptCompilationBuildProgram.Data.ScriptCompilationData_Out":{"Assemblies":[]}}
|
BIN
Cogwheel/Library/Bee/2400b0aESkipCompile.dag_derived
Normal file
BIN
Cogwheel/Library/Bee/2400b0aESkipCompile.dag_derived
Normal file
Binary file not shown.
BIN
Cogwheel/Library/Bee/2400b0aESkipCompile.dag_fsmtime
Normal file
BIN
Cogwheel/Library/Bee/2400b0aESkipCompile.dag_fsmtime
Normal file
Binary file not shown.
1
Cogwheel/Library/Bee/2400b0aP-inputdata.json
Normal file
1
Cogwheel/Library/Bee/2400b0aP-inputdata.json
Normal file
File diff suppressed because one or more lines are too long
BIN
Cogwheel/Library/Bee/2400b0aP.dag
Normal file
BIN
Cogwheel/Library/Bee/2400b0aP.dag
Normal file
Binary file not shown.
6526
Cogwheel/Library/Bee/2400b0aP.dag.json
Normal file
6526
Cogwheel/Library/Bee/2400b0aP.dag.json
Normal file
File diff suppressed because it is too large
Load Diff
1
Cogwheel/Library/Bee/2400b0aP.dag.outputdata
Normal file
1
Cogwheel/Library/Bee/2400b0aP.dag.outputdata
Normal file
@ -0,0 +1 @@
|
||||
{"ScriptCompilationBuildProgram.Data.ScriptCompilationData_Out":{"Assemblies":[{"Path":"Library/Bee/artifacts/2400b0aP.dag/UnityEngine.TestRunner.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aP.dag/UnityEngine.TestRunner.rsp","MovedFromExtractorFile":"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/Bee/artifacts/2400b0aP.dag/UnityEngine.TestRunner.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aP.dag/UnityEngine.UI.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aP.dag/UnityEngine.UI.rsp","MovedFromExtractorFile":"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/Bee/artifacts/2400b0aP.dag/UnityEngine.UI.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aP.dag/Unity.TextMeshPro.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aP.dag/Unity.TextMeshPro.rsp","MovedFromExtractorFile":"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/Bee/artifacts/2400b0aP.dag/Unity.TextMeshPro.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aP.dag/Unity.Timeline.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aP.dag/Unity.Timeline.rsp","MovedFromExtractorFile":"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/Bee/artifacts/2400b0aP.dag/Unity.Timeline.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aP.dag/Unity.VisualScripting.Core.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aP.dag/Unity.VisualScripting.Core.rsp","MovedFromExtractorFile":"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/Bee/artifacts/2400b0aP.dag/Unity.VisualScripting.Core.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aP.dag/Unity.VisualScripting.Flow.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aP.dag/Unity.VisualScripting.Flow.rsp","MovedFromExtractorFile":"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/Bee/artifacts/2400b0aP.dag/Unity.VisualScripting.Flow.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aP.dag/Unity.VisualScripting.State.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aP.dag/Unity.VisualScripting.State.rsp","MovedFromExtractorFile":"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/Bee/artifacts/2400b0aP.dag/Unity.VisualScripting.State.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aP.dag/Assembly-CSharp.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aP.dag/Assembly-CSharp.rsp","MovedFromExtractorFile":"/mnt/Data/Projects/CogwheelUnity/Cogwheel/Library/Bee/artifacts/2400b0aP.dag/Assembly-CSharp.dll.mvfrm"}]}}
|
BIN
Cogwheel/Library/Bee/2400b0aP.dag.payloads
Normal file
BIN
Cogwheel/Library/Bee/2400b0aP.dag.payloads
Normal file
Binary file not shown.
BIN
Cogwheel/Library/Bee/2400b0aP.dag_derived
Normal file
BIN
Cogwheel/Library/Bee/2400b0aP.dag_derived
Normal file
Binary file not shown.
1
Cogwheel/Library/Bee/2400b0aP.dag_fsmtime
Normal file
1
Cogwheel/Library/Bee/2400b0aP.dag_fsmtime
Normal file
@ -0,0 +1 @@
|
||||
P<EFBFBD><EFBFBD><EFBFBD>L<>
|
BIN
Cogwheel/Library/Bee/PlayerScriptAssemblies/Assembly-CSharp.dll
Normal file
BIN
Cogwheel/Library/Bee/PlayerScriptAssemblies/Assembly-CSharp.dll
Normal file
Binary file not shown.
BIN
Cogwheel/Library/Bee/PlayerScriptAssemblies/Assembly-CSharp.pdb
Normal file
BIN
Cogwheel/Library/Bee/PlayerScriptAssemblies/Assembly-CSharp.pdb
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Cogwheel/Library/Bee/PlayerScriptAssemblies/Unity.Timeline.dll
Normal file
BIN
Cogwheel/Library/Bee/PlayerScriptAssemblies/Unity.Timeline.dll
Normal file
Binary file not shown.
BIN
Cogwheel/Library/Bee/PlayerScriptAssemblies/Unity.Timeline.pdb
Normal file
BIN
Cogwheel/Library/Bee/PlayerScriptAssemblies/Unity.Timeline.pdb
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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Cogwheel/Library/Bee/PlayerScriptAssemblies/UnityEngine.UI.dll
Normal file
BIN
Cogwheel/Library/Bee/PlayerScriptAssemblies/UnityEngine.UI.dll
Normal file
Binary file not shown.
BIN
Cogwheel/Library/Bee/PlayerScriptAssemblies/UnityEngine.UI.pdb
Normal file
BIN
Cogwheel/Library/Bee/PlayerScriptAssemblies/UnityEngine.UI.pdb
Normal file
Binary file not shown.
1
Cogwheel/Library/Bee/Playera8a22efc-inputdata.json
Normal file
1
Cogwheel/Library/Bee/Playera8a22efc-inputdata.json
Normal file
File diff suppressed because one or more lines are too long
BIN
Cogwheel/Library/Bee/Playera8a22efc.dag
Normal file
BIN
Cogwheel/Library/Bee/Playera8a22efc.dag
Normal file
Binary file not shown.
2303
Cogwheel/Library/Bee/Playera8a22efc.dag.json
Normal file
2303
Cogwheel/Library/Bee/Playera8a22efc.dag.json
Normal file
File diff suppressed because it is too large
Load Diff
1
Cogwheel/Library/Bee/Playera8a22efc.dag.outputdata
Normal file
1
Cogwheel/Library/Bee/Playera8a22efc.dag.outputdata
Normal file
File diff suppressed because one or more lines are too long
9
Cogwheel/Library/Bee/Playera8a22efc.dag.payloads
Normal file
9
Cogwheel/Library/Bee/Playera8a22efc.dag.payloads
Normal file
File diff suppressed because one or more lines are too long
BIN
Cogwheel/Library/Bee/Playera8a22efc.dag_derived
Normal file
BIN
Cogwheel/Library/Bee/Playera8a22efc.dag_derived
Normal file
Binary file not shown.
1
Cogwheel/Library/Bee/Playera8a22efc.dag_fsmtime
Normal file
1
Cogwheel/Library/Bee/Playera8a22efc.dag_fsmtime
Normal file
@ -0,0 +1 @@
|
||||
›<EFBFBD>_ALû
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
/mnt/Data/Projects/CogwheelUnity/Cogwheel
|
BIN
Cogwheel/Library/Bee/artifacts/2400b0aP.dag/Assembly-CSharp.dll
Normal file
BIN
Cogwheel/Library/Bee/artifacts/2400b0aP.dag/Assembly-CSharp.dll
Normal file
Binary file not shown.
@ -0,0 +1,121 @@
|
||||
ObstacleAvoidanceType
|
||||
UnityEngine
|
||||
NavMeshAgent
|
||||
NavMeshObstacleShape
|
||||
NavMeshObstacle
|
||||
OffMeshLinkType
|
||||
OffMeshLinkData
|
||||
OffMeshLink
|
||||
NavMeshHit
|
||||
NavMeshTriangulation
|
||||
NavMesh
|
||||
NavMeshPathStatus
|
||||
NavMeshPath
|
||||
AvatarMaskBodyPart
|
||||
UnityEditor
|
||||
Animations
|
||||
AvatarMask
|
||||
IAnimationJob
|
||||
UnityEngine
|
||||
Experimental
|
||||
IAnimationJobPlayable
|
||||
IAnimationWindowPreview
|
||||
AnimationHumanStream
|
||||
AnimationScriptPlayable
|
||||
AnimationStream
|
||||
TransformStreamHandle
|
||||
PropertyStreamHandle
|
||||
TransformSceneHandle
|
||||
PropertySceneHandle
|
||||
AnimationSceneHandleUtility
|
||||
AnimationStreamHandleUtility
|
||||
CustomStreamPropertyType
|
||||
AnimatorJobExtensions
|
||||
MuscleHandle
|
||||
ExpressionEvaluator
|
||||
UnityEditor
|
||||
NumericFieldDraggerUtility
|
||||
PixelPerfectRendering
|
||||
UnityEngine
|
||||
Experimental
|
||||
U2D
|
||||
SpriteBone
|
||||
Profiler
|
||||
PhotoCaptureFileOutputFormat
|
||||
XR
|
||||
WSA
|
||||
WebCam
|
||||
PhotoCapture
|
||||
PhotoCaptureFrame
|
||||
VideoCapture
|
||||
CapturePixelFormat
|
||||
WebCamMode
|
||||
CameraParameters
|
||||
PlayerLoopSystemInternal
|
||||
LowLevel
|
||||
PlayerLoopSystem
|
||||
PlayerLoop
|
||||
Initialization
|
||||
EarlyUpdate
|
||||
FixedUpdate
|
||||
PreUpdate
|
||||
Update
|
||||
PreLateUpdate
|
||||
PostLateUpdate
|
||||
ConnectionTarget
|
||||
Networking
|
||||
PlayerConnection
|
||||
IConnectionState
|
||||
VertexAttribute
|
||||
Rendering
|
||||
RenderingThreadingMode
|
||||
RendererList
|
||||
RendererUtils
|
||||
RendererListStatus
|
||||
LocalizationAsset
|
||||
UnityEditor
|
||||
SpriteShapeParameters
|
||||
UnityEngine
|
||||
Experimental
|
||||
U2D
|
||||
SpriteShapeSegment
|
||||
SpriteShapeRenderer
|
||||
SpriteShapeMetaData
|
||||
ShapeControlPoint
|
||||
AngleRangeInfo
|
||||
SpriteShapeUtility
|
||||
TerrainCallbacks
|
||||
UnityEngine
|
||||
Experimental
|
||||
TerrainAPI
|
||||
TerrainUtility
|
||||
BrushTransform
|
||||
PaintContext
|
||||
TerrainPaintUtility
|
||||
BaseCompositeField<,,>
|
||||
UnityEditor
|
||||
UIElements
|
||||
BasePopupField<,>
|
||||
BoundsField
|
||||
BoundsIntField
|
||||
RectField
|
||||
RectIntField
|
||||
Vector2Field
|
||||
Vector3Field
|
||||
Vector4Field
|
||||
Vector2IntField
|
||||
Vector3IntField
|
||||
DoubleField
|
||||
EnumField
|
||||
FloatField
|
||||
Hash128Field
|
||||
IntegerField
|
||||
LongField
|
||||
PopupField<>
|
||||
ProgressBar
|
||||
DeltaSpeed
|
||||
IValueField<>
|
||||
TextValueField<>
|
||||
TextValueFieldTraits<,>
|
||||
BaseFieldMouseDragger
|
||||
FieldMouseDragger<>
|
@ -0,0 +1,73 @@
|
||||
Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_B9996BE93E6EE410.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/Unity.Timeline.ref.dll_4C9BF486B03A35CA.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_4AA5A1627F9F5F6F.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_91B681B901A8D41E.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_17B9FDB6DEED98B7.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_F37DC0DEF554539B.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_8CDCD55534B84776.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_D3C25A4362D49DC4.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_A04840702934C834.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_1045E882DFC66B6A.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_2E2BA019F46C73D8.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_CF5C56CA363FE1DC.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_3644B3C5105CC0C0.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_952C427BE22503DE.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_EFF8466F88063583.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_C741F95AC2EF1BC5.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_193B4B7997073C8D.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_45D943CD7E44AA45.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_8173ED402BFC970B.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_7C228BD6B99BC5EA.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_25191E62D0672F90.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_CA958A8AEF75B925.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_F6AC6767AF5BD284.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_918EA688BAF986EC.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_07BBF630FC7175BD.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_5BEA44200A2AED77.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_BF70BB388C5E29C9.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_35D21E7AAC780680.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_33D9E37F620FFE4E.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_D3790CCE79A0F6D7.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_98EB8D19EC5635D3.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_D4447E3000B49E4C.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_5CEBD87380C362FF.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_989CD6168D62A02D.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_AE68C50D52F54CF7.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_F7D0C9C962611D61.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_6FA5B700794151C8.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_4DC19104767C2AB0.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_DFFB82F58158E8C7.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_B3C1FD1B10E54E9F.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_478CCD74AA0EABE2.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_C4DAD5D32F4E22A8.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_A185EA1C7AA120B6.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_1E6F637CDF2D36B2.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_69BD4FAC8BA99DC1.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_B2E351856320E91B.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_996635ED05993060.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_CDE8F50562D42B6B.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_15D12B76F257E489.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_7701030F2DB3AAA5.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_51DFB9067ADDCA24.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_22ADC4E4E25972A9.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_8850738290FF4D22.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_4A3102E2C3668D4F.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_6F833B741A9D3CAA.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_B88AFDE3987D87CF.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_02EF51752B2531C3.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_436289B44FDA5D57.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_E1C91A0696AE1D45.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_9B35050E4ED86DE0.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_4C40D20E871F68E4.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_6D894BCA151F87F6.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_1D02C6438F6FC339.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_E09370D2E217A0F5.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_EA9BE81B6217072E.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_DB229A0832B9D29A.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_F3E5855633C59585.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_F465DB34F8D1FD81.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_F96DB1AE5AED28EB.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_8F8A26A2283DBAF6.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_0DE15D0CBBF41FF8.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.dll_66FC1D352076E778.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_FBC62C826EB2B4B0.mvfrm
|
BIN
Cogwheel/Library/Bee/artifacts/2400b0aP.dag/Assembly-CSharp.pdb
Normal file
BIN
Cogwheel/Library/Bee/artifacts/2400b0aP.dag/Assembly-CSharp.pdb
Normal file
Binary file not shown.
Binary file not shown.
329
Cogwheel/Library/Bee/artifacts/2400b0aP.dag/Assembly-CSharp.rsp
Normal file
329
Cogwheel/Library/Bee/artifacts/2400b0aP.dag/Assembly-CSharp.rsp
Normal file
@ -0,0 +1,329 @@
|
||||
-target:library
|
||||
-out:"Library/Bee/artifacts/2400b0aP.dag/Assembly-CSharp.dll"
|
||||
-refout:"Library/Bee/artifacts/2400b0aP.dag/Assembly-CSharp.ref.dll"
|
||||
-define:UNITY_2022_3_36
|
||||
-define:UNITY_2022_3
|
||||
-define:UNITY_2022
|
||||
-define:UNITY_5_3_OR_NEWER
|
||||
-define:UNITY_5_4_OR_NEWER
|
||||
-define:UNITY_5_5_OR_NEWER
|
||||
-define:UNITY_5_6_OR_NEWER
|
||||
-define:UNITY_2017_1_OR_NEWER
|
||||
-define:UNITY_2017_2_OR_NEWER
|
||||
-define:UNITY_2017_3_OR_NEWER
|
||||
-define:UNITY_2017_4_OR_NEWER
|
||||
-define:UNITY_2018_1_OR_NEWER
|
||||
-define:UNITY_2018_2_OR_NEWER
|
||||
-define:UNITY_2018_3_OR_NEWER
|
||||
-define:UNITY_2018_4_OR_NEWER
|
||||
-define:UNITY_2019_1_OR_NEWER
|
||||
-define:UNITY_2019_2_OR_NEWER
|
||||
-define:UNITY_2019_3_OR_NEWER
|
||||
-define:UNITY_2019_4_OR_NEWER
|
||||
-define:UNITY_2020_1_OR_NEWER
|
||||
-define:UNITY_2020_2_OR_NEWER
|
||||
-define:UNITY_2020_3_OR_NEWER
|
||||
-define:UNITY_2021_1_OR_NEWER
|
||||
-define:UNITY_2021_2_OR_NEWER
|
||||
-define:UNITY_2021_3_OR_NEWER
|
||||
-define:UNITY_2022_1_OR_NEWER
|
||||
-define:UNITY_2022_2_OR_NEWER
|
||||
-define:UNITY_2022_3_OR_NEWER
|
||||
-define:PLATFORM_ARCH_64
|
||||
-define:UNITY_64
|
||||
-define:ENABLE_AUDIO
|
||||
-define:ENABLE_CACHING
|
||||
-define:ENABLE_CLOTH
|
||||
-define:ENABLE_MICROPHONE
|
||||
-define:ENABLE_MULTIPLE_DISPLAYS
|
||||
-define:ENABLE_PHYSICS
|
||||
-define:ENABLE_TEXTURE_STREAMING
|
||||
-define:ENABLE_VIRTUALTEXTURING
|
||||
-define:ENABLE_LZMA
|
||||
-define:ENABLE_UNITYEVENTS
|
||||
-define:ENABLE_VR
|
||||
-define:ENABLE_WEBCAM
|
||||
-define:ENABLE_UNITYWEBREQUEST
|
||||
-define:ENABLE_WWW
|
||||
-define:ENABLE_CLOUD_SERVICES
|
||||
-define:ENABLE_CLOUD_SERVICES_ADS
|
||||
-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST
|
||||
-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING
|
||||
-define:ENABLE_CLOUD_SERVICES_PURCHASING
|
||||
-define:ENABLE_CLOUD_SERVICES_ANALYTICS
|
||||
-define:ENABLE_CLOUD_SERVICES_BUILD
|
||||
-define:ENABLE_EDITOR_GAME_SERVICES
|
||||
-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT
|
||||
-define:ENABLE_CLOUD_LICENSE
|
||||
-define:ENABLE_EDITOR_HUB_LICENSE
|
||||
-define:ENABLE_WEBSOCKET_CLIENT
|
||||
-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API
|
||||
-define:ENABLE_DIRECTOR_AUDIO
|
||||
-define:ENABLE_DIRECTOR_TEXTURE
|
||||
-define:ENABLE_MANAGED_JOBS
|
||||
-define:ENABLE_MANAGED_TRANSFORM_JOBS
|
||||
-define:ENABLE_MANAGED_ANIMATION_JOBS
|
||||
-define:ENABLE_MANAGED_AUDIO_JOBS
|
||||
-define:ENABLE_MANAGED_UNITYTLS
|
||||
-define:INCLUDE_DYNAMIC_GI
|
||||
-define:ENABLE_SCRIPTING_GC_WBARRIERS
|
||||
-define:PLATFORM_SUPPORTS_MONO
|
||||
-define:RENDER_SOFTWARE_CURSOR
|
||||
-define:ENABLE_VIDEO
|
||||
-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING
|
||||
-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION
|
||||
-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT
|
||||
-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE
|
||||
-define:PLATFORM_STANDALONE
|
||||
-define:TEXTCORE_1_0_OR_NEWER
|
||||
-define:PLATFORM_STANDALONE_LINUX
|
||||
-define:UNITY_STANDALONE_LINUX
|
||||
-define:UNITY_STANDALONE
|
||||
-define:UNITY_STANDALONE_LINUX_API
|
||||
-define:ENABLE_RUNTIME_GI
|
||||
-define:ENABLE_MOVIES
|
||||
-define:ENABLE_NETWORK
|
||||
-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION
|
||||
-define:ENABLE_CLUSTER_SYNC
|
||||
-define:ENABLE_CLUSTERINPUT
|
||||
-define:ENABLE_SPATIALTRACKING
|
||||
-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES
|
||||
-define:ENABLE_MONO
|
||||
-define:NET_STANDARD_2_0
|
||||
-define:NET_STANDARD
|
||||
-define:NET_STANDARD_2_1
|
||||
-define:NETSTANDARD
|
||||
-define:NETSTANDARD2_1
|
||||
-define:ENABLE_CUSTOM_RENDER_TEXTURE
|
||||
-define:ENABLE_DIRECTOR
|
||||
-define:ENABLE_LOCALIZATION
|
||||
-define:ENABLE_SPRITES
|
||||
-define:ENABLE_TERRAIN
|
||||
-define:ENABLE_TILEMAP
|
||||
-define:ENABLE_TIMELINE
|
||||
-define:ENABLE_LEGACY_INPUT_MANAGER
|
||||
-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER
|
||||
-define:CSHARP_7_OR_LATER
|
||||
-define:CSHARP_7_3_OR_NEWER
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.AIModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.AccessibilityModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.AndroidJNIModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.AnimationModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.AssetBundleModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.AudioModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.ClothModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.ClusterInputModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.ClusterRendererModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.ContentLoadModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.CoreModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.CrashReportingModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.DSPGraphModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.DirectorModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.GIModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.GameCenterModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.GridModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.HotReloadModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.IMGUIModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.ImageConversionModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.InputLegacyModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.InputModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.JSONSerializeModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.LocalizationModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.ParticleSystemModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.PerformanceReportingModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.Physics2DModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.PhysicsModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.ProfilerModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.PropertiesModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.ScreenCaptureModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.SharedInternalsModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.SpriteMaskModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.SpriteShapeModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.StreamingModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.SubstanceModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.SubsystemsModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.TLSModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.TerrainModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.TerrainPhysicsModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.TextCoreFontEngineModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.TextCoreTextEngineModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.TextRenderingModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.TilemapModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.UIElementsModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.UIModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.UmbraModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.UnityAnalyticsCommonModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.UnityAnalyticsModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.UnityConnectModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.UnityCurlModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.UnityTestProtocolModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.UnityWebRequestAssetBundleModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.UnityWebRequestAudioModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.UnityWebRequestModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.UnityWebRequestTextureModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.UnityWebRequestWWWModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.VFXModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.VRModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.VehiclesModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.VideoModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.VirtualTexturingModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.WindModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.XRModule.dll"
|
||||
-r:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/Variations/mono/Managed/UnityEngine.dll"
|
||||
-r:"Library/PackageCache/com.unity.visualscripting@1.9.4/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll"
|
||||
-r:"Library/Bee/artifacts/2400b0aP.dag/Unity.TextMeshPro.ref.dll"
|
||||
-r:"Library/Bee/artifacts/2400b0aP.dag/Unity.Timeline.ref.dll"
|
||||
-r:"Library/Bee/artifacts/2400b0aP.dag/Unity.VisualScripting.Core.ref.dll"
|
||||
-r:"Library/Bee/artifacts/2400b0aP.dag/Unity.VisualScripting.Flow.ref.dll"
|
||||
-r:"Library/Bee/artifacts/2400b0aP.dag/Unity.VisualScripting.State.ref.dll"
|
||||
-r:"Library/Bee/artifacts/2400b0aP.dag/UnityEngine.UI.ref.dll"
|
||||
-analyzer:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"
|
||||
-analyzer:"/home/spudnut/Unity/Hub/Editor/2022.3.36f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll"
|
||||
"Assets/Cogwheel/Scripts/COGWHEEL.cs"
|
||||
"Assets/Cogwheel/Scripts/CogwheelInitializer.cs"
|
||||
"Assets/Cogwheel/Scripts/CogwheelSettings.cs"
|
||||
"Assets/Cogwheel/Scripts/Command.cs"
|
||||
"Assets/Cogwheel/Scripts/CommandAttribute.cs"
|
||||
"Assets/Cogwheel/Scripts/CommandsManager.cs"
|
||||
"Assets/Cogwheel/Scripts/ICommand.cs"
|
||||
"Assets/Cogwheel/Scripts/ICommandsManager.cs"
|
||||
"Assets/Cogwheel/Scripts/Test.cs"
|
||||
"Assets/Cogwheel/Scripts/Test2.cs"
|
||||
"Assets/Cogwheel/UI/CogwheelConsole.cs"
|
||||
-langversion:9.0
|
||||
/deterministic
|
||||
/optimize+
|
||||
/debug:portable
|
||||
/nologo
|
||||
/RuntimeMetadataVersion:v4.0.30319
|
||||
/nowarn:0169
|
||||
/nowarn:0649
|
||||
/nowarn:0282
|
||||
/nowarn:1701
|
||||
/nowarn:1702
|
||||
/utf8output
|
||||
/preferreduilang:en-US
|
||||
/additionalfile:"Library/Bee/artifacts/2400b0aP.dag/Assembly-CSharp.UnityAdditionalFile.txt"
|
@ -0,0 +1 @@
|
||||
/mnt/Data/Projects/CogwheelUnity/Cogwheel
|
Binary file not shown.
@ -0,0 +1,121 @@
|
||||
ObstacleAvoidanceType
|
||||
UnityEngine
|
||||
NavMeshAgent
|
||||
NavMeshObstacleShape
|
||||
NavMeshObstacle
|
||||
OffMeshLinkType
|
||||
OffMeshLinkData
|
||||
OffMeshLink
|
||||
NavMeshHit
|
||||
NavMeshTriangulation
|
||||
NavMesh
|
||||
NavMeshPathStatus
|
||||
NavMeshPath
|
||||
AvatarMaskBodyPart
|
||||
UnityEditor
|
||||
Animations
|
||||
AvatarMask
|
||||
IAnimationJob
|
||||
UnityEngine
|
||||
Experimental
|
||||
IAnimationJobPlayable
|
||||
IAnimationWindowPreview
|
||||
AnimationHumanStream
|
||||
AnimationScriptPlayable
|
||||
AnimationStream
|
||||
TransformStreamHandle
|
||||
PropertyStreamHandle
|
||||
TransformSceneHandle
|
||||
PropertySceneHandle
|
||||
AnimationSceneHandleUtility
|
||||
AnimationStreamHandleUtility
|
||||
CustomStreamPropertyType
|
||||
AnimatorJobExtensions
|
||||
MuscleHandle
|
||||
ExpressionEvaluator
|
||||
UnityEditor
|
||||
NumericFieldDraggerUtility
|
||||
PixelPerfectRendering
|
||||
UnityEngine
|
||||
Experimental
|
||||
U2D
|
||||
SpriteBone
|
||||
Profiler
|
||||
PhotoCaptureFileOutputFormat
|
||||
XR
|
||||
WSA
|
||||
WebCam
|
||||
PhotoCapture
|
||||
PhotoCaptureFrame
|
||||
VideoCapture
|
||||
CapturePixelFormat
|
||||
WebCamMode
|
||||
CameraParameters
|
||||
PlayerLoopSystemInternal
|
||||
LowLevel
|
||||
PlayerLoopSystem
|
||||
PlayerLoop
|
||||
Initialization
|
||||
EarlyUpdate
|
||||
FixedUpdate
|
||||
PreUpdate
|
||||
Update
|
||||
PreLateUpdate
|
||||
PostLateUpdate
|
||||
ConnectionTarget
|
||||
Networking
|
||||
PlayerConnection
|
||||
IConnectionState
|
||||
VertexAttribute
|
||||
Rendering
|
||||
RenderingThreadingMode
|
||||
RendererList
|
||||
RendererUtils
|
||||
RendererListStatus
|
||||
LocalizationAsset
|
||||
UnityEditor
|
||||
SpriteShapeParameters
|
||||
UnityEngine
|
||||
Experimental
|
||||
U2D
|
||||
SpriteShapeSegment
|
||||
SpriteShapeRenderer
|
||||
SpriteShapeMetaData
|
||||
ShapeControlPoint
|
||||
AngleRangeInfo
|
||||
SpriteShapeUtility
|
||||
TerrainCallbacks
|
||||
UnityEngine
|
||||
Experimental
|
||||
TerrainAPI
|
||||
TerrainUtility
|
||||
BrushTransform
|
||||
PaintContext
|
||||
TerrainPaintUtility
|
||||
BaseCompositeField<,,>
|
||||
UnityEditor
|
||||
UIElements
|
||||
BasePopupField<,>
|
||||
BoundsField
|
||||
BoundsIntField
|
||||
RectField
|
||||
RectIntField
|
||||
Vector2Field
|
||||
Vector3Field
|
||||
Vector4Field
|
||||
Vector2IntField
|
||||
Vector3IntField
|
||||
DoubleField
|
||||
EnumField
|
||||
FloatField
|
||||
Hash128Field
|
||||
IntegerField
|
||||
LongField
|
||||
PopupField<>
|
||||
ProgressBar
|
||||
DeltaSpeed
|
||||
IValueField<>
|
||||
TextValueField<>
|
||||
TextValueFieldTraits<,>
|
||||
BaseFieldMouseDragger
|
||||
FieldMouseDragger<>
|
@ -0,0 +1,68 @@
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_F37DC0DEF554539B.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_8CDCD55534B84776.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_D3C25A4362D49DC4.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_A04840702934C834.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_1045E882DFC66B6A.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_2E2BA019F46C73D8.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_CF5C56CA363FE1DC.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_3644B3C5105CC0C0.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_952C427BE22503DE.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_EFF8466F88063583.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_C741F95AC2EF1BC5.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_193B4B7997073C8D.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_45D943CD7E44AA45.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_8173ED402BFC970B.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_7C228BD6B99BC5EA.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_25191E62D0672F90.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_CA958A8AEF75B925.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_F6AC6767AF5BD284.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_918EA688BAF986EC.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_07BBF630FC7175BD.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_5BEA44200A2AED77.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_BF70BB388C5E29C9.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_35D21E7AAC780680.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_33D9E37F620FFE4E.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_D3790CCE79A0F6D7.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_98EB8D19EC5635D3.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_D4447E3000B49E4C.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_5CEBD87380C362FF.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_989CD6168D62A02D.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_AE68C50D52F54CF7.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_F7D0C9C962611D61.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_6FA5B700794151C8.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_4DC19104767C2AB0.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_DFFB82F58158E8C7.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_B3C1FD1B10E54E9F.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_478CCD74AA0EABE2.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_C4DAD5D32F4E22A8.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_A185EA1C7AA120B6.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_1E6F637CDF2D36B2.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_69BD4FAC8BA99DC1.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_B2E351856320E91B.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_996635ED05993060.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_CDE8F50562D42B6B.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_15D12B76F257E489.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_7701030F2DB3AAA5.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_51DFB9067ADDCA24.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_22ADC4E4E25972A9.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_8850738290FF4D22.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_4A3102E2C3668D4F.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_6F833B741A9D3CAA.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_B88AFDE3987D87CF.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_02EF51752B2531C3.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_436289B44FDA5D57.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_E1C91A0696AE1D45.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_9B35050E4ED86DE0.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_4C40D20E871F68E4.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_6D894BCA151F87F6.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_1D02C6438F6FC339.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_E09370D2E217A0F5.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_EA9BE81B6217072E.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_DB229A0832B9D29A.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_F3E5855633C59585.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_F465DB34F8D1FD81.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_F96DB1AE5AED28EB.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_8F8A26A2283DBAF6.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_0DE15D0CBBF41FF8.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/UnityEngine.dll_66FC1D352076E778.mvfrm
|
||||
Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_FBC62C826EB2B4B0.mvfrm
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user