├── .gitignore ├── .vs └── AutomataUI │ ├── DesignTimeBuild │ └── .dtbcache │ ├── v14 │ └── .suo │ ├── v15 │ ├── .suo │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal │ └── v16 │ └── .suo ├── AutomataUI.sln ├── AutomataUI ├── AutomataUI.csproj ├── AutomataUI.csproj.user ├── Framedelay.cs ├── Library │ ├── Automata.Data.cs │ └── Automata.Drawing.cs ├── Main.cs ├── Nodes │ ├── GetRegion.cs │ ├── GetState.cs │ ├── Logging.cs │ ├── ResetToState.cs │ ├── SetTransition.cs │ ├── TriggerTransition.cs │ └── Undo.cs ├── Properties │ └── AssemblyInfo.cs ├── ToJSON.cs ├── bin │ └── Release │ │ ├── AutomataUI.dll │ │ └── AutomataUI.pdb ├── obj │ ├── Debug │ │ ├── AutomataUI.csproj.CopyComplete │ │ ├── AutomataUI.csproj.CoreCompileInputs.cache │ │ ├── AutomataUI.csproj.FileListAbsolute.txt │ │ ├── AutomataUI.dll │ │ ├── AutomataUI.pdb │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── Release │ │ ├── .NETFramework,Version=v4.6.1.AssemblyAttributes.cs │ │ ├── AutomataUI.csproj.CopyComplete │ │ ├── AutomataUI.csproj.CoreCompileInputs.cache │ │ ├── AutomataUI.csproj.FileListAbsolute.txt │ │ ├── AutomataUI.csprojAssemblyReference.cache │ │ ├── AutomataUI.dll │ │ ├── AutomataUI.pdb │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── README.md ├── packages ├── Newtonsoft.Json.13.0.1 │ ├── .signature.p7s │ ├── LICENSE.md │ ├── Newtonsoft.Json.13.0.1.nupkg │ ├── lib │ │ ├── net20 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.3 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── netstandard2.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ └── packageIcon.png ├── VVVV.Core.35.1.0-develop-2298 │ ├── VVVV.Core.35.1.0-develop-2298.nupkg │ ├── lib │ │ └── net46 │ │ │ └── VVVV.Core.dll │ └── tools │ │ └── install.ps1 ├── VVVV.Nodes.Generic.35.1.0-develop-2298 │ ├── VVVV.Nodes.Generic.35.1.0-develop-2298.nupkg │ └── build │ │ └── net46 │ │ ├── VVVV.Nodes.Generic.targets │ │ └── lib │ │ └── AnyCPU │ │ ├── VVVV.Nodes.Generic.XML │ │ └── VVVV.Nodes.Generic.dll ├── VVVV.PluginInterfaces.35.1.0-develop-2298 │ ├── VVVV.PluginInterfaces.35.1.0-develop-2298.nupkg │ └── build │ │ └── net46 │ │ ├── VVVV.PluginInterfaces.targets │ │ └── lib │ │ └── AnyCPU │ │ ├── VVVV.PluginInterfaces.dll │ │ └── VVVV.PluginInterfaces.xml ├── VVVV.SlimDX.1.0.3 │ ├── VVVV.SlimDX.1.0.3.nupkg │ └── lib │ │ └── net40 │ │ ├── x64 │ │ ├── SlimDX.dll │ │ └── SlimDX.xml │ │ └── x86 │ │ ├── SlimDX.dll │ │ └── SlimDX.xml ├── VVVV.System.ComponentModel.Composition.Codeplex.2.5.0 │ ├── VVVV.System.ComponentModel.Composition.Codeplex.2.5.0.nupkg │ ├── lib │ │ └── net40 │ │ │ ├── System.ComponentModel.Composition.CodePlex.dll │ │ │ ├── System.ComponentModel.Composition.Codeplex.xml │ │ │ ├── System.ComponentModel.Composition.Registration.CodePlex.dll │ │ │ ├── System.ComponentModel.Composition.Web.Mvc.CodePlex.dll │ │ │ └── System.Reflection.Context.CodePlex.dll │ └── tools │ │ └── install.ps1 └── VVVV.Utils.35.1.0-develop-2298 │ ├── VVVV.Utils.35.1.0-develop-2298.nupkg │ ├── lib │ └── net46 │ │ ├── VVVV.Utils.dll │ │ └── VVVV.Utils.xml │ └── tools │ └── install.ps1 └── packs └── AutomataUI ├── girlpower ├── AutomataUI (Animation) help.v4p └── logging.txt └── nodes └── plugins ├── AutomataUI (Animation) help.v4p ├── AutomataUI.dll ├── AutomataUI.pdb ├── GetRegion (AutomataUI Animation) help.v4p ├── GetState (AutomataUI Animation) help.v4p ├── Microsoft.Bcl.AsyncInterfaces.dll ├── Newtonsoft.Json.dll ├── Newtonsoft.Json.xml ├── ResetToState (AutomataUI Animation) help.v4p ├── SetTransitionTime (AutomataUI Animation) help.v4p ├── System.Memory.dll ├── System.Numerics.Vectors.dll ├── System.Runtime.CompilerServices.Unsafe.dll ├── System.Text.Encodings.Web.dll ├── System.Text.Json.dll ├── System.Threading.Tasks.Extensions.dll └── TriggerTransition (AutomataUI Animation) help.v4p /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/AutomataUI/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/.vs/AutomataUI/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /.vs/AutomataUI/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/.vs/AutomataUI/v14/.suo -------------------------------------------------------------------------------- /.vs/AutomataUI/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/.vs/AutomataUI/v15/.suo -------------------------------------------------------------------------------- /.vs/AutomataUI/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/AutomataUI/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/.vs/AutomataUI/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/AutomataUI/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/.vs/AutomataUI/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/AutomataUI/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/.vs/AutomataUI/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /.vs/AutomataUI/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/.vs/AutomataUI/v16/.suo -------------------------------------------------------------------------------- /AutomataUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI.sln -------------------------------------------------------------------------------- /AutomataUI/AutomataUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/AutomataUI.csproj -------------------------------------------------------------------------------- /AutomataUI/AutomataUI.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/AutomataUI.csproj.user -------------------------------------------------------------------------------- /AutomataUI/Framedelay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/Framedelay.cs -------------------------------------------------------------------------------- /AutomataUI/Library/Automata.Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/Library/Automata.Data.cs -------------------------------------------------------------------------------- /AutomataUI/Library/Automata.Drawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/Library/Automata.Drawing.cs -------------------------------------------------------------------------------- /AutomataUI/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/Main.cs -------------------------------------------------------------------------------- /AutomataUI/Nodes/GetRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/Nodes/GetRegion.cs -------------------------------------------------------------------------------- /AutomataUI/Nodes/GetState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/Nodes/GetState.cs -------------------------------------------------------------------------------- /AutomataUI/Nodes/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/Nodes/Logging.cs -------------------------------------------------------------------------------- /AutomataUI/Nodes/ResetToState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/Nodes/ResetToState.cs -------------------------------------------------------------------------------- /AutomataUI/Nodes/SetTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/Nodes/SetTransition.cs -------------------------------------------------------------------------------- /AutomataUI/Nodes/TriggerTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/Nodes/TriggerTransition.cs -------------------------------------------------------------------------------- /AutomataUI/Nodes/Undo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/Nodes/Undo.cs -------------------------------------------------------------------------------- /AutomataUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AutomataUI/ToJSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/ToJSON.cs -------------------------------------------------------------------------------- /AutomataUI/bin/Release/AutomataUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/bin/Release/AutomataUI.dll -------------------------------------------------------------------------------- /AutomataUI/bin/Release/AutomataUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/bin/Release/AutomataUI.pdb -------------------------------------------------------------------------------- /AutomataUI/obj/Debug/AutomataUI.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AutomataUI/obj/Debug/AutomataUI.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 961b65eadcf7fa71a7b94f921478a469684f247c 2 | -------------------------------------------------------------------------------- /AutomataUI/obj/Debug/AutomataUI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/obj/Debug/AutomataUI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /AutomataUI/obj/Debug/AutomataUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/obj/Debug/AutomataUI.dll -------------------------------------------------------------------------------- /AutomataUI/obj/Debug/AutomataUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/obj/Debug/AutomataUI.pdb -------------------------------------------------------------------------------- /AutomataUI/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /AutomataUI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /AutomataUI/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AutomataUI/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AutomataUI/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AutomataUI/obj/Release/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/obj/Release/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /AutomataUI/obj/Release/AutomataUI.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AutomataUI/obj/Release/AutomataUI.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f407a6cced8e15854beb30ebab1c770a82bc1e5e 2 | -------------------------------------------------------------------------------- /AutomataUI/obj/Release/AutomataUI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/obj/Release/AutomataUI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /AutomataUI/obj/Release/AutomataUI.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/obj/Release/AutomataUI.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /AutomataUI/obj/Release/AutomataUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/obj/Release/AutomataUI.dll -------------------------------------------------------------------------------- /AutomataUI/obj/Release/AutomataUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/obj/Release/AutomataUI.pdb -------------------------------------------------------------------------------- /AutomataUI/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /AutomataUI/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /AutomataUI/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AutomataUI/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AutomataUI/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AutomataUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/AutomataUI/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/README.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/Newtonsoft.Json.13.0.1/.signature.p7s -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/Newtonsoft.Json.13.0.1/LICENSE.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/Newtonsoft.Json.13.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/Newtonsoft.Json.13.0.1/Newtonsoft.Json.13.0.1.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/Newtonsoft.Json.13.0.1/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/Newtonsoft.Json.13.0.1/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/Newtonsoft.Json.13.0.1/packageIcon.png -------------------------------------------------------------------------------- /packages/VVVV.Core.35.1.0-develop-2298/VVVV.Core.35.1.0-develop-2298.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.Core.35.1.0-develop-2298/VVVV.Core.35.1.0-develop-2298.nupkg -------------------------------------------------------------------------------- /packages/VVVV.Core.35.1.0-develop-2298/lib/net46/VVVV.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.Core.35.1.0-develop-2298/lib/net46/VVVV.Core.dll -------------------------------------------------------------------------------- /packages/VVVV.Core.35.1.0-develop-2298/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.Core.35.1.0-develop-2298/tools/install.ps1 -------------------------------------------------------------------------------- /packages/VVVV.Nodes.Generic.35.1.0-develop-2298/VVVV.Nodes.Generic.35.1.0-develop-2298.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.Nodes.Generic.35.1.0-develop-2298/VVVV.Nodes.Generic.35.1.0-develop-2298.nupkg -------------------------------------------------------------------------------- /packages/VVVV.Nodes.Generic.35.1.0-develop-2298/build/net46/VVVV.Nodes.Generic.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.Nodes.Generic.35.1.0-develop-2298/build/net46/VVVV.Nodes.Generic.targets -------------------------------------------------------------------------------- /packages/VVVV.Nodes.Generic.35.1.0-develop-2298/build/net46/lib/AnyCPU/VVVV.Nodes.Generic.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.Nodes.Generic.35.1.0-develop-2298/build/net46/lib/AnyCPU/VVVV.Nodes.Generic.XML -------------------------------------------------------------------------------- /packages/VVVV.Nodes.Generic.35.1.0-develop-2298/build/net46/lib/AnyCPU/VVVV.Nodes.Generic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.Nodes.Generic.35.1.0-develop-2298/build/net46/lib/AnyCPU/VVVV.Nodes.Generic.dll -------------------------------------------------------------------------------- /packages/VVVV.PluginInterfaces.35.1.0-develop-2298/VVVV.PluginInterfaces.35.1.0-develop-2298.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.PluginInterfaces.35.1.0-develop-2298/VVVV.PluginInterfaces.35.1.0-develop-2298.nupkg -------------------------------------------------------------------------------- /packages/VVVV.PluginInterfaces.35.1.0-develop-2298/build/net46/VVVV.PluginInterfaces.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.PluginInterfaces.35.1.0-develop-2298/build/net46/VVVV.PluginInterfaces.targets -------------------------------------------------------------------------------- /packages/VVVV.PluginInterfaces.35.1.0-develop-2298/build/net46/lib/AnyCPU/VVVV.PluginInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.PluginInterfaces.35.1.0-develop-2298/build/net46/lib/AnyCPU/VVVV.PluginInterfaces.dll -------------------------------------------------------------------------------- /packages/VVVV.PluginInterfaces.35.1.0-develop-2298/build/net46/lib/AnyCPU/VVVV.PluginInterfaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.PluginInterfaces.35.1.0-develop-2298/build/net46/lib/AnyCPU/VVVV.PluginInterfaces.xml -------------------------------------------------------------------------------- /packages/VVVV.SlimDX.1.0.3/VVVV.SlimDX.1.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.SlimDX.1.0.3/VVVV.SlimDX.1.0.3.nupkg -------------------------------------------------------------------------------- /packages/VVVV.SlimDX.1.0.3/lib/net40/x64/SlimDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.SlimDX.1.0.3/lib/net40/x64/SlimDX.dll -------------------------------------------------------------------------------- /packages/VVVV.SlimDX.1.0.3/lib/net40/x64/SlimDX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.SlimDX.1.0.3/lib/net40/x64/SlimDX.xml -------------------------------------------------------------------------------- /packages/VVVV.SlimDX.1.0.3/lib/net40/x86/SlimDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.SlimDX.1.0.3/lib/net40/x86/SlimDX.dll -------------------------------------------------------------------------------- /packages/VVVV.SlimDX.1.0.3/lib/net40/x86/SlimDX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.SlimDX.1.0.3/lib/net40/x86/SlimDX.xml -------------------------------------------------------------------------------- /packages/VVVV.System.ComponentModel.Composition.Codeplex.2.5.0/VVVV.System.ComponentModel.Composition.Codeplex.2.5.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.System.ComponentModel.Composition.Codeplex.2.5.0/VVVV.System.ComponentModel.Composition.Codeplex.2.5.0.nupkg -------------------------------------------------------------------------------- /packages/VVVV.System.ComponentModel.Composition.Codeplex.2.5.0/lib/net40/System.ComponentModel.Composition.CodePlex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.System.ComponentModel.Composition.Codeplex.2.5.0/lib/net40/System.ComponentModel.Composition.CodePlex.dll -------------------------------------------------------------------------------- /packages/VVVV.System.ComponentModel.Composition.Codeplex.2.5.0/lib/net40/System.ComponentModel.Composition.Codeplex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.System.ComponentModel.Composition.Codeplex.2.5.0/lib/net40/System.ComponentModel.Composition.Codeplex.xml -------------------------------------------------------------------------------- /packages/VVVV.System.ComponentModel.Composition.Codeplex.2.5.0/lib/net40/System.ComponentModel.Composition.Registration.CodePlex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.System.ComponentModel.Composition.Codeplex.2.5.0/lib/net40/System.ComponentModel.Composition.Registration.CodePlex.dll -------------------------------------------------------------------------------- /packages/VVVV.System.ComponentModel.Composition.Codeplex.2.5.0/lib/net40/System.ComponentModel.Composition.Web.Mvc.CodePlex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.System.ComponentModel.Composition.Codeplex.2.5.0/lib/net40/System.ComponentModel.Composition.Web.Mvc.CodePlex.dll -------------------------------------------------------------------------------- /packages/VVVV.System.ComponentModel.Composition.Codeplex.2.5.0/lib/net40/System.Reflection.Context.CodePlex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.System.ComponentModel.Composition.Codeplex.2.5.0/lib/net40/System.Reflection.Context.CodePlex.dll -------------------------------------------------------------------------------- /packages/VVVV.System.ComponentModel.Composition.Codeplex.2.5.0/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.System.ComponentModel.Composition.Codeplex.2.5.0/tools/install.ps1 -------------------------------------------------------------------------------- /packages/VVVV.Utils.35.1.0-develop-2298/VVVV.Utils.35.1.0-develop-2298.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.Utils.35.1.0-develop-2298/VVVV.Utils.35.1.0-develop-2298.nupkg -------------------------------------------------------------------------------- /packages/VVVV.Utils.35.1.0-develop-2298/lib/net46/VVVV.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.Utils.35.1.0-develop-2298/lib/net46/VVVV.Utils.dll -------------------------------------------------------------------------------- /packages/VVVV.Utils.35.1.0-develop-2298/lib/net46/VVVV.Utils.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.Utils.35.1.0-develop-2298/lib/net46/VVVV.Utils.xml -------------------------------------------------------------------------------- /packages/VVVV.Utils.35.1.0-develop-2298/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packages/VVVV.Utils.35.1.0-develop-2298/tools/install.ps1 -------------------------------------------------------------------------------- /packs/AutomataUI/girlpower/AutomataUI (Animation) help.v4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/girlpower/AutomataUI (Animation) help.v4p -------------------------------------------------------------------------------- /packs/AutomataUI/girlpower/logging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/girlpower/logging.txt -------------------------------------------------------------------------------- /packs/AutomataUI/nodes/plugins/AutomataUI (Animation) help.v4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/nodes/plugins/AutomataUI (Animation) help.v4p -------------------------------------------------------------------------------- /packs/AutomataUI/nodes/plugins/AutomataUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/nodes/plugins/AutomataUI.dll -------------------------------------------------------------------------------- /packs/AutomataUI/nodes/plugins/AutomataUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/nodes/plugins/AutomataUI.pdb -------------------------------------------------------------------------------- /packs/AutomataUI/nodes/plugins/GetRegion (AutomataUI Animation) help.v4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/nodes/plugins/GetRegion (AutomataUI Animation) help.v4p -------------------------------------------------------------------------------- /packs/AutomataUI/nodes/plugins/GetState (AutomataUI Animation) help.v4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/nodes/plugins/GetState (AutomataUI Animation) help.v4p -------------------------------------------------------------------------------- /packs/AutomataUI/nodes/plugins/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/nodes/plugins/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /packs/AutomataUI/nodes/plugins/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/nodes/plugins/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packs/AutomataUI/nodes/plugins/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/nodes/plugins/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packs/AutomataUI/nodes/plugins/ResetToState (AutomataUI Animation) help.v4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/nodes/plugins/ResetToState (AutomataUI Animation) help.v4p -------------------------------------------------------------------------------- /packs/AutomataUI/nodes/plugins/SetTransitionTime (AutomataUI Animation) help.v4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/nodes/plugins/SetTransitionTime (AutomataUI Animation) help.v4p -------------------------------------------------------------------------------- /packs/AutomataUI/nodes/plugins/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/nodes/plugins/System.Memory.dll -------------------------------------------------------------------------------- /packs/AutomataUI/nodes/plugins/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/nodes/plugins/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packs/AutomataUI/nodes/plugins/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/nodes/plugins/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packs/AutomataUI/nodes/plugins/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/nodes/plugins/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /packs/AutomataUI/nodes/plugins/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/nodes/plugins/System.Text.Json.dll -------------------------------------------------------------------------------- /packs/AutomataUI/nodes/plugins/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/nodes/plugins/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packs/AutomataUI/nodes/plugins/TriggerTransition (AutomataUI Animation) help.v4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirmachenbunt/AutomataUI/HEAD/packs/AutomataUI/nodes/plugins/TriggerTransition (AutomataUI Animation) help.v4p --------------------------------------------------------------------------------