├── .github └── FUNDING.yml ├── .gitignore ├── .idea ├── .idea.VRCDollyManager │ └── .idea │ │ ├── .gitignore │ │ ├── avalonia.xml │ │ ├── encodings.xml │ │ ├── indexLayout.xml │ │ ├── scssLintPlugin.xml │ │ ├── vcs.xml │ │ └── watcherTasks.xml └── config │ └── applicationhost.config ├── .run └── Publish.run.xml ├── LICENSE.txt ├── README.md ├── VRCDollyManager.sln ├── VRCDollyManager.sln.DotSettings.user ├── VRCDollyManager ├── App.axaml ├── App.axaml.cs ├── Assets │ └── icon.ico ├── Client │ ├── BlazorWebView.cs │ ├── ViewModels │ │ ├── ClientWindowViewModel.cs │ │ └── ViewModelBase.cs │ └── Views │ │ ├── ClientWindow.axaml │ │ └── ClientWindow.axaml.cs ├── Components │ ├── Chip.razor │ ├── DirectorPanel.razor │ ├── DollyForm.razor │ ├── DollyRenderer.razor │ ├── DollyRowItem.razor │ ├── DollySettings.razor │ ├── DollySideContainer.razor │ ├── DollyTable.razor │ ├── FileDropZoneWatcher.razor │ ├── LinkButton.razor │ ├── Modal.razor │ ├── Modals │ │ ├── Settings │ │ │ ├── About.razor │ │ │ ├── AboutSocialIcon.razor │ │ │ ├── General.razor │ │ │ ├── HotkeySettings.razor │ │ │ ├── Integrations.razor │ │ │ ├── KeybindCapture.razor │ │ │ ├── OSCSettings.razor │ │ │ ├── SettingsContextItem.razor │ │ │ ├── SettingsIndicator.razor │ │ │ ├── SettingsIndicatorColor.cs │ │ │ ├── SettingsOptions.cs │ │ │ ├── SettingsToggleSwitch.razor │ │ │ └── SteamVRSettings.razor │ │ └── SettingsModal.razor │ ├── Notification.razor │ ├── NotificationBar.razor │ ├── OSCButton.razor │ ├── SearchBar.razor │ ├── SettingsButton.razor │ ├── SocialIcon.razor │ └── TagEditor.razor ├── Data │ └── DollyDbContext.cs ├── Extensions │ ├── BrowserHelper.cs │ ├── DollyExtensions.cs │ ├── DollyManagerFilePaths.cs │ └── ServiceExtension.cs ├── Main.razor ├── Models │ ├── AppConstants.cs │ ├── AppFlags.cs │ ├── CameraKeyFrame.cs │ ├── DirectorDolly.cs │ ├── Dolly.cs │ ├── DollyChangeEventArgs.cs │ ├── DollyChangeType.cs │ ├── DollySidePanelOptions.cs │ ├── HotkeyConfig.cs │ ├── ModalSize.cs │ ├── NotificationMessage.cs │ ├── NotificationType.cs │ └── OSCSubscriptionEvent.cs ├── Pages │ ├── Index.razor │ ├── Index.razor.cs │ └── MainLayout.razor ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── DollyWatcherService.cs │ ├── KeypressWatcherService.cs │ ├── NotificationService.cs │ ├── OSC │ │ ├── IOscService.cs │ │ ├── OSCService.cs │ │ └── OSCServiceConnectionEvent.cs │ └── SteamVR │ │ ├── ISteamVrService.cs │ │ ├── SteamVRManifestChangedEvent.cs │ │ ├── SteamVRMonitorChangeEvent.cs │ │ ├── SteamVRService.cs │ │ └── openvr_api.cs ├── SetupClient.cs ├── VRCDollyManager.csproj ├── _Imports.razor ├── app.manifest ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── net8.0-windows │ │ └── win-x64 │ │ ├── Avalonia.Base.dll │ │ ├── Avalonia.Controls.ColorPicker.dll │ │ ├── Avalonia.Controls.DataGrid.dll │ │ ├── Avalonia.Controls.dll │ │ ├── Avalonia.DesignerSupport.dll │ │ ├── Avalonia.Desktop.dll │ │ ├── Avalonia.Diagnostics.dll │ │ ├── Avalonia.Dialogs.dll │ │ ├── Avalonia.FreeDesktop.dll │ │ ├── Avalonia.Markup.Xaml.dll │ │ ├── Avalonia.Markup.dll │ │ ├── Avalonia.Metal.dll │ │ ├── Avalonia.MicroCom.dll │ │ ├── Avalonia.Native.dll │ │ ├── Avalonia.OpenGL.dll │ │ ├── Avalonia.ReactiveUI.dll │ │ ├── Avalonia.Remote.Protocol.dll │ │ ├── Avalonia.Skia.dll │ │ ├── Avalonia.Themes.Fluent.dll │ │ ├── Avalonia.Themes.Simple.dll │ │ ├── Avalonia.Vulkan.dll │ │ ├── Avalonia.Win32.dll │ │ ├── Avalonia.X11.dll │ │ ├── Avalonia.dll │ │ ├── Blazicons.Lucide.dll │ │ ├── Blazicons.dll │ │ ├── BlazorComponentUtilities.dll │ │ ├── Blazored.LocalStorage.dll │ │ ├── Dapper.dll │ │ ├── DynamicData.dll │ │ ├── EmbedIO.dll │ │ ├── HarfBuzzSharp.dll │ │ ├── Humanizer.dll │ │ ├── LucHeart.CoreOSC.dll │ │ ├── Lucide.Blazor.Generator.dll │ │ ├── Lucide.Blazor.Net.dll │ │ ├── MeaMod.DNS.dll │ │ ├── MicroCom.Runtime.dll │ │ ├── Microsoft.AspNetCore.Authorization.dll │ │ ├── Microsoft.AspNetCore.Components.Forms.dll │ │ ├── Microsoft.AspNetCore.Components.Web.dll │ │ ├── Microsoft.AspNetCore.Components.WebView.WindowsForms.dll │ │ ├── Microsoft.AspNetCore.Components.WebView.dll │ │ ├── Microsoft.AspNetCore.Components.dll │ │ ├── Microsoft.AspNetCore.Metadata.dll │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.Data.Sqlite.dll │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ ├── Microsoft.EntityFrameworkCore.Sqlite.dll │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ ├── Microsoft.Extensions.FileProviders.Embedded.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── Microsoft.Extensions.Logging.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Microsoft.JSInterop.dll │ │ ├── Microsoft.Web.WebView2.Core.dll │ │ ├── Microsoft.Web.WebView2.WinForms.dll │ │ ├── Microsoft.Web.WebView2.Wpf.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── OscQueryLibrary.dll │ │ ├── ReactiveUI.dll │ │ ├── SQLitePCLRaw.batteries_v2.dll │ │ ├── SQLitePCLRaw.core.dll │ │ ├── SQLitePCLRaw.provider.e_sqlite3.dll │ │ ├── Serilog.Sinks.Async.dll │ │ ├── Serilog.Sinks.File.dll │ │ ├── Serilog.dll │ │ ├── SkiaSharp.dll │ │ ├── Splat.dll │ │ ├── Swan.Lite.dll │ │ ├── System.Composition.AttributedModel.dll │ │ ├── System.Composition.Convention.dll │ │ ├── System.Composition.Hosting.dll │ │ ├── System.Composition.Runtime.dll │ │ ├── System.Composition.TypedParts.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.IO.Pipelines.dll │ │ ├── System.Reactive.dll │ │ ├── System.Text.Encodings.Web.dll │ │ ├── System.Text.Json.dll │ │ ├── Tmds.DBus.Protocol.dll │ │ ├── VRCDollyManager.deps.json │ │ ├── VRCDollyManager.dll │ │ ├── VRCDollyManager.exe │ │ ├── VRCDollyManager.pdb │ │ ├── VRCDollyManager.runtimeconfig.json │ │ ├── VRCDollyManager.staticwebassets.endpoints.json │ │ ├── VRCDollyManager.staticwebassets.runtime.json │ │ ├── WebView2Loader.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── av_libglesv2.dll │ │ ├── cs │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── de │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── e_sqlite3.dll │ │ ├── es │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── fr │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── it │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ja │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ko │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── libHarfBuzzSharp.dll │ │ ├── libSkiaSharp.dll │ │ ├── pl │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pt-BR │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ru │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── tr │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── vrc-oscquery-lib.dll │ │ ├── zh-Hans │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll ├── manifest.vrmanifest ├── obj │ └── Debug │ │ └── net8.0-windows │ │ └── win-x64 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── Avalonia │ │ └── Resources.Inputs.cache │ │ ├── VRCDolly.16209C8B.Up2Date │ │ ├── VRCDollyManager.GlobalUsings.g.cs │ │ ├── VRCDollyManager.genruntimeconfig.cache │ │ ├── scopedcss │ │ └── bundle │ │ │ └── VRCDollyManager.styles.css │ │ ├── staticwebassets.development.json │ │ ├── staticwebassets.pack.json │ │ └── staticwebassets │ │ ├── msbuild.build.VRCDollyManager.props │ │ ├── msbuild.buildMultiTargeting.VRCDollyManager.props │ │ └── msbuild.buildTransitive.VRCDollyManager.props ├── openvr_api.dll └── wwwroot │ ├── css │ ├── app.css │ ├── app.css.map │ ├── app.scss │ └── scss │ │ ├── _about.scss │ │ ├── _animations.scss │ │ ├── _chip.scss │ │ ├── _form.scss │ │ ├── _frame.scss │ │ ├── _modal.scss │ │ ├── _notification.scss │ │ ├── _pad.scss │ │ ├── _settings.scss │ │ ├── _social.scss │ │ ├── _table.scss │ │ ├── _threejs.scss │ │ └── _variables.scss │ ├── images │ ├── DollyManagerLogo.png │ ├── Duin.svg │ └── duin.jpg │ ├── index.html │ └── js │ ├── fileDrop.js │ ├── threeInterop.js │ └── threejs │ └── three.core.min.js └── assets ├── DM-Example.gif └── DollyManagerLogo.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /VRCDollyManager/bin/ 2 | -------------------------------------------------------------------------------- /.idea/.idea.VRCDollyManager/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/.idea/.idea.VRCDollyManager/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.VRCDollyManager/.idea/avalonia.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/.idea/.idea.VRCDollyManager/.idea/avalonia.xml -------------------------------------------------------------------------------- /.idea/.idea.VRCDollyManager/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/.idea/.idea.VRCDollyManager/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.VRCDollyManager/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/.idea/.idea.VRCDollyManager/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.VRCDollyManager/.idea/scssLintPlugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/.idea/.idea.VRCDollyManager/.idea/scssLintPlugin.xml -------------------------------------------------------------------------------- /.idea/.idea.VRCDollyManager/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/.idea/.idea.VRCDollyManager/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/.idea.VRCDollyManager/.idea/watcherTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/.idea/.idea.VRCDollyManager/.idea/watcherTasks.xml -------------------------------------------------------------------------------- /.idea/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/.idea/config/applicationhost.config -------------------------------------------------------------------------------- /.run/Publish.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/.run/Publish.run.xml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/README.md -------------------------------------------------------------------------------- /VRCDollyManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager.sln -------------------------------------------------------------------------------- /VRCDollyManager.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager.sln.DotSettings.user -------------------------------------------------------------------------------- /VRCDollyManager/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/App.axaml -------------------------------------------------------------------------------- /VRCDollyManager/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/App.axaml.cs -------------------------------------------------------------------------------- /VRCDollyManager/Assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Assets/icon.ico -------------------------------------------------------------------------------- /VRCDollyManager/Client/BlazorWebView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Client/BlazorWebView.cs -------------------------------------------------------------------------------- /VRCDollyManager/Client/ViewModels/ClientWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Client/ViewModels/ClientWindowViewModel.cs -------------------------------------------------------------------------------- /VRCDollyManager/Client/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Client/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /VRCDollyManager/Client/Views/ClientWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Client/Views/ClientWindow.axaml -------------------------------------------------------------------------------- /VRCDollyManager/Client/Views/ClientWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Client/Views/ClientWindow.axaml.cs -------------------------------------------------------------------------------- /VRCDollyManager/Components/Chip.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/Chip.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/DirectorPanel.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/DirectorPanel.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/DollyForm.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/DollyForm.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/DollyRenderer.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/DollyRenderer.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/DollyRowItem.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/DollyRowItem.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/DollySettings.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/DollySettings.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/DollySideContainer.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/DollySideContainer.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/DollyTable.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/DollyTable.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/FileDropZoneWatcher.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/FileDropZoneWatcher.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/LinkButton.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/LinkButton.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/Modal.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/Modal.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/Modals/Settings/About.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/Modals/Settings/About.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/Modals/Settings/AboutSocialIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/Modals/Settings/AboutSocialIcon.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/Modals/Settings/General.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/Modals/Settings/General.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/Modals/Settings/HotkeySettings.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/Modals/Settings/HotkeySettings.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/Modals/Settings/Integrations.razor: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /VRCDollyManager/Components/Modals/Settings/KeybindCapture.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/Modals/Settings/KeybindCapture.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/Modals/Settings/OSCSettings.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/Modals/Settings/OSCSettings.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/Modals/Settings/SettingsContextItem.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/Modals/Settings/SettingsContextItem.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/Modals/Settings/SettingsIndicator.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/Modals/Settings/SettingsIndicator.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/Modals/Settings/SettingsIndicatorColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/Modals/Settings/SettingsIndicatorColor.cs -------------------------------------------------------------------------------- /VRCDollyManager/Components/Modals/Settings/SettingsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/Modals/Settings/SettingsOptions.cs -------------------------------------------------------------------------------- /VRCDollyManager/Components/Modals/Settings/SettingsToggleSwitch.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/Modals/Settings/SettingsToggleSwitch.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/Modals/Settings/SteamVRSettings.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/Modals/Settings/SteamVRSettings.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/Modals/SettingsModal.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/Modals/SettingsModal.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/Notification.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/Notification.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/NotificationBar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/NotificationBar.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/OSCButton.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/OSCButton.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/SearchBar.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/SearchBar.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/SettingsButton.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/SettingsButton.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/SocialIcon.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/SocialIcon.razor -------------------------------------------------------------------------------- /VRCDollyManager/Components/TagEditor.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Components/TagEditor.razor -------------------------------------------------------------------------------- /VRCDollyManager/Data/DollyDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Data/DollyDbContext.cs -------------------------------------------------------------------------------- /VRCDollyManager/Extensions/BrowserHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Extensions/BrowserHelper.cs -------------------------------------------------------------------------------- /VRCDollyManager/Extensions/DollyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Extensions/DollyExtensions.cs -------------------------------------------------------------------------------- /VRCDollyManager/Extensions/DollyManagerFilePaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Extensions/DollyManagerFilePaths.cs -------------------------------------------------------------------------------- /VRCDollyManager/Extensions/ServiceExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Extensions/ServiceExtension.cs -------------------------------------------------------------------------------- /VRCDollyManager/Main.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Main.razor -------------------------------------------------------------------------------- /VRCDollyManager/Models/AppConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Models/AppConstants.cs -------------------------------------------------------------------------------- /VRCDollyManager/Models/AppFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Models/AppFlags.cs -------------------------------------------------------------------------------- /VRCDollyManager/Models/CameraKeyFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Models/CameraKeyFrame.cs -------------------------------------------------------------------------------- /VRCDollyManager/Models/DirectorDolly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Models/DirectorDolly.cs -------------------------------------------------------------------------------- /VRCDollyManager/Models/Dolly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Models/Dolly.cs -------------------------------------------------------------------------------- /VRCDollyManager/Models/DollyChangeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Models/DollyChangeEventArgs.cs -------------------------------------------------------------------------------- /VRCDollyManager/Models/DollyChangeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Models/DollyChangeType.cs -------------------------------------------------------------------------------- /VRCDollyManager/Models/DollySidePanelOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Models/DollySidePanelOptions.cs -------------------------------------------------------------------------------- /VRCDollyManager/Models/HotkeyConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Models/HotkeyConfig.cs -------------------------------------------------------------------------------- /VRCDollyManager/Models/ModalSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Models/ModalSize.cs -------------------------------------------------------------------------------- /VRCDollyManager/Models/NotificationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Models/NotificationMessage.cs -------------------------------------------------------------------------------- /VRCDollyManager/Models/NotificationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Models/NotificationType.cs -------------------------------------------------------------------------------- /VRCDollyManager/Models/OSCSubscriptionEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Models/OSCSubscriptionEvent.cs -------------------------------------------------------------------------------- /VRCDollyManager/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Pages/Index.razor -------------------------------------------------------------------------------- /VRCDollyManager/Pages/Index.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Pages/Index.razor.cs -------------------------------------------------------------------------------- /VRCDollyManager/Pages/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Pages/MainLayout.razor -------------------------------------------------------------------------------- /VRCDollyManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Program.cs -------------------------------------------------------------------------------- /VRCDollyManager/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Properties/launchSettings.json -------------------------------------------------------------------------------- /VRCDollyManager/Services/DollyWatcherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Services/DollyWatcherService.cs -------------------------------------------------------------------------------- /VRCDollyManager/Services/KeypressWatcherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Services/KeypressWatcherService.cs -------------------------------------------------------------------------------- /VRCDollyManager/Services/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Services/NotificationService.cs -------------------------------------------------------------------------------- /VRCDollyManager/Services/OSC/IOscService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Services/OSC/IOscService.cs -------------------------------------------------------------------------------- /VRCDollyManager/Services/OSC/OSCService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Services/OSC/OSCService.cs -------------------------------------------------------------------------------- /VRCDollyManager/Services/OSC/OSCServiceConnectionEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Services/OSC/OSCServiceConnectionEvent.cs -------------------------------------------------------------------------------- /VRCDollyManager/Services/SteamVR/ISteamVrService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Services/SteamVR/ISteamVrService.cs -------------------------------------------------------------------------------- /VRCDollyManager/Services/SteamVR/SteamVRManifestChangedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Services/SteamVR/SteamVRManifestChangedEvent.cs -------------------------------------------------------------------------------- /VRCDollyManager/Services/SteamVR/SteamVRMonitorChangeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Services/SteamVR/SteamVRMonitorChangeEvent.cs -------------------------------------------------------------------------------- /VRCDollyManager/Services/SteamVR/SteamVRService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Services/SteamVR/SteamVRService.cs -------------------------------------------------------------------------------- /VRCDollyManager/Services/SteamVR/openvr_api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/Services/SteamVR/openvr_api.cs -------------------------------------------------------------------------------- /VRCDollyManager/SetupClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/SetupClient.cs -------------------------------------------------------------------------------- /VRCDollyManager/VRCDollyManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/VRCDollyManager.csproj -------------------------------------------------------------------------------- /VRCDollyManager/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/_Imports.razor -------------------------------------------------------------------------------- /VRCDollyManager/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/app.manifest -------------------------------------------------------------------------------- /VRCDollyManager/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/appsettings.Development.json -------------------------------------------------------------------------------- /VRCDollyManager/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/appsettings.json -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Base.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Base.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Controls.ColorPicker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Controls.ColorPicker.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Controls.DataGrid.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Controls.DataGrid.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Controls.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.DesignerSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.DesignerSupport.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Desktop.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Diagnostics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Diagnostics.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Dialogs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Dialogs.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.FreeDesktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.FreeDesktop.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Markup.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Markup.Xaml.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Markup.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Markup.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Metal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Metal.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.MicroCom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.MicroCom.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Native.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Native.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.OpenGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.OpenGL.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.ReactiveUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.ReactiveUI.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Remote.Protocol.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Remote.Protocol.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Skia.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Skia.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Themes.Fluent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Themes.Fluent.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Themes.Simple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Themes.Simple.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Vulkan.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Vulkan.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Win32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.Win32.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.X11.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.X11.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Avalonia.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Blazicons.Lucide.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Blazicons.Lucide.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Blazicons.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Blazicons.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/BlazorComponentUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/BlazorComponentUtilities.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Blazored.LocalStorage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Blazored.LocalStorage.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Dapper.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/DynamicData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/DynamicData.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/EmbedIO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/EmbedIO.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/HarfBuzzSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/HarfBuzzSharp.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Humanizer.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/LucHeart.CoreOSC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/LucHeart.CoreOSC.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Lucide.Blazor.Generator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Lucide.Blazor.Generator.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Lucide.Blazor.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Lucide.Blazor.Net.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/MeaMod.DNS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/MeaMod.DNS.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/MicroCom.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/MicroCom.Runtime.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.AspNetCore.Authorization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.AspNetCore.Authorization.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.AspNetCore.Components.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.AspNetCore.Components.Forms.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.AspNetCore.Components.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.AspNetCore.Components.Web.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.AspNetCore.Components.WebView.WindowsForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.AspNetCore.Components.WebView.WindowsForms.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.AspNetCore.Components.WebView.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.AspNetCore.Components.WebView.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.AspNetCore.Components.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.AspNetCore.Components.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.AspNetCore.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.AspNetCore.Metadata.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Data.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Data.Sqlite.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.EntityFrameworkCore.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.EntityFrameworkCore.Sqlite.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Caching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Caching.Abstractions.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.FileProviders.Embedded.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.FileProviders.Embedded.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.JSInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.JSInterop.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Web.WebView2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Web.WebView2.Core.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Web.WebView2.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Web.WebView2.WinForms.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Web.WebView2.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Microsoft.Web.WebView2.Wpf.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/OscQueryLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/OscQueryLibrary.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ReactiveUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ReactiveUI.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/SQLitePCLRaw.batteries_v2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/SQLitePCLRaw.batteries_v2.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/SQLitePCLRaw.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/SQLitePCLRaw.core.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/SQLitePCLRaw.provider.e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/SQLitePCLRaw.provider.e_sqlite3.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Serilog.Sinks.Async.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Serilog.Sinks.Async.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Serilog.Sinks.File.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Serilog.Sinks.File.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Serilog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Serilog.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/SkiaSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/SkiaSharp.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Splat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Splat.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Swan.Lite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Swan.Lite.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.Composition.Convention.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.IO.Pipelines.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.IO.Pipelines.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.Reactive.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.Reactive.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/System.Text.Json.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Tmds.DBus.Protocol.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/Tmds.DBus.Protocol.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/VRCDollyManager.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/VRCDollyManager.deps.json -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/VRCDollyManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/VRCDollyManager.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/VRCDollyManager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/VRCDollyManager.exe -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/VRCDollyManager.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/VRCDollyManager.pdb -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/VRCDollyManager.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/VRCDollyManager.runtimeconfig.json -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/VRCDollyManager.staticwebassets.endpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/VRCDollyManager.staticwebassets.endpoints.json -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/VRCDollyManager.staticwebassets.runtime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/VRCDollyManager.staticwebassets.runtime.json -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/WebView2Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/WebView2Loader.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/appsettings.Development.json -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/appsettings.json -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/av_libglesv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/av_libglesv2.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/e_sqlite3.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/libHarfBuzzSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/libHarfBuzzSharp.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/libSkiaSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/libSkiaSharp.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/vrc-oscquery-lib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/vrc-oscquery-lib.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/bin/Debug/net8.0-windows/win-x64/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /VRCDollyManager/manifest.vrmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/manifest.vrmanifest -------------------------------------------------------------------------------- /VRCDollyManager/obj/Debug/net8.0-windows/win-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/obj/Debug/net8.0-windows/win-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /VRCDollyManager/obj/Debug/net8.0-windows/win-x64/Avalonia/Resources.Inputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/obj/Debug/net8.0-windows/win-x64/Avalonia/Resources.Inputs.cache -------------------------------------------------------------------------------- /VRCDollyManager/obj/Debug/net8.0-windows/win-x64/VRCDolly.16209C8B.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VRCDollyManager/obj/Debug/net8.0-windows/win-x64/VRCDollyManager.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/obj/Debug/net8.0-windows/win-x64/VRCDollyManager.GlobalUsings.g.cs -------------------------------------------------------------------------------- /VRCDollyManager/obj/Debug/net8.0-windows/win-x64/VRCDollyManager.genruntimeconfig.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/obj/Debug/net8.0-windows/win-x64/VRCDollyManager.genruntimeconfig.cache -------------------------------------------------------------------------------- /VRCDollyManager/obj/Debug/net8.0-windows/win-x64/scopedcss/bundle/VRCDollyManager.styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/obj/Debug/net8.0-windows/win-x64/scopedcss/bundle/VRCDollyManager.styles.css -------------------------------------------------------------------------------- /VRCDollyManager/obj/Debug/net8.0-windows/win-x64/staticwebassets.development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/obj/Debug/net8.0-windows/win-x64/staticwebassets.development.json -------------------------------------------------------------------------------- /VRCDollyManager/obj/Debug/net8.0-windows/win-x64/staticwebassets.pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/obj/Debug/net8.0-windows/win-x64/staticwebassets.pack.json -------------------------------------------------------------------------------- /VRCDollyManager/obj/Debug/net8.0-windows/win-x64/staticwebassets/msbuild.build.VRCDollyManager.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/obj/Debug/net8.0-windows/win-x64/staticwebassets/msbuild.build.VRCDollyManager.props -------------------------------------------------------------------------------- /VRCDollyManager/obj/Debug/net8.0-windows/win-x64/staticwebassets/msbuild.buildMultiTargeting.VRCDollyManager.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/obj/Debug/net8.0-windows/win-x64/staticwebassets/msbuild.buildMultiTargeting.VRCDollyManager.props -------------------------------------------------------------------------------- /VRCDollyManager/obj/Debug/net8.0-windows/win-x64/staticwebassets/msbuild.buildTransitive.VRCDollyManager.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/obj/Debug/net8.0-windows/win-x64/staticwebassets/msbuild.buildTransitive.VRCDollyManager.props -------------------------------------------------------------------------------- /VRCDollyManager/openvr_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/openvr_api.dll -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/css/app.css -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/css/app.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/css/app.css.map -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/css/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/css/app.scss -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/css/scss/_about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/css/scss/_about.scss -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/css/scss/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/css/scss/_animations.scss -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/css/scss/_chip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/css/scss/_chip.scss -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/css/scss/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/css/scss/_form.scss -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/css/scss/_frame.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/css/scss/_frame.scss -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/css/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/css/scss/_modal.scss -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/css/scss/_notification.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/css/scss/_notification.scss -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/css/scss/_pad.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/css/scss/_pad.scss -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/css/scss/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/css/scss/_settings.scss -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/css/scss/_social.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/css/scss/_social.scss -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/css/scss/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/css/scss/_table.scss -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/css/scss/_threejs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/css/scss/_threejs.scss -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/css/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/css/scss/_variables.scss -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/images/DollyManagerLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/images/DollyManagerLogo.png -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/images/Duin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/images/Duin.svg -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/images/duin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/images/duin.jpg -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/index.html -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/js/fileDrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/js/fileDrop.js -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/js/threeInterop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/js/threeInterop.js -------------------------------------------------------------------------------- /VRCDollyManager/wwwroot/js/threejs/three.core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/VRCDollyManager/wwwroot/js/threejs/three.core.min.js -------------------------------------------------------------------------------- /assets/DM-Example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/assets/DM-Example.gif -------------------------------------------------------------------------------- /assets/DollyManagerLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duinrahaic/VRCDollyManager/HEAD/assets/DollyManagerLogo.png --------------------------------------------------------------------------------