From 93970739019420555c1bd8ea28572267bbc9beed Mon Sep 17 00:00:00 2001 From: dnesov Date: Mon, 14 Oct 2024 20:01:01 +0200 Subject: [PATCH] Add DocFX documentation. --- .gitignore | 4 + Voile/TODO.md => TODO.md | 8 +- TestGame/Program.cs | 10 +- TestGame/TestGame.cs | 14 +- Voile/Source/Audio/AudioSystem.cs | 40 + Voile/Source/Game.cs | 21 +- Voile/Source/Input/InputAction.cs | 2 +- .../Source/{Systems => Input}/InputSystem.cs | 2 +- Voile/Source/Input/RaylibInputSystem.cs | 4 +- Voile/Source/Rendering/RaylibRenderSystem.cs | 4 +- .../{Systems => Rendering}/RenderSystem.cs | 10 +- Voile/Source/Resources/ResourceManager.cs | 6 +- Voile/Source/SceneGraph/Entities/Entity.cs | 1 + Voile/Source/SceneGraph/Layer.cs | 1 + Voile/Source/SceneGraph/Scene.cs | 1 + Voile/Source/Systems/AudioSystem.cs | 39 - Voile/Source/Systems/ISystem.cs | 2 + Voile/Source/Utils/ImGuiRenderLayer.cs | 6 +- Voile/api/.manifest | 713 ++++ Voile/api/Voile.Audio.AudioSystem.yml | 952 ++++++ Voile/api/Voile.Audio.DummyAudioSystem.yml | 1159 +++++++ Voile/api/Voile.Audio.FmodAudioSystem.yml | 1157 +++++++ Voile/api/Voile.Audio.SoundInstance.yml | 587 ++++ Voile/api/Voile.Audio.yml | 68 + Voile/api/Voile.AudioBus.yml | 282 ++ Voile/api/Voile.AudioEffect.yml | 284 ++ Voile/api/Voile.AudioEffectReverb.yml | 290 ++ Voile/api/Voile.Color.yml | 1544 +++++++++ Voile/api/Voile.Extensions.Mat4Extensions.yml | 382 +++ .../Voile.Extensions.Vector2Extensions.yml | 390 +++ Voile/api/Voile.Extensions.yml | 30 + Voile/api/Voile.Font.yml | 477 +++ Voile/api/Voile.Game.yml | 987 ++++++ Voile/api/Voile.IStartableSystem-1.yml | 93 + Voile/api/Voile.IStartableSystem.yml | 68 + Voile/api/Voile.IUpdatableSystem.yml | 92 + Voile/api/Voile.Input.InputAction.yml | 432 +++ Voile/api/Voile.Input.InputSystem.yml | 1678 +++++++++ Voile/api/Voile.Input.KeyInputAction.yml | 604 ++++ Voile/api/Voile.Input.KeyboardKey.yml | 3028 +++++++++++++++++ Voile/api/Voile.Input.MouseButton.yml | 149 + Voile/api/Voile.Input.RaylibInputSystem.yml | 1734 ++++++++++ Voile/api/Voile.Input.yml | 84 + Voile/api/Voile.InputAction.yml | 416 +++ Voile/api/Voile.InputSystem.yml | 1655 +++++++++ Voile/api/Voile.KeyInputAction.yml | 588 ++++ Voile/api/Voile.KeyboardKey.yml | 3012 ++++++++++++++++ Voile/api/Voile.MathUtils.yml | 558 +++ Voile/api/Voile.MouseButton.yml | 133 + Voile/api/Voile.RaylibInputSystem.yml | 1711 ++++++++++ Voile/api/Voile.Rendering.ColorRectShader.yml | 407 +++ Voile/api/Voile.Rendering.Material.yml | 345 ++ Voile/api/Voile.Rendering.Msaa.yml | 166 + .../Voile.Rendering.RaylibRenderSystem.yml | 2721 +++++++++++++++ Voile/api/Voile.Rendering.RenderSystem.yml | 2059 +++++++++++ .../api/Voile.Rendering.RendererSettings.yml | 533 +++ Voile/api/Voile.Rendering.Shader.yml | 383 +++ .../Voile.Rendering.StandardRenderSystem.yml | 2723 +++++++++++++++ Voile/api/Voile.Rendering.UnlitMaterial.yml | 316 ++ Voile/api/Voile.Rendering.WindowSettings.yml | 511 +++ Voile/api/Voile.Rendering.yml | 115 + Voile/api/Voile.Resource.yml | 617 ++++ Voile/api/Voile.Resources.FontLoader.yml | 642 ++++ .../api/Voile.Resources.IResourceLoader-1.yml | 267 ++ .../api/Voile.Resources.IResourceSaver-1.yml | 140 + Voile/api/Voile.Resources.ResourceManager.yml | 840 +++++ Voile/api/Voile.Resources.SoundLoader.yml | 642 ++++ Voile/api/Voile.Resources.yml | 112 + Voile/api/Voile.SceneGraph.Camera2d.yml | 765 +++++ Voile/api/Voile.SceneGraph.CircleShape2d.yml | 805 +++++ Voile/api/Voile.SceneGraph.Drawable2d.yml | 781 +++++ Voile/api/Voile.SceneGraph.Entity.yml | 918 +++++ Voile/api/Voile.SceneGraph.Entity2d.yml | 663 ++++ Voile/api/Voile.SceneGraph.EntityLayer.yml | 1264 +++++++ Voile/api/Voile.SceneGraph.IDrawable.yml | 116 + Voile/api/Voile.SceneGraph.IMainLoop.yml | 251 ++ .../api/Voile.SceneGraph.ImGuiController.yml | 695 ++++ .../api/Voile.SceneGraph.ImGuiRenderLayer.yml | 909 +++++ Voile/api/Voile.SceneGraph.Layer.yml | 1013 ++++++ Voile/api/Voile.SceneGraph.Particle.yml | 595 ++++ .../api/Voile.SceneGraph.ParticleSettings.yml | 804 +++++ Voile/api/Voile.SceneGraph.Particles2d.yml | 959 ++++++ .../api/Voile.SceneGraph.RectangleShape2d.yml | 829 +++++ Voile/api/Voile.SceneGraph.Scene.yml | 1270 +++++++ Voile/api/Voile.SceneGraph.SceneSettings.yml | 535 +++ .../api/Voile.SceneGraph.SerializedScene.yml | 604 ++++ .../Voile.SceneGraph.SerializedSceneSaver.yml | 534 +++ Voile/api/Voile.SceneGraph.Sprite2d.yml | 792 +++++ Voile/api/Voile.SceneGraph.Text2d.yml | 890 +++++ Voile/api/Voile.SceneGraph.yml | 197 ++ Voile/api/Voile.Sound.yml | 520 +++ Voile/api/Voile.SoundFormat.yml | 96 + Voile/api/Voile.Texture2d.yml | 635 ++++ Voile/api/Voile.Texture2dLoader.yml | 642 ++++ Voile/api/Voile.TextureFormat.yml | 609 ++++ Voile/api/Voile.UI.Container.yml | 664 ++++ Voile/api/Voile.UI.MarginPanel.yml | 768 +++++ Voile/api/Voile.UI.Panel.yml | 697 ++++ Voile/api/Voile.UI.PanelStyle.yml | 324 ++ Voile/api/Voile.UI.Rect.yml | 441 +++ Voile/api/Voile.UI.SizeFlags.yml | 177 + Voile/api/Voile.UI.TextLabel.yml | 684 ++++ Voile/api/Voile.UI.UIElement.yml | 831 +++++ Voile/api/Voile.UI.VerticalPanel.yml | 708 ++++ Voile/api/Voile.UI.yml | 107 + Voile/api/Voile.Utils.LogLevel.yml | 166 + Voile/api/Voile.Utils.Logger.yml | 783 +++++ Voile/api/Voile.Utils.yml | 53 + Voile/api/Voile.yml | 163 + Voile/api/toc.yml | 180 + Voile/docfx.json | 45 + Voile/docs/architecture.md | 21 + Voile/docs/getting-started.md | 20 + Voile/docs/introduction.md | 107 + Voile/docs/roadmap.md | 60 + Voile/docs/toc.yml | 9 + Voile/index.md | 9 + Voile/toc.yml | 4 + 118 files changed, 64687 insertions(+), 76 deletions(-) rename Voile/TODO.md => TODO.md (86%) create mode 100644 Voile/Source/Audio/AudioSystem.cs rename Voile/Source/{Systems => Input}/InputSystem.cs (99%) rename Voile/Source/{Systems => Rendering}/RenderSystem.cs (95%) delete mode 100644 Voile/Source/Systems/AudioSystem.cs create mode 100644 Voile/api/.manifest create mode 100644 Voile/api/Voile.Audio.AudioSystem.yml create mode 100644 Voile/api/Voile.Audio.DummyAudioSystem.yml create mode 100644 Voile/api/Voile.Audio.FmodAudioSystem.yml create mode 100644 Voile/api/Voile.Audio.SoundInstance.yml create mode 100644 Voile/api/Voile.Audio.yml create mode 100644 Voile/api/Voile.AudioBus.yml create mode 100644 Voile/api/Voile.AudioEffect.yml create mode 100644 Voile/api/Voile.AudioEffectReverb.yml create mode 100644 Voile/api/Voile.Color.yml create mode 100644 Voile/api/Voile.Extensions.Mat4Extensions.yml create mode 100644 Voile/api/Voile.Extensions.Vector2Extensions.yml create mode 100644 Voile/api/Voile.Extensions.yml create mode 100644 Voile/api/Voile.Font.yml create mode 100644 Voile/api/Voile.Game.yml create mode 100644 Voile/api/Voile.IStartableSystem-1.yml create mode 100644 Voile/api/Voile.IStartableSystem.yml create mode 100644 Voile/api/Voile.IUpdatableSystem.yml create mode 100644 Voile/api/Voile.Input.InputAction.yml create mode 100644 Voile/api/Voile.Input.InputSystem.yml create mode 100644 Voile/api/Voile.Input.KeyInputAction.yml create mode 100644 Voile/api/Voile.Input.KeyboardKey.yml create mode 100644 Voile/api/Voile.Input.MouseButton.yml create mode 100644 Voile/api/Voile.Input.RaylibInputSystem.yml create mode 100644 Voile/api/Voile.Input.yml create mode 100644 Voile/api/Voile.InputAction.yml create mode 100644 Voile/api/Voile.InputSystem.yml create mode 100644 Voile/api/Voile.KeyInputAction.yml create mode 100644 Voile/api/Voile.KeyboardKey.yml create mode 100644 Voile/api/Voile.MathUtils.yml create mode 100644 Voile/api/Voile.MouseButton.yml create mode 100644 Voile/api/Voile.RaylibInputSystem.yml create mode 100644 Voile/api/Voile.Rendering.ColorRectShader.yml create mode 100644 Voile/api/Voile.Rendering.Material.yml create mode 100644 Voile/api/Voile.Rendering.Msaa.yml create mode 100644 Voile/api/Voile.Rendering.RaylibRenderSystem.yml create mode 100644 Voile/api/Voile.Rendering.RenderSystem.yml create mode 100644 Voile/api/Voile.Rendering.RendererSettings.yml create mode 100644 Voile/api/Voile.Rendering.Shader.yml create mode 100644 Voile/api/Voile.Rendering.StandardRenderSystem.yml create mode 100644 Voile/api/Voile.Rendering.UnlitMaterial.yml create mode 100644 Voile/api/Voile.Rendering.WindowSettings.yml create mode 100644 Voile/api/Voile.Rendering.yml create mode 100644 Voile/api/Voile.Resource.yml create mode 100644 Voile/api/Voile.Resources.FontLoader.yml create mode 100644 Voile/api/Voile.Resources.IResourceLoader-1.yml create mode 100644 Voile/api/Voile.Resources.IResourceSaver-1.yml create mode 100644 Voile/api/Voile.Resources.ResourceManager.yml create mode 100644 Voile/api/Voile.Resources.SoundLoader.yml create mode 100644 Voile/api/Voile.Resources.yml create mode 100644 Voile/api/Voile.SceneGraph.Camera2d.yml create mode 100644 Voile/api/Voile.SceneGraph.CircleShape2d.yml create mode 100644 Voile/api/Voile.SceneGraph.Drawable2d.yml create mode 100644 Voile/api/Voile.SceneGraph.Entity.yml create mode 100644 Voile/api/Voile.SceneGraph.Entity2d.yml create mode 100644 Voile/api/Voile.SceneGraph.EntityLayer.yml create mode 100644 Voile/api/Voile.SceneGraph.IDrawable.yml create mode 100644 Voile/api/Voile.SceneGraph.IMainLoop.yml create mode 100644 Voile/api/Voile.SceneGraph.ImGuiController.yml create mode 100644 Voile/api/Voile.SceneGraph.ImGuiRenderLayer.yml create mode 100644 Voile/api/Voile.SceneGraph.Layer.yml create mode 100644 Voile/api/Voile.SceneGraph.Particle.yml create mode 100644 Voile/api/Voile.SceneGraph.ParticleSettings.yml create mode 100644 Voile/api/Voile.SceneGraph.Particles2d.yml create mode 100644 Voile/api/Voile.SceneGraph.RectangleShape2d.yml create mode 100644 Voile/api/Voile.SceneGraph.Scene.yml create mode 100644 Voile/api/Voile.SceneGraph.SceneSettings.yml create mode 100644 Voile/api/Voile.SceneGraph.SerializedScene.yml create mode 100644 Voile/api/Voile.SceneGraph.SerializedSceneSaver.yml create mode 100644 Voile/api/Voile.SceneGraph.Sprite2d.yml create mode 100644 Voile/api/Voile.SceneGraph.Text2d.yml create mode 100644 Voile/api/Voile.SceneGraph.yml create mode 100644 Voile/api/Voile.Sound.yml create mode 100644 Voile/api/Voile.SoundFormat.yml create mode 100644 Voile/api/Voile.Texture2d.yml create mode 100644 Voile/api/Voile.Texture2dLoader.yml create mode 100644 Voile/api/Voile.TextureFormat.yml create mode 100644 Voile/api/Voile.UI.Container.yml create mode 100644 Voile/api/Voile.UI.MarginPanel.yml create mode 100644 Voile/api/Voile.UI.Panel.yml create mode 100644 Voile/api/Voile.UI.PanelStyle.yml create mode 100644 Voile/api/Voile.UI.Rect.yml create mode 100644 Voile/api/Voile.UI.SizeFlags.yml create mode 100644 Voile/api/Voile.UI.TextLabel.yml create mode 100644 Voile/api/Voile.UI.UIElement.yml create mode 100644 Voile/api/Voile.UI.VerticalPanel.yml create mode 100644 Voile/api/Voile.UI.yml create mode 100644 Voile/api/Voile.Utils.LogLevel.yml create mode 100644 Voile/api/Voile.Utils.Logger.yml create mode 100644 Voile/api/Voile.Utils.yml create mode 100644 Voile/api/Voile.yml create mode 100644 Voile/api/toc.yml create mode 100644 Voile/docfx.json create mode 100644 Voile/docs/architecture.md create mode 100644 Voile/docs/getting-started.md create mode 100644 Voile/docs/introduction.md create mode 100644 Voile/docs/roadmap.md create mode 100644 Voile/docs/toc.yml create mode 100644 Voile/index.md create mode 100644 Voile/toc.yml diff --git a/.gitignore b/.gitignore index 65fa728..204ad38 100644 --- a/.gitignore +++ b/.gitignore @@ -46,3 +46,7 @@ Voile.Fmod/runtimes/**/*.dll Voile.Fmod/runtimes/**/*.so* # !binaries/fmod/windows/WINDOWS_BINARIES_HERE # !binaries/fmod/linux/LINUX_BINARIES_HERE + +# DocFX +.cache +/**/_site/ \ No newline at end of file diff --git a/Voile/TODO.md b/TODO.md similarity index 86% rename from Voile/TODO.md rename to TODO.md index 3d5d1f3..209be8b 100644 --- a/Voile/TODO.md +++ b/TODO.md @@ -43,6 +43,7 @@ ## SceneGraph module - ~~Layers (sorting mechanism)~~ +- Full overhaul using Entity Component architecture (not to be mistaken with ECS). - Save/load scenes from file ## Input @@ -53,6 +54,7 @@ ## UI -- UIElement 2.0 -- Interaction -- Callbacks +- Immediate mode API. +- Styling. +- Basic input elements (button, text field, toggle). +- Containers (vertical and horizontal). diff --git a/TestGame/Program.cs b/TestGame/Program.cs index 524cd2a..6a050f4 100644 --- a/TestGame/Program.cs +++ b/TestGame/Program.cs @@ -1,8 +1,2 @@ -class Program -{ - static void Main(string[] args) - { - var game = new TestGame(); - game.Start(); - } -} \ No newline at end of file +var game = new TestGame(); +game.Start(); \ No newline at end of file diff --git a/TestGame/TestGame.cs b/TestGame/TestGame.cs index a21eeca..7691092 100644 --- a/TestGame/TestGame.cs +++ b/TestGame/TestGame.cs @@ -1,3 +1,4 @@ +using System.Numerics; using Voile; using Voile.Audio; using Voile.Resources; @@ -18,19 +19,14 @@ public class TestGame : Game protected override void LoadResources() { - if (ResourceManager.TryLoad("my_sound", "sounds/test_sound.ogg")) + if (!ResourceManager.TryLoad("my_sound", "sounds/test_sound.ogg", out Sound? _testSound)) { - ResourceManager.TryGetResource("my_sound", out _testSound); + } - if (ResourceManager.TryLoad("inter_regular", "fonts/Inter-Regular.ttf")) + if (!ResourceManager.TryLoad("inter_regular", "fonts/Inter-Regular.ttf", out Font? _font)) { - ResourceManager.TryGetResource("inter_regular", out _font); - if (_font is not null) - { - _font.Size = 20; - } } } @@ -64,7 +60,7 @@ public class TestGame : Game protected override void Run() { - while (_scene!.ShouldRun) + while (Renderer.ShouldRun) { if (Input.IsActionPressed("play")) { diff --git a/Voile/Source/Audio/AudioSystem.cs b/Voile/Source/Audio/AudioSystem.cs new file mode 100644 index 0000000..3195ea4 --- /dev/null +++ b/Voile/Source/Audio/AudioSystem.cs @@ -0,0 +1,40 @@ +using Voile; + +namespace Voile.Audio; + +public abstract class AudioSystem : IStartableSystem, IUpdatableSystem, IDisposable +{ + public void Start() => Initialize(); + + public void Update(double deltaTime) => Update(); + + public void Dispose() + { + Shutdown(); + GC.SuppressFinalize(this); + } + + protected abstract void Initialize(); + protected abstract void Update(); + protected abstract void Shutdown(); + // BUS + public abstract void CreateBus(string busName); + public abstract void SetBusVolume(string busName, float volume); + public abstract float GetBusVolume(string busName); + + // SOUND + public abstract void PlaySound(Sound sound, float pitch, float volume, string bus = "Master"); + public void PlaySound(Sound sound, string bus = "Master") => PlaySound(sound, 1.0f, 1.0f, bus); + + public SoundInstance CreateInstance(Sound sound) + { + var instance = new SoundInstance(this, sound); + return instance; + } + + // EFFECTS + public abstract void AddBusEffect(T effect, string bus = "Master") where T : AudioEffect; + + + private LehmerRandom _random = new LehmerRandom(); +} \ No newline at end of file diff --git a/Voile/Source/Game.cs b/Voile/Source/Game.cs index 931084a..5ece844 100644 --- a/Voile/Source/Game.cs +++ b/Voile/Source/Game.cs @@ -1,3 +1,4 @@ +using Voile.Input; using Voile.Rendering; using Voile.Resources; @@ -34,6 +35,9 @@ namespace Voile /// public virtual string Name => ""; + /// + /// Default game constructor. + /// public Game() { ResourceManager = new ResourceManager(); @@ -41,6 +45,19 @@ namespace Voile Renderer = new RaylibRenderSystem(); } + /// + /// Game constructor with custom systems. + /// + /// + /// + /// + public Game(ResourceManager resourceManager, InputSystem inputSystem, RenderSystem renderSystem) + { + ResourceManager = resourceManager; + Input = inputSystem; + Renderer = renderSystem; + } + /// /// Starts the game application. /// This involves initializing the required subsystems, loading resources from the disk, and then preparing the subsystems for running in the main loop. @@ -77,7 +94,7 @@ namespace Voile } /// - /// Called when it's time to initialize the subsystems, or modify default game settings or systems. + /// Called when it's time to initialize the subsystems, or modify default game settings or system settings. /// public abstract void Initialize(); /// @@ -85,7 +102,7 @@ namespace Voile /// protected abstract void LoadResources(); /// - /// Called when it's safe to manipulate with the resources or/and systems. + /// Called when it's safe to manipulate the resources or/and systems. /// You can safely create game objects, scenes, etc. in this method. /// protected abstract void Ready(); diff --git a/Voile/Source/Input/InputAction.cs b/Voile/Source/Input/InputAction.cs index e8c5b88..39681de 100644 --- a/Voile/Source/Input/InputAction.cs +++ b/Voile/Source/Input/InputAction.cs @@ -1,4 +1,4 @@ -namespace Voile +namespace Voile.Input { public abstract class InputAction { diff --git a/Voile/Source/Systems/InputSystem.cs b/Voile/Source/Input/InputSystem.cs similarity index 99% rename from Voile/Source/Systems/InputSystem.cs rename to Voile/Source/Input/InputSystem.cs index c60bfe4..b2c8354 100644 --- a/Voile/Source/Systems/InputSystem.cs +++ b/Voile/Source/Input/InputSystem.cs @@ -2,7 +2,7 @@ using System.Diagnostics.CodeAnalysis; using System.Numerics; using Voile.Utils; -namespace Voile +namespace Voile.Input { /// /// A system providing means for collecting user input, as well as defining custom list. diff --git a/Voile/Source/Input/RaylibInputSystem.cs b/Voile/Source/Input/RaylibInputSystem.cs index 3d7b344..ff5a679 100644 --- a/Voile/Source/Input/RaylibInputSystem.cs +++ b/Voile/Source/Input/RaylibInputSystem.cs @@ -1,10 +1,10 @@ using System.Numerics; using Raylib_cs; -namespace Voile +namespace Voile.Input { /// - /// An input system implemented using Raylib's API. Used by default together with . + /// An input system implemented using Raylib's API. Used by default together with . /// public class RaylibInputSystem : InputSystem { diff --git a/Voile/Source/Rendering/RaylibRenderSystem.cs b/Voile/Source/Rendering/RaylibRenderSystem.cs index 2b3e747..0493559 100644 --- a/Voile/Source/Rendering/RaylibRenderSystem.cs +++ b/Voile/Source/Rendering/RaylibRenderSystem.cs @@ -165,7 +165,7 @@ namespace Voile.Rendering y = transformPosition.Y, width = size.X, height = size.Y - }, transformOffset, transformRotation, VoileColorToRaylibColor(color)); + }, transformPivot, transformRotation, VoileColorToRaylibColor(color)); } public override void DrawDebugText(string text, int fontSize, Color color) @@ -211,7 +211,7 @@ namespace Voile.Rendering } var rayFont = _fontPool[font.Handle]; - Raylib.DrawTextPro(rayFont, text, transformPosition, transformOffset, transformRotation, font.Size, 0.0f, VoileColorToRaylibColor(color)); + Raylib.DrawTextPro(rayFont, text, transformPosition, transformPivot, transformRotation, font.Size, 0.0f, VoileColorToRaylibColor(color)); } protected override int GetMonitorWidth(int monitorId) diff --git a/Voile/Source/Systems/RenderSystem.cs b/Voile/Source/Rendering/RenderSystem.cs similarity index 95% rename from Voile/Source/Systems/RenderSystem.cs rename to Voile/Source/Rendering/RenderSystem.cs index 67cf054..1266462 100644 --- a/Voile/Source/Systems/RenderSystem.cs +++ b/Voile/Source/Rendering/RenderSystem.cs @@ -94,7 +94,7 @@ namespace Voile.Rendering public void ResetTransform() { transformPosition = Vector2.Zero; - transformOffset = Vector2.Zero; + transformPivot = Vector2.Zero; transformRotation = 0.0f; } @@ -102,12 +102,12 @@ namespace Voile.Rendering /// Sets transforms for the next draw operation. /// /// Global transform position. - /// Local offset point around which shapes will rotate. + /// Local offset point around which shapes will rotate. /// Rotation. - public void SetTransform(Vector2 position, Vector2 offset, float rotation = 0.0f) + public void SetTransform(Vector2 position, Vector2 pivot, float rotation = 0.0f) { transformPosition = position; - transformOffset = offset; + transformPivot = pivot; transformRotation = rotation; } /// @@ -153,7 +153,7 @@ namespace Voile.Rendering public abstract void DrawTexture(Texture2d texture, Color tint); - protected Vector2 transformPosition, transformOffset; + protected Vector2 transformPosition, transformPivot; protected float transformRotation; } diff --git a/Voile/Source/Resources/ResourceManager.cs b/Voile/Source/Resources/ResourceManager.cs index 3b239a1..be9de2c 100644 --- a/Voile/Source/Resources/ResourceManager.cs +++ b/Voile/Source/Resources/ResourceManager.cs @@ -8,9 +8,10 @@ namespace Voile.Resources { public string ResourceRoot { get; set; } = "Resources/"; - public bool TryLoad(string resourceId, string path) where T : Resource + public bool TryLoad(string resourceId, string path, [NotNullWhen(true)] out T? result) where T : Resource { - T? resource = null; + T? resource = default; + result = null; var fullPath = Path.Combine(ResourceRoot, path); @@ -46,6 +47,7 @@ namespace Voile.Resources _logger.Info($"\"{resourceId}\" was loaded successfully."); + result = loadedResource; return true; } diff --git a/Voile/Source/SceneGraph/Entities/Entity.cs b/Voile/Source/SceneGraph/Entities/Entity.cs index 0074fe9..bb5fd02 100644 --- a/Voile/Source/SceneGraph/Entities/Entity.cs +++ b/Voile/Source/SceneGraph/Entities/Entity.cs @@ -1,5 +1,6 @@ using System.Text.Json.Serialization; using Voile.Audio; +using Voile.Input; using Voile.Rendering; namespace Voile.SceneGraph diff --git a/Voile/Source/SceneGraph/Layer.cs b/Voile/Source/SceneGraph/Layer.cs index 35cbff0..fc4ae07 100644 --- a/Voile/Source/SceneGraph/Layer.cs +++ b/Voile/Source/SceneGraph/Layer.cs @@ -1,6 +1,7 @@ using Voile.Resources; using Voile.Rendering; using System.Text.Json.Serialization; +using Voile.Input; namespace Voile.SceneGraph { diff --git a/Voile/Source/SceneGraph/Scene.cs b/Voile/Source/SceneGraph/Scene.cs index 7047df5..81090b3 100644 --- a/Voile/Source/SceneGraph/Scene.cs +++ b/Voile/Source/SceneGraph/Scene.cs @@ -1,5 +1,6 @@ using System.Text.Json; using Voile.Audio; +using Voile.Input; using Voile.Rendering; using Voile.Resources; diff --git a/Voile/Source/Systems/AudioSystem.cs b/Voile/Source/Systems/AudioSystem.cs deleted file mode 100644 index 63f8747..0000000 --- a/Voile/Source/Systems/AudioSystem.cs +++ /dev/null @@ -1,39 +0,0 @@ -namespace Voile.Audio -{ - public abstract class AudioSystem : IStartableSystem, IUpdatableSystem, IDisposable - { - public void Start() => Initialize(); - - public void Update(double deltaTime) => Update(); - - public void Dispose() - { - Shutdown(); - GC.SuppressFinalize(this); - } - - protected abstract void Initialize(); - protected abstract void Update(); - protected abstract void Shutdown(); - // BUS - public abstract void CreateBus(string busName); - public abstract void SetBusVolume(string busName, float volume); - public abstract float GetBusVolume(string busName); - - // SOUND - public abstract void PlaySound(Sound sound, float pitch, float volume, string bus = "Master"); - public void PlaySound(Sound sound, string bus = "Master") => PlaySound(sound, 1.0f, 1.0f, bus); - - public SoundInstance CreateInstance(Sound sound) - { - var instance = new SoundInstance(this, sound); - return instance; - } - - // EFFECTS - public abstract void AddBusEffect(T effect, string bus = "Master") where T : AudioEffect; - - - private LehmerRandom _random = new LehmerRandom(); - } -} \ No newline at end of file diff --git a/Voile/Source/Systems/ISystem.cs b/Voile/Source/Systems/ISystem.cs index 5658766..9cb3eb6 100644 --- a/Voile/Source/Systems/ISystem.cs +++ b/Voile/Source/Systems/ISystem.cs @@ -1,3 +1,5 @@ +namespace Voile; + public interface IStartableSystem { void Start(); diff --git a/Voile/Source/Utils/ImGuiRenderLayer.cs b/Voile/Source/Utils/ImGuiRenderLayer.cs index 6bca284..979d128 100644 --- a/Voile/Source/Utils/ImGuiRenderLayer.cs +++ b/Voile/Source/Utils/ImGuiRenderLayer.cs @@ -1,8 +1,10 @@ using System.Numerics; using ImGuiNET; using Raylib_cs; - +using Voile.Input; using Voile.Rendering; +using KeyboardKey = Voile.Input.KeyboardKey; +using MouseButton = Voile.Input.MouseButton; namespace Voile.SceneGraph { @@ -24,7 +26,7 @@ namespace Voile.SceneGraph protected override void OnUpdate(double dt) { - _controller.Update(dt, Input); + // _controller.Update(dt, Input); } protected override void OnBeginDraw(RenderSystem renderer) diff --git a/Voile/api/.manifest b/Voile/api/.manifest new file mode 100644 index 0000000..c27b1d3 --- /dev/null +++ b/Voile/api/.manifest @@ -0,0 +1,713 @@ +{ + "Voile": "Voile.yml", + "Voile.Audio": "Voile.Audio.yml", + "Voile.Audio.AudioSystem": "Voile.Audio.AudioSystem.yml", + "Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String)": "Voile.Audio.AudioSystem.yml", + "Voile.Audio.AudioSystem.CreateBus(System.String)": "Voile.Audio.AudioSystem.yml", + "Voile.Audio.AudioSystem.CreateInstance(Voile.Sound)": "Voile.Audio.AudioSystem.yml", + "Voile.Audio.AudioSystem.Dispose": "Voile.Audio.AudioSystem.yml", + "Voile.Audio.AudioSystem.GetBusVolume(System.String)": "Voile.Audio.AudioSystem.yml", + "Voile.Audio.AudioSystem.Initialize": "Voile.Audio.AudioSystem.yml", + "Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String)": "Voile.Audio.AudioSystem.yml", + "Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.String)": "Voile.Audio.AudioSystem.yml", + "Voile.Audio.AudioSystem.SetBusVolume(System.String,System.Single)": "Voile.Audio.AudioSystem.yml", + "Voile.Audio.AudioSystem.Shutdown": "Voile.Audio.AudioSystem.yml", + "Voile.Audio.AudioSystem.Start": "Voile.Audio.AudioSystem.yml", + "Voile.Audio.AudioSystem.Update": "Voile.Audio.AudioSystem.yml", + "Voile.Audio.AudioSystem.Update(System.Double)": "Voile.Audio.AudioSystem.yml", + "Voile.Audio.DummyAudioSystem": "Voile.Audio.DummyAudioSystem.yml", + "Voile.Audio.DummyAudioSystem.AddBusEffect``1(``0,System.String)": "Voile.Audio.DummyAudioSystem.yml", + "Voile.Audio.DummyAudioSystem.CreateBus(System.String)": "Voile.Audio.DummyAudioSystem.yml", + "Voile.Audio.DummyAudioSystem.GetBusVolume(System.String)": "Voile.Audio.DummyAudioSystem.yml", + "Voile.Audio.DummyAudioSystem.Initialize": "Voile.Audio.DummyAudioSystem.yml", + "Voile.Audio.DummyAudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String)": "Voile.Audio.DummyAudioSystem.yml", + "Voile.Audio.DummyAudioSystem.SetBusVolume(System.String,System.Single)": "Voile.Audio.DummyAudioSystem.yml", + "Voile.Audio.DummyAudioSystem.Shutdown": "Voile.Audio.DummyAudioSystem.yml", + "Voile.Audio.DummyAudioSystem.Update": "Voile.Audio.DummyAudioSystem.yml", + "Voile.Audio.FmodAudioSystem": "Voile.Audio.FmodAudioSystem.yml", + "Voile.Audio.FmodAudioSystem.AddBusEffect``1(``0,System.String)": "Voile.Audio.FmodAudioSystem.yml", + "Voile.Audio.FmodAudioSystem.CreateBus(System.String)": "Voile.Audio.FmodAudioSystem.yml", + "Voile.Audio.FmodAudioSystem.GetBusVolume(System.String)": "Voile.Audio.FmodAudioSystem.yml", + "Voile.Audio.FmodAudioSystem.Initialize": "Voile.Audio.FmodAudioSystem.yml", + "Voile.Audio.FmodAudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String)": "Voile.Audio.FmodAudioSystem.yml", + "Voile.Audio.FmodAudioSystem.SetBusVolume(System.String,System.Single)": "Voile.Audio.FmodAudioSystem.yml", + "Voile.Audio.FmodAudioSystem.Shutdown": "Voile.Audio.FmodAudioSystem.yml", + "Voile.Audio.FmodAudioSystem.Update": "Voile.Audio.FmodAudioSystem.yml", + "Voile.Audio.SoundInstance": "Voile.Audio.SoundInstance.yml", + "Voile.Audio.SoundInstance.#ctor(Voile.Audio.AudioSystem,Voile.Sound)": "Voile.Audio.SoundInstance.yml", + "Voile.Audio.SoundInstance.OnBus(System.String)": "Voile.Audio.SoundInstance.yml", + "Voile.Audio.SoundInstance.PitchVariation(System.Single,System.Single)": "Voile.Audio.SoundInstance.yml", + "Voile.Audio.SoundInstance.Play": "Voile.Audio.SoundInstance.yml", + "Voile.Audio.SoundInstance.Sound": "Voile.Audio.SoundInstance.yml", + "Voile.Audio.SoundInstance.VolumeVariation(System.Single,System.Single)": "Voile.Audio.SoundInstance.yml", + "Voile.AudioBus": "Voile.AudioBus.yml", + "Voile.AudioEffect": "Voile.AudioEffect.yml", + "Voile.AudioEffectReverb": "Voile.AudioEffectReverb.yml", + "Voile.Color": "Voile.Color.yml", + "Voile.Color.#ctor(System.Byte,System.Byte,System.Byte,System.Byte)": "Voile.Color.yml", + "Voile.Color.#ctor(System.Int32)": "Voile.Color.yml", + "Voile.Color.#ctor(System.Single,System.Single,System.Single,System.Single)": "Voile.Color.yml", + "Voile.Color.A": "Voile.Color.yml", + "Voile.Color.AliceBlue": "Voile.Color.yml", + "Voile.Color.AntiqueWhite": "Voile.Color.yml", + "Voile.Color.Aqua": "Voile.Color.yml", + "Voile.Color.Aquamarine": "Voile.Color.yml", + "Voile.Color.Argb": "Voile.Color.yml", + "Voile.Color.Azure": "Voile.Color.yml", + "Voile.Color.B": "Voile.Color.yml", + "Voile.Color.Beige": "Voile.Color.yml", + "Voile.Color.Bisque": "Voile.Color.yml", + "Voile.Color.Black": "Voile.Color.yml", + "Voile.Color.BlanchedAlmond": "Voile.Color.yml", + "Voile.Color.Blue": "Voile.Color.yml", + "Voile.Color.BlueViolet": "Voile.Color.yml", + "Voile.Color.Brown": "Voile.Color.yml", + "Voile.Color.BurlyWood": "Voile.Color.yml", + "Voile.Color.CadetBlue": "Voile.Color.yml", + "Voile.Color.Chartreuse": "Voile.Color.yml", + "Voile.Color.Chocolate": "Voile.Color.yml", + "Voile.Color.Coral": "Voile.Color.yml", + "Voile.Color.CornflowerBlue": "Voile.Color.yml", + "Voile.Color.Cornsilk": "Voile.Color.yml", + "Voile.Color.Crimson": "Voile.Color.yml", + "Voile.Color.Cyan": "Voile.Color.yml", + "Voile.Color.DarkBlue": "Voile.Color.yml", + "Voile.Color.DarkCyan": "Voile.Color.yml", + "Voile.Color.Darkened(System.Single)": "Voile.Color.yml", + "Voile.Color.G": "Voile.Color.yml", + "Voile.Color.Green": "Voile.Color.yml", + "Voile.Color.Lightened(System.Single)": "Voile.Color.yml", + "Voile.Color.R": "Voile.Color.yml", + "Voile.Color.Red": "Voile.Color.yml", + "Voile.Color.ToSystemColor": "Voile.Color.yml", + "Voile.Color.White": "Voile.Color.yml", + "Voile.Extensions": "Voile.Extensions.yml", + "Voile.Extensions.Mat4Extensions": "Voile.Extensions.Mat4Extensions.yml", + "Voile.Extensions.Mat4Extensions.Scale(System.Numerics.Matrix4x4,System.Numerics.Vector2)": "Voile.Extensions.Mat4Extensions.yml", + "Voile.Extensions.Vector2Extensions": "Voile.Extensions.Vector2Extensions.yml", + "Voile.Extensions.Vector2Extensions.Lerp(System.Numerics.Vector2,System.Numerics.Vector2,System.Double)": "Voile.Extensions.Vector2Extensions.yml", + "Voile.Font": "Voile.Font.yml", + "Voile.Font.#ctor(System.String,System.Byte[])": "Voile.Font.yml", + "Voile.Font.Size": "Voile.Font.yml", + "Voile.Game": "Voile.Game.yml", + "Voile.Game.#ctor": "Voile.Game.yml", + "Voile.Game.#ctor(Voile.Resources.ResourceManager,Voile.Input.InputSystem,Voile.Rendering.RenderSystem)": "Voile.Game.yml", + "Voile.Game.EngineConfigPath": "Voile.Game.yml", + "Voile.Game.Initialize": "Voile.Game.yml", + "Voile.Game.InitializeDefault": "Voile.Game.yml", + "Voile.Game.Input": "Voile.Game.yml", + "Voile.Game.LoadResources": "Voile.Game.yml", + "Voile.Game.Name": "Voile.Game.yml", + "Voile.Game.Ready": "Voile.Game.yml", + "Voile.Game.Renderer": "Voile.Game.yml", + "Voile.Game.ResourceManager": "Voile.Game.yml", + "Voile.Game.ResourceRoot": "Voile.Game.yml", + "Voile.Game.Run": "Voile.Game.yml", + "Voile.Game.Shutdown": "Voile.Game.yml", + "Voile.Game.ShutdownDefault": "Voile.Game.yml", + "Voile.Game.Start": "Voile.Game.yml", + "Voile.IStartableSystem": "Voile.IStartableSystem.yml", + "Voile.IStartableSystem.Start": "Voile.IStartableSystem.yml", + "Voile.IStartableSystem`1": "Voile.IStartableSystem-1.yml", + "Voile.IStartableSystem`1.Start(`0)": "Voile.IStartableSystem-1.yml", + "Voile.IUpdatableSystem": "Voile.IUpdatableSystem.yml", + "Voile.IUpdatableSystem.Update(System.Double)": "Voile.IUpdatableSystem.yml", + "Voile.Input": "Voile.Input.yml", + "Voile.Input.InputAction": "Voile.Input.InputAction.yml", + "Voile.Input.InputAction.IsDown(Voile.Input.InputSystem)": "Voile.Input.InputAction.yml", + "Voile.Input.InputAction.IsPressed(Voile.Input.InputSystem)": "Voile.Input.InputAction.yml", + "Voile.Input.InputAction.IsReleased(Voile.Input.InputSystem)": "Voile.Input.InputAction.yml", + "Voile.Input.InputSystem": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction})": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.Dispose": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.GetCharPressed": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.GetInputDirection(System.String,System.String,System.String,System.String)": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.GetInputDirection(Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey)": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.GetMousePosition": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.GetMouseWheelMovement": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.Handled": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.HideCursor": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.InputMappings": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.IsActionDown(System.String)": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.IsActionPressed(System.String)": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.IsActionReleased(System.String)": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.IsCursorHidden": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.IsKeyboardKeyDown(Voile.Input.KeyboardKey)": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.IsMouseButtonDown(Voile.Input.MouseButton)": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.KeyboardKeyJustPressed(Voile.Input.KeyboardKey)": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.KeyboardKeyJustReleased(Voile.Input.KeyboardKey)": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.SetAsHandled": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.SetMousePosition(System.Numerics.Vector2)": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.ShowCursor": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.Shutdown": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.Start": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}@)": "Voile.Input.InputSystem.yml", + "Voile.Input.InputSystem.inputMappings": "Voile.Input.InputSystem.yml", + "Voile.Input.KeyInputAction": "Voile.Input.KeyInputAction.yml", + "Voile.Input.KeyInputAction.#ctor(Voile.Input.KeyboardKey)": "Voile.Input.KeyInputAction.yml", + "Voile.Input.KeyInputAction.IsDown(Voile.Input.InputSystem)": "Voile.Input.KeyInputAction.yml", + "Voile.Input.KeyInputAction.IsPressed(Voile.Input.InputSystem)": "Voile.Input.KeyInputAction.yml", + "Voile.Input.KeyInputAction.IsReleased(Voile.Input.InputSystem)": "Voile.Input.KeyInputAction.yml", + "Voile.Input.KeyInputAction.Key": "Voile.Input.KeyInputAction.yml", + "Voile.Input.KeyboardKey": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.A": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Apostrophe": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.B": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Back": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Backslash": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Backspace": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.C": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.CapsLock": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Comma": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.D": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Delete": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Down": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.E": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Eight": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.End": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Enter": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Equal": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Escape": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.F": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.F1": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.F10": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.F11": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.F12": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.F2": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.F3": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.F4": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.F5": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.F6": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.F7": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.F8": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.F9": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Five": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Four": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.G": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Grave": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.H": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Home": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.I": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Insert": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.J": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.K": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.KBMenu": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.KP0": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.KP1": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.KP2": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.KP3": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.KP4": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.KP5": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.KP6": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.KP7": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.KP8": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.KP9": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.KPAdd": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.KPDecimal": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.KPDivide": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.KPEnter": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.KPEqual": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.KPMultiply": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.KPSubstract": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.L": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Left": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.LeftAlt": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.LeftBracket": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.LeftControl": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.LeftShift": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.LeftSuper": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.M": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Menu": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Minus": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.N": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Nine": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Null": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.NumLock": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.O": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.One": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.P": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.PageDown": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.PageUp": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Pause": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Period": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.PrintScreen": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Q": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.R": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Right": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.RightAlt": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.RightBracket": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.RightControl": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.RightShift": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.RightSuper": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.S": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.ScrollLock": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Semicolon": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Seven": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Six": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Slash": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Spacebar": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.T": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Tab": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Three": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Two": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.U": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Up": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.V": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.VolumeDown": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.VolumeUp": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.W": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.X": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Y": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Z": "Voile.Input.KeyboardKey.yml", + "Voile.Input.KeyboardKey.Zero": "Voile.Input.KeyboardKey.yml", + "Voile.Input.MouseButton": "Voile.Input.MouseButton.yml", + "Voile.Input.MouseButton.Left": "Voile.Input.MouseButton.yml", + "Voile.Input.MouseButton.Middle": "Voile.Input.MouseButton.yml", + "Voile.Input.MouseButton.Right": "Voile.Input.MouseButton.yml", + "Voile.Input.RaylibInputSystem": "Voile.Input.RaylibInputSystem.yml", + "Voile.Input.RaylibInputSystem.GetCharPressed": "Voile.Input.RaylibInputSystem.yml", + "Voile.Input.RaylibInputSystem.GetInputDirection(System.String,System.String,System.String,System.String)": "Voile.Input.RaylibInputSystem.yml", + "Voile.Input.RaylibInputSystem.GetInputDirection(Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey)": "Voile.Input.RaylibInputSystem.yml", + "Voile.Input.RaylibInputSystem.GetMousePosition": "Voile.Input.RaylibInputSystem.yml", + "Voile.Input.RaylibInputSystem.GetMouseWheelMovement": "Voile.Input.RaylibInputSystem.yml", + "Voile.Input.RaylibInputSystem.HideCursor": "Voile.Input.RaylibInputSystem.yml", + "Voile.Input.RaylibInputSystem.IsActionDown(System.String)": "Voile.Input.RaylibInputSystem.yml", + "Voile.Input.RaylibInputSystem.IsActionPressed(System.String)": "Voile.Input.RaylibInputSystem.yml", + "Voile.Input.RaylibInputSystem.IsActionReleased(System.String)": "Voile.Input.RaylibInputSystem.yml", + "Voile.Input.RaylibInputSystem.IsCursorHidden": "Voile.Input.RaylibInputSystem.yml", + "Voile.Input.RaylibInputSystem.IsKeyboardKeyDown(Voile.Input.KeyboardKey)": "Voile.Input.RaylibInputSystem.yml", + "Voile.Input.RaylibInputSystem.IsMouseButtonDown(Voile.Input.MouseButton)": "Voile.Input.RaylibInputSystem.yml", + "Voile.Input.RaylibInputSystem.KeyboardKeyJustPressed(Voile.Input.KeyboardKey)": "Voile.Input.RaylibInputSystem.yml", + "Voile.Input.RaylibInputSystem.KeyboardKeyJustReleased(Voile.Input.KeyboardKey)": "Voile.Input.RaylibInputSystem.yml", + "Voile.Input.RaylibInputSystem.SetMousePosition(System.Numerics.Vector2)": "Voile.Input.RaylibInputSystem.yml", + "Voile.Input.RaylibInputSystem.ShowCursor": "Voile.Input.RaylibInputSystem.yml", + "Voile.MathUtils": "Voile.MathUtils.yml", + "Voile.MathUtils.EaseOutBack(System.Single)": "Voile.MathUtils.yml", + "Voile.MathUtils.EaseOutElastic(System.Single)": "Voile.MathUtils.yml", + "Voile.MathUtils.Lerp(System.Single,System.Single,System.Double)": "Voile.MathUtils.yml", + "Voile.MathUtils.LerpColor(Voile.Color,Voile.Color,System.Double)": "Voile.MathUtils.yml", + "Voile.MathUtils.RandomVector2(System.Numerics.Vector2,System.Numerics.Vector2)": "Voile.MathUtils.yml", + "Voile.Rendering": "Voile.Rendering.yml", + "Voile.Rendering.ColorRectShader": "Voile.Rendering.ColorRectShader.yml", + "Voile.Rendering.ColorRectShader.FragmentSource": "Voile.Rendering.ColorRectShader.yml", + "Voile.Rendering.ColorRectShader.VertexSource": "Voile.Rendering.ColorRectShader.yml", + "Voile.Rendering.Material": "Voile.Rendering.Material.yml", + "Voile.Rendering.Material.Unlit": "Voile.Rendering.Material.yml", + "Voile.Rendering.Msaa": "Voile.Rendering.Msaa.yml", + "Voile.Rendering.Msaa.Msaa2x": "Voile.Rendering.Msaa.yml", + "Voile.Rendering.Msaa.Msaa4x": "Voile.Rendering.Msaa.yml", + "Voile.Rendering.Msaa.Msaa8x": "Voile.Rendering.Msaa.yml", + "Voile.Rendering.Msaa.None": "Voile.Rendering.Msaa.yml", + "Voile.Rendering.RaylibRenderSystem": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single)": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.BeginFrame": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.ClearBackground(Voile.Color)": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings)": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.CreateWindow(Voile.Rendering.WindowSettings)": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.DrawCircle(System.Single,Voile.Color)": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color)": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color)": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color)": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.DrawText(Voile.Font,System.String,Voile.Color)": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.DrawTexture(Voile.Texture2d,Voile.Color)": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.EndCamera2d": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.EndFrame": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.Fullscreen": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.GetCurrentMonitor": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.GetFrameTime": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.GetMonitorHeight(System.Int32)": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.GetMonitorWidth(System.Int32)": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.Initialize(Voile.Rendering.RendererSettings)": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.MonitorSize": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.SetTargetFps(System.Int32)": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.SetTransform(System.Numerics.Matrix4x4)": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.SetWindowTitle(System.String)": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.SetWindowVSync(System.Boolean)": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.ShouldRun": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.Shutdown": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.TargetFps": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.VSync": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.WindowShouldClose": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.WindowSize": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RaylibRenderSystem.WindowTitle": "Voile.Rendering.RaylibRenderSystem.yml", + "Voile.Rendering.RenderSystem": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.BeginFrame": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.ClearBackground(Voile.Color)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.CreateWindow(Voile.Rendering.WindowSettings)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.Dispose": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.DrawCircle(System.Single,Voile.Color)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.DrawText(Voile.Font,System.String,Voile.Color)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.DrawTexture(Voile.Texture2d,Voile.Color)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.EndCamera2d": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.EndFrame": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.FrameTime": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.Fullscreen": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.GetCurrentMonitor": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.GetFrameTime": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.GetMonitorHeight(System.Int32)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.GetMonitorWidth(System.Int32)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.Initialize(Voile.Rendering.RendererSettings)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.MonitorSize": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.ResetTransform": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.SetTargetFps(System.Int32)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Matrix4x4)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2,System.Numerics.Vector2,System.Single)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.SetWindowTitle(System.String)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.SetWindowVSync(System.Boolean)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.ShouldRun": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.Shutdown": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.Start(Voile.Rendering.RendererSettings)": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.TargetFps": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.VSync": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.WindowShouldClose": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.WindowSize": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.WindowTitle": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.transformPivot": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.transformPosition": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RenderSystem.transformRotation": "Voile.Rendering.RenderSystem.yml", + "Voile.Rendering.RendererSettings": "Voile.Rendering.RendererSettings.yml", + "Voile.Rendering.RendererSettings.#ctor": "Voile.Rendering.RendererSettings.yml", + "Voile.Rendering.RendererSettings.Default": "Voile.Rendering.RendererSettings.yml", + "Voile.Rendering.RendererSettings.Fullscreen": "Voile.Rendering.RendererSettings.yml", + "Voile.Rendering.RendererSettings.Msaa": "Voile.Rendering.RendererSettings.yml", + "Voile.Rendering.RendererSettings.TargetFps": "Voile.Rendering.RendererSettings.yml", + "Voile.Rendering.RendererSettings.UseVSync": "Voile.Rendering.RendererSettings.yml", + "Voile.Rendering.RendererSettings.WindowSettings": "Voile.Rendering.RendererSettings.yml", + "Voile.Rendering.Shader": "Voile.Rendering.Shader.yml", + "Voile.Rendering.Shader.FragmentSource": "Voile.Rendering.Shader.yml", + "Voile.Rendering.Shader.VertexSource": "Voile.Rendering.Shader.yml", + "Voile.Rendering.StandardRenderSystem": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single)": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.BeginFrame": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.ClearBackground(Voile.Color)": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings)": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.CreateWindow(Voile.Rendering.WindowSettings)": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.DrawCircle(System.Single,Voile.Color)": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color)": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color)": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color)": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.DrawText(Voile.Font,System.String,Voile.Color)": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.DrawTexture(Voile.Texture2d,Voile.Color)": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.EndCamera2d": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.EndFrame": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.Fullscreen": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.GetCurrentMonitor": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.GetFrameTime": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.GetMonitorHeight(System.Int32)": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.GetMonitorWidth(System.Int32)": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.Initialize(Voile.Rendering.RendererSettings)": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.MonitorSize": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.SetTargetFps(System.Int32)": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.SetTransform(System.Numerics.Matrix4x4)": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.SetWindowTitle(System.String)": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.SetWindowVSync(System.Boolean)": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.ShouldRun": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.Shutdown": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.TargetFps": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.VSync": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.WindowShouldClose": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.WindowSize": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.StandardRenderSystem.WindowTitle": "Voile.Rendering.StandardRenderSystem.yml", + "Voile.Rendering.UnlitMaterial": "Voile.Rendering.UnlitMaterial.yml", + "Voile.Rendering.WindowSettings": "Voile.Rendering.WindowSettings.yml", + "Voile.Rendering.WindowSettings.#ctor(System.String,System.Numerics.Vector2)": "Voile.Rendering.WindowSettings.yml", + "Voile.Rendering.WindowSettings.Default": "Voile.Rendering.WindowSettings.yml", + "Voile.Rendering.WindowSettings.Resizable": "Voile.Rendering.WindowSettings.yml", + "Voile.Rendering.WindowSettings.Size": "Voile.Rendering.WindowSettings.yml", + "Voile.Rendering.WindowSettings.Title": "Voile.Rendering.WindowSettings.yml", + "Voile.Resource": "Voile.Resource.yml", + "Voile.Resource.#ctor(System.String,System.Byte[])": "Voile.Resource.yml", + "Voile.Resource.Buffer": "Voile.Resource.yml", + "Voile.Resource.BufferSize": "Voile.Resource.yml", + "Voile.Resource.Dispose": "Voile.Resource.yml", + "Voile.Resource.Guid": "Voile.Resource.yml", + "Voile.Resource.Path": "Voile.Resource.yml", + "Voile.Resources": "Voile.Resources.yml", + "Voile.Resources.FontLoader": "Voile.Resources.FontLoader.yml", + "Voile.Resources.FontLoader.Load(System.String)": "Voile.Resources.FontLoader.yml", + "Voile.Resources.FontLoader.SupportedExtensions": "Voile.Resources.FontLoader.yml", + "Voile.Resources.IResourceLoader`1": "Voile.Resources.IResourceLoader-1.yml", + "Voile.Resources.IResourceLoader`1.Load(System.String)": "Voile.Resources.IResourceLoader-1.yml", + "Voile.Resources.IResourceLoader`1.SupportedExtensions": "Voile.Resources.IResourceLoader-1.yml", + "Voile.Resources.IResourceSaver`1": "Voile.Resources.IResourceSaver-1.yml", + "Voile.Resources.IResourceSaver`1.TrySave(System.String,`0@)": "Voile.Resources.IResourceSaver-1.yml", + "Voile.Resources.ResourceManager": "Voile.Resources.ResourceManager.yml", + "Voile.Resources.ResourceManager.AddResourceLoaderAssociation``1(Voile.Resources.IResourceLoader{``0})": "Voile.Resources.ResourceManager.yml", + "Voile.Resources.ResourceManager.AddResourceSaverAssociation``1(Voile.Resources.IResourceSaver{``0})": "Voile.Resources.ResourceManager.yml", + "Voile.Resources.ResourceManager.Dispose": "Voile.Resources.ResourceManager.yml", + "Voile.Resources.ResourceManager.IsResourceLoaded(System.String)": "Voile.Resources.ResourceManager.yml", + "Voile.Resources.ResourceManager.ResourceRoot": "Voile.Resources.ResourceManager.yml", + "Voile.Resources.ResourceManager.TryGetResource``1(System.String,``0@)": "Voile.Resources.ResourceManager.yml", + "Voile.Resources.ResourceManager.TryLoad``1(System.String,System.String,``0@)": "Voile.Resources.ResourceManager.yml", + "Voile.Resources.ResourceManager.TrySave``1(System.String,``0@)": "Voile.Resources.ResourceManager.yml", + "Voile.Resources.ResourceManager.TryUnload(System.String)": "Voile.Resources.ResourceManager.yml", + "Voile.Resources.SoundLoader": "Voile.Resources.SoundLoader.yml", + "Voile.Resources.SoundLoader.Load(System.String)": "Voile.Resources.SoundLoader.yml", + "Voile.Resources.SoundLoader.SupportedExtensions": "Voile.Resources.SoundLoader.yml", + "Voile.SceneGraph": "Voile.SceneGraph.yml", + "Voile.SceneGraph.Camera2d": "Voile.SceneGraph.Camera2d.yml", + "Voile.SceneGraph.Camera2d.Current": "Voile.SceneGraph.Camera2d.yml", + "Voile.SceneGraph.Camera2d.Offset": "Voile.SceneGraph.Camera2d.yml", + "Voile.SceneGraph.Camera2d.OnStart": "Voile.SceneGraph.Camera2d.yml", + "Voile.SceneGraph.Camera2d.Zoom": "Voile.SceneGraph.Camera2d.yml", + "Voile.SceneGraph.CircleShape2d": "Voile.SceneGraph.CircleShape2d.yml", + "Voile.SceneGraph.CircleShape2d.Color": "Voile.SceneGraph.CircleShape2d.yml", + "Voile.SceneGraph.CircleShape2d.OnDraw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.CircleShape2d.yml", + "Voile.SceneGraph.CircleShape2d.Radius": "Voile.SceneGraph.CircleShape2d.yml", + "Voile.SceneGraph.Drawable2d": "Voile.SceneGraph.Drawable2d.yml", + "Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.Drawable2d.yml", + "Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.Drawable2d.yml", + "Voile.SceneGraph.Drawable2d.PivotOffset": "Voile.SceneGraph.Drawable2d.yml", + "Voile.SceneGraph.Entity": "Voile.SceneGraph.Entity.yml", + "Voile.SceneGraph.Entity.Audio": "Voile.SceneGraph.Entity.yml", + "Voile.SceneGraph.Entity.Destroy": "Voile.SceneGraph.Entity.yml", + "Voile.SceneGraph.Entity.Id": "Voile.SceneGraph.Entity.yml", + "Voile.SceneGraph.Entity.Input": "Voile.SceneGraph.Entity.yml", + "Voile.SceneGraph.Entity.Layer": "Voile.SceneGraph.Entity.yml", + "Voile.SceneGraph.Entity.OnDestroy": "Voile.SceneGraph.Entity.yml", + "Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem)": "Voile.SceneGraph.Entity.yml", + "Voile.SceneGraph.Entity.OnStart": "Voile.SceneGraph.Entity.yml", + "Voile.SceneGraph.Entity.OnUpdate(System.Double)": "Voile.SceneGraph.Entity.yml", + "Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem)": "Voile.SceneGraph.Entity.yml", + "Voile.SceneGraph.Entity.Renderer": "Voile.SceneGraph.Entity.yml", + "Voile.SceneGraph.Entity.Start": "Voile.SceneGraph.Entity.yml", + "Voile.SceneGraph.Entity.Update(System.Double)": "Voile.SceneGraph.Entity.yml", + "Voile.SceneGraph.Entity2d": "Voile.SceneGraph.Entity2d.yml", + "Voile.SceneGraph.Entity2d.Position": "Voile.SceneGraph.Entity2d.yml", + "Voile.SceneGraph.Entity2d.Rotation": "Voile.SceneGraph.Entity2d.yml", + "Voile.SceneGraph.EntityLayer": "Voile.SceneGraph.EntityLayer.yml", + "Voile.SceneGraph.EntityLayer.#ctor": "Voile.SceneGraph.EntityLayer.yml", + "Voile.SceneGraph.EntityLayer.#ctor(System.Collections.Generic.List{Voile.SceneGraph.Entity})": "Voile.SceneGraph.EntityLayer.yml", + "Voile.SceneGraph.EntityLayer.AddEntity(Voile.SceneGraph.Entity)": "Voile.SceneGraph.EntityLayer.yml", + "Voile.SceneGraph.EntityLayer.CurrentCamera": "Voile.SceneGraph.EntityLayer.yml", + "Voile.SceneGraph.EntityLayer.DestroyEntity(System.Int32)": "Voile.SceneGraph.EntityLayer.yml", + "Voile.SceneGraph.EntityLayer.Entities": "Voile.SceneGraph.EntityLayer.yml", + "Voile.SceneGraph.EntityLayer.OnBeginDraw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.EntityLayer.yml", + "Voile.SceneGraph.EntityLayer.OnDraw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.EntityLayer.yml", + "Voile.SceneGraph.EntityLayer.OnEndDraw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.EntityLayer.yml", + "Voile.SceneGraph.EntityLayer.OnStart": "Voile.SceneGraph.EntityLayer.yml", + "Voile.SceneGraph.EntityLayer.OnUpdate(System.Double)": "Voile.SceneGraph.EntityLayer.yml", + "Voile.SceneGraph.EntityLayer.UpdateCurrentCamera": "Voile.SceneGraph.EntityLayer.yml", + "Voile.SceneGraph.IDrawable": "Voile.SceneGraph.IDrawable.yml", + "Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.IDrawable.yml", + "Voile.SceneGraph.IMainLoop": "Voile.SceneGraph.IMainLoop.yml", + "Voile.SceneGraph.IMainLoop.DeltaTime": "Voile.SceneGraph.IMainLoop.yml", + "Voile.SceneGraph.IMainLoop.Init": "Voile.SceneGraph.IMainLoop.yml", + "Voile.SceneGraph.IMainLoop.ShouldRun": "Voile.SceneGraph.IMainLoop.yml", + "Voile.SceneGraph.IMainLoop.Start": "Voile.SceneGraph.IMainLoop.yml", + "Voile.SceneGraph.IMainLoop.Update": "Voile.SceneGraph.IMainLoop.yml", + "Voile.SceneGraph.ImGuiController": "Voile.SceneGraph.ImGuiController.yml", + "Voile.SceneGraph.ImGuiController.#ctor": "Voile.SceneGraph.ImGuiController.yml", + "Voile.SceneGraph.ImGuiController.Dispose": "Voile.SceneGraph.ImGuiController.yml", + "Voile.SceneGraph.ImGuiController.Draw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.ImGuiController.yml", + "Voile.SceneGraph.ImGuiController.Load(System.Numerics.Vector2)": "Voile.SceneGraph.ImGuiController.yml", + "Voile.SceneGraph.ImGuiController.Resize(System.Numerics.Vector2)": "Voile.SceneGraph.ImGuiController.yml", + "Voile.SceneGraph.ImGuiController.Update(System.Double,Voile.Input.InputSystem)": "Voile.SceneGraph.ImGuiController.yml", + "Voile.SceneGraph.ImGuiRenderLayer": "Voile.SceneGraph.ImGuiRenderLayer.yml", + "Voile.SceneGraph.ImGuiRenderLayer.Layout": "Voile.SceneGraph.ImGuiRenderLayer.yml", + "Voile.SceneGraph.ImGuiRenderLayer.OnBeginDraw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.ImGuiRenderLayer.yml", + "Voile.SceneGraph.ImGuiRenderLayer.OnDraw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.ImGuiRenderLayer.yml", + "Voile.SceneGraph.ImGuiRenderLayer.OnEndDraw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.ImGuiRenderLayer.yml", + "Voile.SceneGraph.ImGuiRenderLayer.OnStart": "Voile.SceneGraph.ImGuiRenderLayer.yml", + "Voile.SceneGraph.ImGuiRenderLayer.OnUpdate(System.Double)": "Voile.SceneGraph.ImGuiRenderLayer.yml", + "Voile.SceneGraph.Layer": "Voile.SceneGraph.Layer.yml", + "Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.Layer.yml", + "Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.Layer.yml", + "Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.Layer.yml", + "Voile.SceneGraph.Layer.Input": "Voile.SceneGraph.Layer.yml", + "Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.Layer.yml", + "Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.Layer.yml", + "Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.Layer.yml", + "Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem)": "Voile.SceneGraph.Layer.yml", + "Voile.SceneGraph.Layer.OnStart": "Voile.SceneGraph.Layer.yml", + "Voile.SceneGraph.Layer.OnUpdate(System.Double)": "Voile.SceneGraph.Layer.yml", + "Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem)": "Voile.SceneGraph.Layer.yml", + "Voile.SceneGraph.Layer.ResourceManager": "Voile.SceneGraph.Layer.yml", + "Voile.SceneGraph.Layer.Scene": "Voile.SceneGraph.Layer.yml", + "Voile.SceneGraph.Layer.Start": "Voile.SceneGraph.Layer.yml", + "Voile.SceneGraph.Layer.Update(System.Double)": "Voile.SceneGraph.Layer.yml", + "Voile.SceneGraph.Particle": "Voile.SceneGraph.Particle.yml", + "Voile.SceneGraph.Particle.#ctor": "Voile.SceneGraph.Particle.yml", + "Voile.SceneGraph.Particle.Alive": "Voile.SceneGraph.Particle.yml", + "Voile.SceneGraph.Particle.AngularVelocity": "Voile.SceneGraph.Particle.yml", + "Voile.SceneGraph.Particle.LifeTime": "Voile.SceneGraph.Particle.yml", + "Voile.SceneGraph.Particle.LifeTimeRemaining": "Voile.SceneGraph.Particle.yml", + "Voile.SceneGraph.Particle.Position": "Voile.SceneGraph.Particle.yml", + "Voile.SceneGraph.Particle.Rotation": "Voile.SceneGraph.Particle.yml", + "Voile.SceneGraph.Particle.Scale": "Voile.SceneGraph.Particle.yml", + "Voile.SceneGraph.Particle.Velocity": "Voile.SceneGraph.Particle.yml", + "Voile.SceneGraph.ParticleSettings": "Voile.SceneGraph.ParticleSettings.yml", + "Voile.SceneGraph.ParticleSettings.#ctor": "Voile.SceneGraph.ParticleSettings.yml", + "Voile.SceneGraph.ParticleSettings.AngularVelocity": "Voile.SceneGraph.ParticleSettings.yml", + "Voile.SceneGraph.ParticleSettings.AngularVelocityRandom": "Voile.SceneGraph.ParticleSettings.yml", + "Voile.SceneGraph.ParticleSettings.ColorBegin": "Voile.SceneGraph.ParticleSettings.yml", + "Voile.SceneGraph.ParticleSettings.ColorEnd": "Voile.SceneGraph.ParticleSettings.yml", + "Voile.SceneGraph.ParticleSettings.Damping": "Voile.SceneGraph.ParticleSettings.yml", + "Voile.SceneGraph.ParticleSettings.Direction": "Voile.SceneGraph.ParticleSettings.yml", + "Voile.SceneGraph.ParticleSettings.EmitRadius": "Voile.SceneGraph.ParticleSettings.yml", + "Voile.SceneGraph.ParticleSettings.Explosiveness": "Voile.SceneGraph.ParticleSettings.yml", + "Voile.SceneGraph.ParticleSettings.Gravity": "Voile.SceneGraph.ParticleSettings.yml", + "Voile.SceneGraph.ParticleSettings.LifeTime": "Voile.SceneGraph.ParticleSettings.yml", + "Voile.SceneGraph.ParticleSettings.LinearVelocity": "Voile.SceneGraph.ParticleSettings.yml", + "Voile.SceneGraph.ParticleSettings.LinearVelocityRandom": "Voile.SceneGraph.ParticleSettings.yml", + "Voile.SceneGraph.ParticleSettings.MaxParticles": "Voile.SceneGraph.ParticleSettings.yml", + "Voile.SceneGraph.ParticleSettings.ScaleBegin": "Voile.SceneGraph.ParticleSettings.yml", + "Voile.SceneGraph.ParticleSettings.ScaleEnd": "Voile.SceneGraph.ParticleSettings.yml", + "Voile.SceneGraph.Particles2d": "Voile.SceneGraph.Particles2d.yml", + "Voile.SceneGraph.Particles2d.#ctor(Voile.SceneGraph.ParticleSettings)": "Voile.SceneGraph.Particles2d.yml", + "Voile.SceneGraph.Particles2d.MaxParticles": "Voile.SceneGraph.Particles2d.yml", + "Voile.SceneGraph.Particles2d.OnDraw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.Particles2d.yml", + "Voile.SceneGraph.Particles2d.OnStart": "Voile.SceneGraph.Particles2d.yml", + "Voile.SceneGraph.Particles2d.OnUpdate(System.Double)": "Voile.SceneGraph.Particles2d.yml", + "Voile.SceneGraph.Particles2d.Restart": "Voile.SceneGraph.Particles2d.yml", + "Voile.SceneGraph.Particles2d.Settings": "Voile.SceneGraph.Particles2d.yml", + "Voile.SceneGraph.RectangleShape2d": "Voile.SceneGraph.RectangleShape2d.yml", + "Voile.SceneGraph.RectangleShape2d.Color": "Voile.SceneGraph.RectangleShape2d.yml", + "Voile.SceneGraph.RectangleShape2d.OnDraw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.RectangleShape2d.yml", + "Voile.SceneGraph.RectangleShape2d.Size": "Voile.SceneGraph.RectangleShape2d.yml", + "Voile.SceneGraph.Scene": "Voile.SceneGraph.Scene.yml", + "Voile.SceneGraph.Scene.#ctor(Voile.SceneGraph.SceneSettings)": "Voile.SceneGraph.Scene.yml", + "Voile.SceneGraph.Scene.AddLayer(System.String,Voile.SceneGraph.Layer)": "Voile.SceneGraph.Scene.yml", + "Voile.SceneGraph.Scene.Audio": "Voile.SceneGraph.Scene.yml", + "Voile.SceneGraph.Scene.BeginDraw": "Voile.SceneGraph.Scene.yml", + "Voile.SceneGraph.Scene.DeltaTime": "Voile.SceneGraph.Scene.yml", + "Voile.SceneGraph.Scene.EndDraw": "Voile.SceneGraph.Scene.yml", + "Voile.SceneGraph.Scene.FromSerialized(Voile.SceneGraph.SerializedScene,Voile.SceneGraph.SceneSettings)": "Voile.SceneGraph.Scene.yml", + "Voile.SceneGraph.Scene.Init": "Voile.SceneGraph.Scene.yml", + "Voile.SceneGraph.Scene.Input": "Voile.SceneGraph.Scene.yml", + "Voile.SceneGraph.Scene.Renderer": "Voile.SceneGraph.Scene.yml", + "Voile.SceneGraph.Scene.ResourceManager": "Voile.SceneGraph.Scene.yml", + "Voile.SceneGraph.Scene.ShouldRun": "Voile.SceneGraph.Scene.yml", + "Voile.SceneGraph.Scene.Start": "Voile.SceneGraph.Scene.yml", + "Voile.SceneGraph.Scene.TrySerialize(Voile.SceneGraph.SerializedScene@)": "Voile.SceneGraph.Scene.yml", + "Voile.SceneGraph.Scene.Update": "Voile.SceneGraph.Scene.yml", + "Voile.SceneGraph.Scene.WithLayers(System.Collections.Generic.Dictionary{System.String,Voile.SceneGraph.Layer})": "Voile.SceneGraph.Scene.yml", + "Voile.SceneGraph.SceneSettings": "Voile.SceneGraph.SceneSettings.yml", + "Voile.SceneGraph.SceneSettings.AudioBackend": "Voile.SceneGraph.SceneSettings.yml", + "Voile.SceneGraph.SceneSettings.InputHandler": "Voile.SceneGraph.SceneSettings.yml", + "Voile.SceneGraph.SceneSettings.Renderer": "Voile.SceneGraph.SceneSettings.yml", + "Voile.SceneGraph.SceneSettings.ResourceManager": "Voile.SceneGraph.SceneSettings.yml", + "Voile.SceneGraph.SerializedScene": "Voile.SceneGraph.SerializedScene.yml", + "Voile.SceneGraph.SerializedScene.#ctor(System.String,System.Byte[])": "Voile.SceneGraph.SerializedScene.yml", + "Voile.SceneGraph.SerializedScene.Layers": "Voile.SceneGraph.SerializedScene.yml", + "Voile.SceneGraph.SerializedSceneSaver": "Voile.SceneGraph.SerializedSceneSaver.yml", + "Voile.SceneGraph.SerializedSceneSaver.TrySave(System.String,Voile.SceneGraph.SerializedScene@)": "Voile.SceneGraph.SerializedSceneSaver.yml", + "Voile.SceneGraph.Sprite2d": "Voile.SceneGraph.Sprite2d.yml", + "Voile.SceneGraph.Sprite2d.OnDraw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.Sprite2d.yml", + "Voile.SceneGraph.Sprite2d.OnStart": "Voile.SceneGraph.Sprite2d.yml", + "Voile.SceneGraph.Sprite2d.Texture": "Voile.SceneGraph.Sprite2d.yml", + "Voile.SceneGraph.Text2d": "Voile.SceneGraph.Text2d.yml", + "Voile.SceneGraph.Text2d.#ctor(Voile.Font)": "Voile.SceneGraph.Text2d.yml", + "Voile.SceneGraph.Text2d.Font": "Voile.SceneGraph.Text2d.yml", + "Voile.SceneGraph.Text2d.FontColor": "Voile.SceneGraph.Text2d.yml", + "Voile.SceneGraph.Text2d.OnDraw(Voile.Rendering.RenderSystem)": "Voile.SceneGraph.Text2d.yml", + "Voile.SceneGraph.Text2d.Text": "Voile.SceneGraph.Text2d.yml", + "Voile.Sound": "Voile.Sound.yml", + "Voile.Sound.#ctor(System.String,System.Byte[])": "Voile.Sound.yml", + "Voile.Sound.Format": "Voile.Sound.yml", + "Voile.Sound.SampleRate": "Voile.Sound.yml", + "Voile.SoundFormat": "Voile.SoundFormat.yml", + "Voile.SoundFormat.Mono": "Voile.SoundFormat.yml", + "Voile.SoundFormat.Stereo": "Voile.SoundFormat.yml", + "Voile.Texture2d": "Voile.Texture2d.yml", + "Voile.Texture2d.#ctor(System.String,System.Byte[])": "Voile.Texture2d.yml", + "Voile.Texture2d.Empty": "Voile.Texture2d.yml", + "Voile.Texture2d.Format": "Voile.Texture2d.yml", + "Voile.Texture2d.Height": "Voile.Texture2d.yml", + "Voile.Texture2d.Mipmaps": "Voile.Texture2d.yml", + "Voile.Texture2d.Width": "Voile.Texture2d.yml", + "Voile.Texture2dLoader": "Voile.Texture2dLoader.yml", + "Voile.Texture2dLoader.Load(System.String)": "Voile.Texture2dLoader.yml", + "Voile.Texture2dLoader.SupportedExtensions": "Voile.Texture2dLoader.yml", + "Voile.TextureFormat": "Voile.TextureFormat.yml", + "Voile.TextureFormat.CompressedASTC4x4Rgba": "Voile.TextureFormat.yml", + "Voile.TextureFormat.CompressedASTC8x8Rgba": "Voile.TextureFormat.yml", + "Voile.TextureFormat.CompressedDXT1Rgb": "Voile.TextureFormat.yml", + "Voile.TextureFormat.CompressedDXT1Rgba": "Voile.TextureFormat.yml", + "Voile.TextureFormat.CompressedDXT3Rgba": "Voile.TextureFormat.yml", + "Voile.TextureFormat.CompressedDXT5Rgba": "Voile.TextureFormat.yml", + "Voile.TextureFormat.CompressedETC1Rgb": "Voile.TextureFormat.yml", + "Voile.TextureFormat.CompressedETC2EACRgba": "Voile.TextureFormat.yml", + "Voile.TextureFormat.CompressedETC2Rgb": "Voile.TextureFormat.yml", + "Voile.TextureFormat.CompressedPVRTRgb": "Voile.TextureFormat.yml", + "Voile.TextureFormat.CompressedPVRTRgba": "Voile.TextureFormat.yml", + "Voile.TextureFormat.UncompressedGrayAlpha": "Voile.TextureFormat.yml", + "Voile.TextureFormat.UncompressedGrayscale": "Voile.TextureFormat.yml", + "Voile.TextureFormat.UncompressedR32": "Voile.TextureFormat.yml", + "Voile.TextureFormat.UncompressedR32G32B32": "Voile.TextureFormat.yml", + "Voile.TextureFormat.UncompressedR32G32B32A32": "Voile.TextureFormat.yml", + "Voile.TextureFormat.UncompressedR4G4B4A4": "Voile.TextureFormat.yml", + "Voile.TextureFormat.UncompressedR5G5B5A1": "Voile.TextureFormat.yml", + "Voile.TextureFormat.UncompressedR5G6B5": "Voile.TextureFormat.yml", + "Voile.TextureFormat.UncompressedR8G8B8": "Voile.TextureFormat.yml", + "Voile.TextureFormat.UncompressedR8G8B8A8": "Voile.TextureFormat.yml", + "Voile.UI": "Voile.UI.yml", + "Voile.UI.Container": "Voile.UI.Container.yml", + "Voile.UI.Container.OnRender(Voile.Rendering.RenderSystem)": "Voile.UI.Container.yml", + "Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement)": "Voile.UI.Container.yml", + "Voile.UI.Container.RearrangeChildren": "Voile.UI.Container.yml", + "Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2)": "Voile.UI.Container.yml", + "Voile.UI.MarginPanel": "Voile.UI.MarginPanel.yml", + "Voile.UI.MarginPanel.#ctor(Voile.UI.PanelStyle)": "Voile.UI.MarginPanel.yml", + "Voile.UI.MarginPanel.AbsoluteMargin": "Voile.UI.MarginPanel.yml", + "Voile.UI.MarginPanel.RearrangeChild(System.Int32,Voile.UI.UIElement)": "Voile.UI.MarginPanel.yml", + "Voile.UI.MarginPanel.RelativeMargin": "Voile.UI.MarginPanel.yml", + "Voile.UI.Panel": "Voile.UI.Panel.yml", + "Voile.UI.Panel.#ctor(Voile.UI.PanelStyle)": "Voile.UI.Panel.yml", + "Voile.UI.Panel.OnRender(Voile.Rendering.RenderSystem)": "Voile.UI.Panel.yml", + "Voile.UI.Panel.Style": "Voile.UI.Panel.yml", + "Voile.UI.PanelStyle": "Voile.UI.PanelStyle.yml", + "Voile.UI.PanelStyle.BackgroundColor": "Voile.UI.PanelStyle.yml", + "Voile.UI.Rect": "Voile.UI.Rect.yml", + "Voile.UI.Rect.Position": "Voile.UI.Rect.yml", + "Voile.UI.Rect.Scale": "Voile.UI.Rect.yml", + "Voile.UI.Rect.Size": "Voile.UI.Rect.yml", + "Voile.UI.SizeFlags": "Voile.UI.SizeFlags.yml", + "Voile.UI.SizeFlags.Fill": "Voile.UI.SizeFlags.yml", + "Voile.UI.SizeFlags.ShrinkBegin": "Voile.UI.SizeFlags.yml", + "Voile.UI.SizeFlags.ShrinkCenter": "Voile.UI.SizeFlags.yml", + "Voile.UI.SizeFlags.ShrinkEnd": "Voile.UI.SizeFlags.yml", + "Voile.UI.TextLabel": "Voile.UI.TextLabel.yml", + "Voile.UI.TextLabel.Font": "Voile.UI.TextLabel.yml", + "Voile.UI.TextLabel.FontColor": "Voile.UI.TextLabel.yml", + "Voile.UI.TextLabel.FontSize": "Voile.UI.TextLabel.yml", + "Voile.UI.TextLabel.OnRender(Voile.Rendering.RenderSystem)": "Voile.UI.TextLabel.yml", + "Voile.UI.TextLabel.Text": "Voile.UI.TextLabel.yml", + "Voile.UI.UIElement": "Voile.UI.UIElement.yml", + "Voile.UI.UIElement.#ctor": "Voile.UI.UIElement.yml", + "Voile.UI.UIElement.AddChild(Voile.UI.UIElement)": "Voile.UI.UIElement.yml", + "Voile.UI.UIElement.ExpandRatio": "Voile.UI.UIElement.yml", + "Voile.UI.UIElement.HorizontalSizeFlags": "Voile.UI.UIElement.yml", + "Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem)": "Voile.UI.UIElement.yml", + "Voile.UI.UIElement.Rect": "Voile.UI.UIElement.yml", + "Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem)": "Voile.UI.UIElement.yml", + "Voile.UI.UIElement.VerticalSizeFlags": "Voile.UI.UIElement.yml", + "Voile.UI.UIElement.children": "Voile.UI.UIElement.yml", + "Voile.UI.UIElement.parent": "Voile.UI.UIElement.yml", + "Voile.UI.VerticalPanel": "Voile.UI.VerticalPanel.yml", + "Voile.UI.VerticalPanel.#ctor(Voile.UI.PanelStyle)": "Voile.UI.VerticalPanel.yml", + "Voile.UI.VerticalPanel.RearrangeChild(System.Int32,Voile.UI.UIElement)": "Voile.UI.VerticalPanel.yml", + "Voile.UI.VerticalPanel.Spacing": "Voile.UI.VerticalPanel.yml", + "Voile.Utils": "Voile.Utils.yml", + "Voile.Utils.LogLevel": "Voile.Utils.LogLevel.yml", + "Voile.Utils.LogLevel.Echo": "Voile.Utils.LogLevel.yml", + "Voile.Utils.LogLevel.Error": "Voile.Utils.LogLevel.yml", + "Voile.Utils.LogLevel.Info": "Voile.Utils.LogLevel.yml", + "Voile.Utils.LogLevel.Warn": "Voile.Utils.LogLevel.yml", + "Voile.Utils.Logger": "Voile.Utils.Logger.yml", + "Voile.Utils.Logger.#ctor(System.String)": "Voile.Utils.Logger.yml", + "Voile.Utils.Logger.Echo(System.String)": "Voile.Utils.Logger.yml", + "Voile.Utils.Logger.Error(System.String,System.String)": "Voile.Utils.Logger.yml", + "Voile.Utils.Logger.Info(System.String,System.String)": "Voile.Utils.Logger.yml", + "Voile.Utils.Logger.LogLevel": "Voile.Utils.Logger.yml", + "Voile.Utils.Logger.LogPath": "Voile.Utils.Logger.yml", + "Voile.Utils.Logger.MaxLogFiles": "Voile.Utils.Logger.yml", + "Voile.Utils.Logger.OnLog": "Voile.Utils.Logger.yml", + "Voile.Utils.Logger.Warn(System.String,System.String)": "Voile.Utils.Logger.yml", + "Voile.Utils.Logger.WriteToFile": "Voile.Utils.Logger.yml" +} \ No newline at end of file diff --git a/Voile/api/Voile.Audio.AudioSystem.yml b/Voile/api/Voile.Audio.AudioSystem.yml new file mode 100644 index 0000000..72af916 --- /dev/null +++ b/Voile/api/Voile.Audio.AudioSystem.yml @@ -0,0 +1,952 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Audio.AudioSystem + commentId: T:Voile.Audio.AudioSystem + id: AudioSystem + parent: Voile.Audio + children: + - Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + - Voile.Audio.AudioSystem.CreateBus(System.String) + - Voile.Audio.AudioSystem.CreateInstance(Voile.Sound) + - Voile.Audio.AudioSystem.Dispose + - Voile.Audio.AudioSystem.GetBusVolume(System.String) + - Voile.Audio.AudioSystem.Initialize + - Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + - Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.String) + - Voile.Audio.AudioSystem.SetBusVolume(System.String,System.Single) + - Voile.Audio.AudioSystem.Shutdown + - Voile.Audio.AudioSystem.Start + - Voile.Audio.AudioSystem.Update + - Voile.Audio.AudioSystem.Update(System.Double) + langs: + - csharp + - vb + name: AudioSystem + nameWithType: AudioSystem + fullName: Voile.Audio.AudioSystem + type: Class + source: + remote: + path: Voile/Source/Audio/AudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AudioSystem + path: Source/Audio/AudioSystem.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: 'public abstract class AudioSystem : IStartableSystem, IUpdatableSystem, IDisposable' + content.vb: Public MustInherit Class AudioSystem Implements IStartableSystem, IUpdatableSystem, IDisposable + inheritance: + - System.Object + derivedClasses: + - Voile.Audio.DummyAudioSystem + - Voile.Audio.FmodAudioSystem + implements: + - Voile.IStartableSystem + - Voile.IUpdatableSystem + - System.IDisposable + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Audio.AudioSystem.Start + commentId: M:Voile.Audio.AudioSystem.Start + id: Start + parent: Voile.Audio.AudioSystem + langs: + - csharp + - vb + name: Start() + nameWithType: AudioSystem.Start() + fullName: Voile.Audio.AudioSystem.Start() + type: Method + source: + remote: + path: Voile/Source/Audio/AudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Start + path: Source/Audio/AudioSystem.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.Audio + example: [] + syntax: + content: public void Start() + content.vb: Public Sub Start() + overload: Voile.Audio.AudioSystem.Start* + implements: + - Voile.IStartableSystem.Start +- uid: Voile.Audio.AudioSystem.Update(System.Double) + commentId: M:Voile.Audio.AudioSystem.Update(System.Double) + id: Update(System.Double) + parent: Voile.Audio.AudioSystem + langs: + - csharp + - vb + name: Update(double) + nameWithType: AudioSystem.Update(double) + fullName: Voile.Audio.AudioSystem.Update(double) + type: Method + source: + remote: + path: Voile/Source/Audio/AudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Update + path: Source/Audio/AudioSystem.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile.Audio + example: [] + syntax: + content: public void Update(double deltaTime) + parameters: + - id: deltaTime + type: System.Double + content.vb: Public Sub Update(deltaTime As Double) + overload: Voile.Audio.AudioSystem.Update* + implements: + - Voile.IUpdatableSystem.Update(System.Double) + nameWithType.vb: AudioSystem.Update(Double) + fullName.vb: Voile.Audio.AudioSystem.Update(Double) + name.vb: Update(Double) +- uid: Voile.Audio.AudioSystem.Dispose + commentId: M:Voile.Audio.AudioSystem.Dispose + id: Dispose + parent: Voile.Audio.AudioSystem + langs: + - csharp + - vb + name: Dispose() + nameWithType: AudioSystem.Dispose() + fullName: Voile.Audio.AudioSystem.Dispose() + type: Method + source: + remote: + path: Voile/Source/Audio/AudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Dispose + path: Source/Audio/AudioSystem.cs + startLine: 10 + assemblies: + - Voile + namespace: Voile.Audio + summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + example: [] + syntax: + content: public void Dispose() + content.vb: Public Sub Dispose() + overload: Voile.Audio.AudioSystem.Dispose* + implements: + - System.IDisposable.Dispose +- uid: Voile.Audio.AudioSystem.Initialize + commentId: M:Voile.Audio.AudioSystem.Initialize + id: Initialize + parent: Voile.Audio.AudioSystem + langs: + - csharp + - vb + name: Initialize() + nameWithType: AudioSystem.Initialize() + fullName: Voile.Audio.AudioSystem.Initialize() + type: Method + source: + remote: + path: Voile/Source/Audio/AudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Initialize + path: Source/Audio/AudioSystem.cs + startLine: 16 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: protected abstract void Initialize() + content.vb: Protected MustOverride Sub Initialize() + overload: Voile.Audio.AudioSystem.Initialize* +- uid: Voile.Audio.AudioSystem.Update + commentId: M:Voile.Audio.AudioSystem.Update + id: Update + parent: Voile.Audio.AudioSystem + langs: + - csharp + - vb + name: Update() + nameWithType: AudioSystem.Update() + fullName: Voile.Audio.AudioSystem.Update() + type: Method + source: + remote: + path: Voile/Source/Audio/AudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Update + path: Source/Audio/AudioSystem.cs + startLine: 17 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: protected abstract void Update() + content.vb: Protected MustOverride Sub Update() + overload: Voile.Audio.AudioSystem.Update* +- uid: Voile.Audio.AudioSystem.Shutdown + commentId: M:Voile.Audio.AudioSystem.Shutdown + id: Shutdown + parent: Voile.Audio.AudioSystem + langs: + - csharp + - vb + name: Shutdown() + nameWithType: AudioSystem.Shutdown() + fullName: Voile.Audio.AudioSystem.Shutdown() + type: Method + source: + remote: + path: Voile/Source/Audio/AudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Shutdown + path: Source/Audio/AudioSystem.cs + startLine: 18 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: protected abstract void Shutdown() + content.vb: Protected MustOverride Sub Shutdown() + overload: Voile.Audio.AudioSystem.Shutdown* +- uid: Voile.Audio.AudioSystem.CreateBus(System.String) + commentId: M:Voile.Audio.AudioSystem.CreateBus(System.String) + id: CreateBus(System.String) + parent: Voile.Audio.AudioSystem + langs: + - csharp + - vb + name: CreateBus(string) + nameWithType: AudioSystem.CreateBus(string) + fullName: Voile.Audio.AudioSystem.CreateBus(string) + type: Method + source: + remote: + path: Voile/Source/Audio/AudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CreateBus + path: Source/Audio/AudioSystem.cs + startLine: 20 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: public abstract void CreateBus(string busName) + parameters: + - id: busName + type: System.String + content.vb: Public MustOverride Sub CreateBus(busName As String) + overload: Voile.Audio.AudioSystem.CreateBus* + nameWithType.vb: AudioSystem.CreateBus(String) + fullName.vb: Voile.Audio.AudioSystem.CreateBus(String) + name.vb: CreateBus(String) +- uid: Voile.Audio.AudioSystem.SetBusVolume(System.String,System.Single) + commentId: M:Voile.Audio.AudioSystem.SetBusVolume(System.String,System.Single) + id: SetBusVolume(System.String,System.Single) + parent: Voile.Audio.AudioSystem + langs: + - csharp + - vb + name: SetBusVolume(string, float) + nameWithType: AudioSystem.SetBusVolume(string, float) + fullName: Voile.Audio.AudioSystem.SetBusVolume(string, float) + type: Method + source: + remote: + path: Voile/Source/Audio/AudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetBusVolume + path: Source/Audio/AudioSystem.cs + startLine: 21 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: public abstract void SetBusVolume(string busName, float volume) + parameters: + - id: busName + type: System.String + - id: volume + type: System.Single + content.vb: Public MustOverride Sub SetBusVolume(busName As String, volume As Single) + overload: Voile.Audio.AudioSystem.SetBusVolume* + nameWithType.vb: AudioSystem.SetBusVolume(String, Single) + fullName.vb: Voile.Audio.AudioSystem.SetBusVolume(String, Single) + name.vb: SetBusVolume(String, Single) +- uid: Voile.Audio.AudioSystem.GetBusVolume(System.String) + commentId: M:Voile.Audio.AudioSystem.GetBusVolume(System.String) + id: GetBusVolume(System.String) + parent: Voile.Audio.AudioSystem + langs: + - csharp + - vb + name: GetBusVolume(string) + nameWithType: AudioSystem.GetBusVolume(string) + fullName: Voile.Audio.AudioSystem.GetBusVolume(string) + type: Method + source: + remote: + path: Voile/Source/Audio/AudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetBusVolume + path: Source/Audio/AudioSystem.cs + startLine: 22 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: public abstract float GetBusVolume(string busName) + parameters: + - id: busName + type: System.String + return: + type: System.Single + content.vb: Public MustOverride Function GetBusVolume(busName As String) As Single + overload: Voile.Audio.AudioSystem.GetBusVolume* + nameWithType.vb: AudioSystem.GetBusVolume(String) + fullName.vb: Voile.Audio.AudioSystem.GetBusVolume(String) + name.vb: GetBusVolume(String) +- uid: Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + commentId: M:Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + id: PlaySound(Voile.Sound,System.Single,System.Single,System.String) + parent: Voile.Audio.AudioSystem + langs: + - csharp + - vb + name: PlaySound(Sound, float, float, string) + nameWithType: AudioSystem.PlaySound(Sound, float, float, string) + fullName: Voile.Audio.AudioSystem.PlaySound(Voile.Sound, float, float, string) + type: Method + source: + remote: + path: Voile/Source/Audio/AudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: PlaySound + path: Source/Audio/AudioSystem.cs + startLine: 25 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: public abstract void PlaySound(Sound sound, float pitch, float volume, string bus = "Master") + parameters: + - id: sound + type: Voile.Sound + - id: pitch + type: System.Single + - id: volume + type: System.Single + - id: bus + type: System.String + content.vb: Public MustOverride Sub PlaySound(sound As Sound, pitch As Single, volume As Single, bus As String = "Master") + overload: Voile.Audio.AudioSystem.PlaySound* + nameWithType.vb: AudioSystem.PlaySound(Sound, Single, Single, String) + fullName.vb: Voile.Audio.AudioSystem.PlaySound(Voile.Sound, Single, Single, String) + name.vb: PlaySound(Sound, Single, Single, String) +- uid: Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.String) + commentId: M:Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.String) + id: PlaySound(Voile.Sound,System.String) + parent: Voile.Audio.AudioSystem + langs: + - csharp + - vb + name: PlaySound(Sound, string) + nameWithType: AudioSystem.PlaySound(Sound, string) + fullName: Voile.Audio.AudioSystem.PlaySound(Voile.Sound, string) + type: Method + source: + remote: + path: Voile/Source/Audio/AudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: PlaySound + path: Source/Audio/AudioSystem.cs + startLine: 26 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: public void PlaySound(Sound sound, string bus = "Master") + parameters: + - id: sound + type: Voile.Sound + - id: bus + type: System.String + content.vb: Public Sub PlaySound(sound As Sound, bus As String = "Master") + overload: Voile.Audio.AudioSystem.PlaySound* + nameWithType.vb: AudioSystem.PlaySound(Sound, String) + fullName.vb: Voile.Audio.AudioSystem.PlaySound(Voile.Sound, String) + name.vb: PlaySound(Sound, String) +- uid: Voile.Audio.AudioSystem.CreateInstance(Voile.Sound) + commentId: M:Voile.Audio.AudioSystem.CreateInstance(Voile.Sound) + id: CreateInstance(Voile.Sound) + parent: Voile.Audio.AudioSystem + langs: + - csharp + - vb + name: CreateInstance(Sound) + nameWithType: AudioSystem.CreateInstance(Sound) + fullName: Voile.Audio.AudioSystem.CreateInstance(Voile.Sound) + type: Method + source: + remote: + path: Voile/Source/Audio/AudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CreateInstance + path: Source/Audio/AudioSystem.cs + startLine: 28 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: public SoundInstance CreateInstance(Sound sound) + parameters: + - id: sound + type: Voile.Sound + return: + type: Voile.Audio.SoundInstance + content.vb: Public Function CreateInstance(sound As Sound) As SoundInstance + overload: Voile.Audio.AudioSystem.CreateInstance* +- uid: Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + commentId: M:Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + id: AddBusEffect``1(``0,System.String) + parent: Voile.Audio.AudioSystem + langs: + - csharp + - vb + name: AddBusEffect(T, string) + nameWithType: AudioSystem.AddBusEffect(T, string) + fullName: Voile.Audio.AudioSystem.AddBusEffect(T, string) + type: Method + source: + remote: + path: Voile/Source/Audio/AudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AddBusEffect + path: Source/Audio/AudioSystem.cs + startLine: 35 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: 'public abstract void AddBusEffect(T effect, string bus = "Master") where T : AudioEffect' + parameters: + - id: effect + type: '{T}' + - id: bus + type: System.String + typeParameters: + - id: T + content.vb: Public MustOverride Sub AddBusEffect(Of T As AudioEffect)(effect As T, bus As String = "Master") + overload: Voile.Audio.AudioSystem.AddBusEffect* + nameWithType.vb: AudioSystem.AddBusEffect(Of T)(T, String) + fullName.vb: Voile.Audio.AudioSystem.AddBusEffect(Of T)(T, String) + name.vb: AddBusEffect(Of T)(T, String) +references: +- uid: Voile.Audio + commentId: N:Voile.Audio + href: Voile.html + name: Voile.Audio + nameWithType: Voile.Audio + fullName: Voile.Audio + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Audio + name: Audio + href: Voile.Audio.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Audio + name: Audio + href: Voile.Audio.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.IStartableSystem + commentId: T:Voile.IStartableSystem + parent: Voile + href: Voile.IStartableSystem.html + name: IStartableSystem + nameWithType: IStartableSystem + fullName: Voile.IStartableSystem +- uid: Voile.IUpdatableSystem + commentId: T:Voile.IUpdatableSystem + parent: Voile + href: Voile.IUpdatableSystem.html + name: IUpdatableSystem + nameWithType: IUpdatableSystem + fullName: Voile.IUpdatableSystem +- uid: System.IDisposable + commentId: T:System.IDisposable + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable + name: IDisposable + nameWithType: IDisposable + fullName: System.IDisposable +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.Audio.AudioSystem.Start* + commentId: Overload:Voile.Audio.AudioSystem.Start + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Start + name: Start + nameWithType: AudioSystem.Start + fullName: Voile.Audio.AudioSystem.Start +- uid: Voile.IStartableSystem.Start + commentId: M:Voile.IStartableSystem.Start + parent: Voile.IStartableSystem + href: Voile.IStartableSystem.html#Voile_IStartableSystem_Start + name: Start() + nameWithType: IStartableSystem.Start() + fullName: Voile.IStartableSystem.Start() + spec.csharp: + - uid: Voile.IStartableSystem.Start + name: Start + href: Voile.IStartableSystem.html#Voile_IStartableSystem_Start + - name: ( + - name: ) + spec.vb: + - uid: Voile.IStartableSystem.Start + name: Start + href: Voile.IStartableSystem.html#Voile_IStartableSystem_Start + - name: ( + - name: ) +- uid: Voile.Audio.AudioSystem.Update* + commentId: Overload:Voile.Audio.AudioSystem.Update + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Update_System_Double_ + name: Update + nameWithType: AudioSystem.Update + fullName: Voile.Audio.AudioSystem.Update +- uid: Voile.IUpdatableSystem.Update(System.Double) + commentId: M:Voile.IUpdatableSystem.Update(System.Double) + parent: Voile.IUpdatableSystem + isExternal: true + href: Voile.IUpdatableSystem.html#Voile_IUpdatableSystem_Update_System_Double_ + name: Update(double) + nameWithType: IUpdatableSystem.Update(double) + fullName: Voile.IUpdatableSystem.Update(double) + nameWithType.vb: IUpdatableSystem.Update(Double) + fullName.vb: Voile.IUpdatableSystem.Update(Double) + name.vb: Update(Double) + spec.csharp: + - uid: Voile.IUpdatableSystem.Update(System.Double) + name: Update + href: Voile.IUpdatableSystem.html#Voile_IUpdatableSystem_Update_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.IUpdatableSystem.Update(System.Double) + name: Update + href: Voile.IUpdatableSystem.html#Voile_IUpdatableSystem_Update_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: System.Double + commentId: T:System.Double + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + name: double + nameWithType: double + fullName: double + nameWithType.vb: Double + fullName.vb: Double + name.vb: Double +- uid: Voile.Audio.AudioSystem.Dispose* + commentId: Overload:Voile.Audio.AudioSystem.Dispose + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Dispose + name: Dispose + nameWithType: AudioSystem.Dispose + fullName: Voile.Audio.AudioSystem.Dispose +- uid: System.IDisposable.Dispose + commentId: M:System.IDisposable.Dispose + parent: System.IDisposable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + name: Dispose() + nameWithType: IDisposable.Dispose() + fullName: System.IDisposable.Dispose() + spec.csharp: + - uid: System.IDisposable.Dispose + name: Dispose + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + - name: ( + - name: ) + spec.vb: + - uid: System.IDisposable.Dispose + name: Dispose + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + - name: ( + - name: ) +- uid: Voile.Audio.AudioSystem.Initialize* + commentId: Overload:Voile.Audio.AudioSystem.Initialize + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Initialize + name: Initialize + nameWithType: AudioSystem.Initialize + fullName: Voile.Audio.AudioSystem.Initialize +- uid: Voile.Audio.AudioSystem.Shutdown* + commentId: Overload:Voile.Audio.AudioSystem.Shutdown + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Shutdown + name: Shutdown + nameWithType: AudioSystem.Shutdown + fullName: Voile.Audio.AudioSystem.Shutdown +- uid: Voile.Audio.AudioSystem.CreateBus* + commentId: Overload:Voile.Audio.AudioSystem.CreateBus + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_CreateBus_System_String_ + name: CreateBus + nameWithType: AudioSystem.CreateBus + fullName: Voile.Audio.AudioSystem.CreateBus +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.Audio.AudioSystem.SetBusVolume* + commentId: Overload:Voile.Audio.AudioSystem.SetBusVolume + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_SetBusVolume_System_String_System_Single_ + name: SetBusVolume + nameWithType: AudioSystem.SetBusVolume + fullName: Voile.Audio.AudioSystem.SetBusVolume +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: Voile.Audio.AudioSystem.GetBusVolume* + commentId: Overload:Voile.Audio.AudioSystem.GetBusVolume + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_GetBusVolume_System_String_ + name: GetBusVolume + nameWithType: AudioSystem.GetBusVolume + fullName: Voile.Audio.AudioSystem.GetBusVolume +- uid: Voile.Audio.AudioSystem.PlaySound* + commentId: Overload:Voile.Audio.AudioSystem.PlaySound + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_PlaySound_Voile_Sound_System_Single_System_Single_System_String_ + name: PlaySound + nameWithType: AudioSystem.PlaySound + fullName: Voile.Audio.AudioSystem.PlaySound +- uid: Voile.Sound + commentId: T:Voile.Sound + parent: Voile + href: Voile.Sound.html + name: Sound + nameWithType: Sound + fullName: Voile.Sound +- uid: Voile.Audio.AudioSystem.CreateInstance* + commentId: Overload:Voile.Audio.AudioSystem.CreateInstance + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_CreateInstance_Voile_Sound_ + name: CreateInstance + nameWithType: AudioSystem.CreateInstance + fullName: Voile.Audio.AudioSystem.CreateInstance +- uid: Voile.Audio.SoundInstance + commentId: T:Voile.Audio.SoundInstance + parent: Voile.Audio + href: Voile.Audio.SoundInstance.html + name: SoundInstance + nameWithType: SoundInstance + fullName: Voile.Audio.SoundInstance +- uid: Voile.Audio.AudioSystem.AddBusEffect* + commentId: Overload:Voile.Audio.AudioSystem.AddBusEffect + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_AddBusEffect__1___0_System_String_ + name: AddBusEffect + nameWithType: AudioSystem.AddBusEffect + fullName: Voile.Audio.AudioSystem.AddBusEffect +- uid: '{T}' + commentId: '!:T' + definition: T + name: T + nameWithType: T + fullName: T +- uid: T + name: T + nameWithType: T + fullName: T diff --git a/Voile/api/Voile.Audio.DummyAudioSystem.yml b/Voile/api/Voile.Audio.DummyAudioSystem.yml new file mode 100644 index 0000000..0ccf4ba --- /dev/null +++ b/Voile/api/Voile.Audio.DummyAudioSystem.yml @@ -0,0 +1,1159 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Audio.DummyAudioSystem + commentId: T:Voile.Audio.DummyAudioSystem + id: DummyAudioSystem + parent: Voile.Audio + children: + - Voile.Audio.DummyAudioSystem.AddBusEffect``1(``0,System.String) + - Voile.Audio.DummyAudioSystem.CreateBus(System.String) + - Voile.Audio.DummyAudioSystem.GetBusVolume(System.String) + - Voile.Audio.DummyAudioSystem.Initialize + - Voile.Audio.DummyAudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + - Voile.Audio.DummyAudioSystem.SetBusVolume(System.String,System.Single) + - Voile.Audio.DummyAudioSystem.Shutdown + - Voile.Audio.DummyAudioSystem.Update + langs: + - csharp + - vb + name: DummyAudioSystem + nameWithType: DummyAudioSystem + fullName: Voile.Audio.DummyAudioSystem + type: Class + source: + remote: + path: Voile/Source/Audio/DummyAudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DummyAudioSystem + path: Source/Audio/DummyAudioSystem.cs + startLine: 5 + assemblies: + - Voile + namespace: Voile.Audio + summary: Dummy audio system. + example: [] + syntax: + content: 'public class DummyAudioSystem : AudioSystem, IStartableSystem, IUpdatableSystem, IDisposable' + content.vb: Public Class DummyAudioSystem Inherits AudioSystem Implements IStartableSystem, IUpdatableSystem, IDisposable + inheritance: + - System.Object + - Voile.Audio.AudioSystem + implements: + - Voile.IStartableSystem + - Voile.IUpdatableSystem + - System.IDisposable + inheritedMembers: + - Voile.Audio.AudioSystem.Start + - Voile.Audio.AudioSystem.Update(System.Double) + - Voile.Audio.AudioSystem.Dispose + - Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.String) + - Voile.Audio.AudioSystem.CreateInstance(Voile.Sound) + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Audio.DummyAudioSystem.AddBusEffect``1(``0,System.String) + commentId: M:Voile.Audio.DummyAudioSystem.AddBusEffect``1(``0,System.String) + id: AddBusEffect``1(``0,System.String) + parent: Voile.Audio.DummyAudioSystem + langs: + - csharp + - vb + name: AddBusEffect(T, string) + nameWithType: DummyAudioSystem.AddBusEffect(T, string) + fullName: Voile.Audio.DummyAudioSystem.AddBusEffect(T, string) + type: Method + source: + remote: + path: Voile/Source/Audio/DummyAudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AddBusEffect + path: Source/Audio/DummyAudioSystem.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.Audio + example: [] + syntax: + content: 'public override void AddBusEffect(T effect, string bus = "Master") where T : AudioEffect' + parameters: + - id: effect + type: '{T}' + - id: bus + type: System.String + typeParameters: + - id: T + content.vb: Public Overrides Sub AddBusEffect(Of T As AudioEffect)(effect As T, bus As String = "Master") + overridden: Voile.Audio.AudioSystem.AddBusEffect``1({T},System.String) + overload: Voile.Audio.DummyAudioSystem.AddBusEffect* + nameWithType.vb: DummyAudioSystem.AddBusEffect(Of T)(T, String) + fullName.vb: Voile.Audio.DummyAudioSystem.AddBusEffect(Of T)(T, String) + name.vb: AddBusEffect(Of T)(T, String) +- uid: Voile.Audio.DummyAudioSystem.CreateBus(System.String) + commentId: M:Voile.Audio.DummyAudioSystem.CreateBus(System.String) + id: CreateBus(System.String) + parent: Voile.Audio.DummyAudioSystem + langs: + - csharp + - vb + name: CreateBus(string) + nameWithType: DummyAudioSystem.CreateBus(string) + fullName: Voile.Audio.DummyAudioSystem.CreateBus(string) + type: Method + source: + remote: + path: Voile/Source/Audio/DummyAudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CreateBus + path: Source/Audio/DummyAudioSystem.cs + startLine: 12 + assemblies: + - Voile + namespace: Voile.Audio + example: [] + syntax: + content: public override void CreateBus(string busName) + parameters: + - id: busName + type: System.String + content.vb: Public Overrides Sub CreateBus(busName As String) + overridden: Voile.Audio.AudioSystem.CreateBus(System.String) + overload: Voile.Audio.DummyAudioSystem.CreateBus* + nameWithType.vb: DummyAudioSystem.CreateBus(String) + fullName.vb: Voile.Audio.DummyAudioSystem.CreateBus(String) + name.vb: CreateBus(String) +- uid: Voile.Audio.DummyAudioSystem.GetBusVolume(System.String) + commentId: M:Voile.Audio.DummyAudioSystem.GetBusVolume(System.String) + id: GetBusVolume(System.String) + parent: Voile.Audio.DummyAudioSystem + langs: + - csharp + - vb + name: GetBusVolume(string) + nameWithType: DummyAudioSystem.GetBusVolume(string) + fullName: Voile.Audio.DummyAudioSystem.GetBusVolume(string) + type: Method + source: + remote: + path: Voile/Source/Audio/DummyAudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetBusVolume + path: Source/Audio/DummyAudioSystem.cs + startLine: 17 + assemblies: + - Voile + namespace: Voile.Audio + example: [] + syntax: + content: public override float GetBusVolume(string busName) + parameters: + - id: busName + type: System.String + return: + type: System.Single + content.vb: Public Overrides Function GetBusVolume(busName As String) As Single + overridden: Voile.Audio.AudioSystem.GetBusVolume(System.String) + overload: Voile.Audio.DummyAudioSystem.GetBusVolume* + nameWithType.vb: DummyAudioSystem.GetBusVolume(String) + fullName.vb: Voile.Audio.DummyAudioSystem.GetBusVolume(String) + name.vb: GetBusVolume(String) +- uid: Voile.Audio.DummyAudioSystem.Initialize + commentId: M:Voile.Audio.DummyAudioSystem.Initialize + id: Initialize + parent: Voile.Audio.DummyAudioSystem + langs: + - csharp + - vb + name: Initialize() + nameWithType: DummyAudioSystem.Initialize() + fullName: Voile.Audio.DummyAudioSystem.Initialize() + type: Method + source: + remote: + path: Voile/Source/Audio/DummyAudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Initialize + path: Source/Audio/DummyAudioSystem.cs + startLine: 22 + assemblies: + - Voile + namespace: Voile.Audio + example: [] + syntax: + content: protected override void Initialize() + content.vb: Protected Overrides Sub Initialize() + overridden: Voile.Audio.AudioSystem.Initialize + overload: Voile.Audio.DummyAudioSystem.Initialize* +- uid: Voile.Audio.DummyAudioSystem.SetBusVolume(System.String,System.Single) + commentId: M:Voile.Audio.DummyAudioSystem.SetBusVolume(System.String,System.Single) + id: SetBusVolume(System.String,System.Single) + parent: Voile.Audio.DummyAudioSystem + langs: + - csharp + - vb + name: SetBusVolume(string, float) + nameWithType: DummyAudioSystem.SetBusVolume(string, float) + fullName: Voile.Audio.DummyAudioSystem.SetBusVolume(string, float) + type: Method + source: + remote: + path: Voile/Source/Audio/DummyAudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetBusVolume + path: Source/Audio/DummyAudioSystem.cs + startLine: 27 + assemblies: + - Voile + namespace: Voile.Audio + example: [] + syntax: + content: public override void SetBusVolume(string busName, float volume) + parameters: + - id: busName + type: System.String + - id: volume + type: System.Single + content.vb: Public Overrides Sub SetBusVolume(busName As String, volume As Single) + overridden: Voile.Audio.AudioSystem.SetBusVolume(System.String,System.Single) + overload: Voile.Audio.DummyAudioSystem.SetBusVolume* + nameWithType.vb: DummyAudioSystem.SetBusVolume(String, Single) + fullName.vb: Voile.Audio.DummyAudioSystem.SetBusVolume(String, Single) + name.vb: SetBusVolume(String, Single) +- uid: Voile.Audio.DummyAudioSystem.Shutdown + commentId: M:Voile.Audio.DummyAudioSystem.Shutdown + id: Shutdown + parent: Voile.Audio.DummyAudioSystem + langs: + - csharp + - vb + name: Shutdown() + nameWithType: DummyAudioSystem.Shutdown() + fullName: Voile.Audio.DummyAudioSystem.Shutdown() + type: Method + source: + remote: + path: Voile/Source/Audio/DummyAudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Shutdown + path: Source/Audio/DummyAudioSystem.cs + startLine: 32 + assemblies: + - Voile + namespace: Voile.Audio + example: [] + syntax: + content: protected override void Shutdown() + content.vb: Protected Overrides Sub Shutdown() + overridden: Voile.Audio.AudioSystem.Shutdown + overload: Voile.Audio.DummyAudioSystem.Shutdown* +- uid: Voile.Audio.DummyAudioSystem.Update + commentId: M:Voile.Audio.DummyAudioSystem.Update + id: Update + parent: Voile.Audio.DummyAudioSystem + langs: + - csharp + - vb + name: Update() + nameWithType: DummyAudioSystem.Update() + fullName: Voile.Audio.DummyAudioSystem.Update() + type: Method + source: + remote: + path: Voile/Source/Audio/DummyAudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Update + path: Source/Audio/DummyAudioSystem.cs + startLine: 37 + assemblies: + - Voile + namespace: Voile.Audio + example: [] + syntax: + content: protected override void Update() + content.vb: Protected Overrides Sub Update() + overridden: Voile.Audio.AudioSystem.Update + overload: Voile.Audio.DummyAudioSystem.Update* +- uid: Voile.Audio.DummyAudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + commentId: M:Voile.Audio.DummyAudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + id: PlaySound(Voile.Sound,System.Single,System.Single,System.String) + parent: Voile.Audio.DummyAudioSystem + langs: + - csharp + - vb + name: PlaySound(Sound, float, float, string) + nameWithType: DummyAudioSystem.PlaySound(Sound, float, float, string) + fullName: Voile.Audio.DummyAudioSystem.PlaySound(Voile.Sound, float, float, string) + type: Method + source: + remote: + path: Voile/Source/Audio/DummyAudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: PlaySound + path: Source/Audio/DummyAudioSystem.cs + startLine: 42 + assemblies: + - Voile + namespace: Voile.Audio + example: [] + syntax: + content: public override void PlaySound(Sound sound, float pitch, float volume, string bus = "Master") + parameters: + - id: sound + type: Voile.Sound + - id: pitch + type: System.Single + - id: volume + type: System.Single + - id: bus + type: System.String + content.vb: Public Overrides Sub PlaySound(sound As Sound, pitch As Single, volume As Single, bus As String = "Master") + overridden: Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + overload: Voile.Audio.DummyAudioSystem.PlaySound* + nameWithType.vb: DummyAudioSystem.PlaySound(Sound, Single, Single, String) + fullName.vb: Voile.Audio.DummyAudioSystem.PlaySound(Voile.Sound, Single, Single, String) + name.vb: PlaySound(Sound, Single, Single, String) +references: +- uid: Voile.Audio + commentId: N:Voile.Audio + href: Voile.html + name: Voile.Audio + nameWithType: Voile.Audio + fullName: Voile.Audio + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Audio + name: Audio + href: Voile.Audio.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Audio + name: Audio + href: Voile.Audio.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.Audio.AudioSystem + commentId: T:Voile.Audio.AudioSystem + parent: Voile.Audio + href: Voile.Audio.AudioSystem.html + name: AudioSystem + nameWithType: AudioSystem + fullName: Voile.Audio.AudioSystem +- uid: Voile.IStartableSystem + commentId: T:Voile.IStartableSystem + parent: Voile + href: Voile.IStartableSystem.html + name: IStartableSystem + nameWithType: IStartableSystem + fullName: Voile.IStartableSystem +- uid: Voile.IUpdatableSystem + commentId: T:Voile.IUpdatableSystem + parent: Voile + href: Voile.IUpdatableSystem.html + name: IUpdatableSystem + nameWithType: IUpdatableSystem + fullName: Voile.IUpdatableSystem +- uid: System.IDisposable + commentId: T:System.IDisposable + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable + name: IDisposable + nameWithType: IDisposable + fullName: System.IDisposable +- uid: Voile.Audio.AudioSystem.Start + commentId: M:Voile.Audio.AudioSystem.Start + parent: Voile.Audio.AudioSystem + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Start + name: Start() + nameWithType: AudioSystem.Start() + fullName: Voile.Audio.AudioSystem.Start() + spec.csharp: + - uid: Voile.Audio.AudioSystem.Start + name: Start + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Start + - name: ( + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.Start + name: Start + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Start + - name: ( + - name: ) +- uid: Voile.Audio.AudioSystem.Update(System.Double) + commentId: M:Voile.Audio.AudioSystem.Update(System.Double) + parent: Voile.Audio.AudioSystem + isExternal: true + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Update_System_Double_ + name: Update(double) + nameWithType: AudioSystem.Update(double) + fullName: Voile.Audio.AudioSystem.Update(double) + nameWithType.vb: AudioSystem.Update(Double) + fullName.vb: Voile.Audio.AudioSystem.Update(Double) + name.vb: Update(Double) + spec.csharp: + - uid: Voile.Audio.AudioSystem.Update(System.Double) + name: Update + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Update_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.Update(System.Double) + name: Update + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Update_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.Audio.AudioSystem.Dispose + commentId: M:Voile.Audio.AudioSystem.Dispose + parent: Voile.Audio.AudioSystem + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Dispose + name: Dispose() + nameWithType: AudioSystem.Dispose() + fullName: Voile.Audio.AudioSystem.Dispose() + spec.csharp: + - uid: Voile.Audio.AudioSystem.Dispose + name: Dispose + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Dispose + - name: ( + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.Dispose + name: Dispose + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Dispose + - name: ( + - name: ) +- uid: Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.String) + commentId: M:Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.String) + parent: Voile.Audio.AudioSystem + isExternal: true + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_PlaySound_Voile_Sound_System_String_ + name: PlaySound(Sound, string) + nameWithType: AudioSystem.PlaySound(Sound, string) + fullName: Voile.Audio.AudioSystem.PlaySound(Voile.Sound, string) + nameWithType.vb: AudioSystem.PlaySound(Sound, String) + fullName.vb: Voile.Audio.AudioSystem.PlaySound(Voile.Sound, String) + name.vb: PlaySound(Sound, String) + spec.csharp: + - uid: Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.String) + name: PlaySound + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_PlaySound_Voile_Sound_System_String_ + - name: ( + - uid: Voile.Sound + name: Sound + href: Voile.Sound.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.String) + name: PlaySound + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_PlaySound_Voile_Sound_System_String_ + - name: ( + - uid: Voile.Sound + name: Sound + href: Voile.Sound.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.Audio.AudioSystem.CreateInstance(Voile.Sound) + commentId: M:Voile.Audio.AudioSystem.CreateInstance(Voile.Sound) + parent: Voile.Audio.AudioSystem + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_CreateInstance_Voile_Sound_ + name: CreateInstance(Sound) + nameWithType: AudioSystem.CreateInstance(Sound) + fullName: Voile.Audio.AudioSystem.CreateInstance(Voile.Sound) + spec.csharp: + - uid: Voile.Audio.AudioSystem.CreateInstance(Voile.Sound) + name: CreateInstance + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_CreateInstance_Voile_Sound_ + - name: ( + - uid: Voile.Sound + name: Sound + href: Voile.Sound.html + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.CreateInstance(Voile.Sound) + name: CreateInstance + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_CreateInstance_Voile_Sound_ + - name: ( + - uid: Voile.Sound + name: Sound + href: Voile.Sound.html + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.Audio.AudioSystem.AddBusEffect``1({T},System.String) + commentId: M:Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + parent: Voile.Audio.AudioSystem + definition: Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_AddBusEffect__1___0_System_String_ + name: AddBusEffect(T, string) + nameWithType: AudioSystem.AddBusEffect(T, string) + fullName: Voile.Audio.AudioSystem.AddBusEffect(T, string) + nameWithType.vb: AudioSystem.AddBusEffect(Of T)(T, String) + fullName.vb: Voile.Audio.AudioSystem.AddBusEffect(Of T)(T, String) + name.vb: AddBusEffect(Of T)(T, String) + spec.csharp: + - uid: Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + name: AddBusEffect + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_AddBusEffect__1___0_System_String_ + - name: < + - name: T + - name: '>' + - name: ( + - name: T + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + name: AddBusEffect + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_AddBusEffect__1___0_System_String_ + - name: ( + - name: Of + - name: " " + - name: T + - name: ) + - name: ( + - name: T + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.Audio.DummyAudioSystem.AddBusEffect* + commentId: Overload:Voile.Audio.DummyAudioSystem.AddBusEffect + href: Voile.Audio.DummyAudioSystem.html#Voile_Audio_DummyAudioSystem_AddBusEffect__1___0_System_String_ + name: AddBusEffect + nameWithType: DummyAudioSystem.AddBusEffect + fullName: Voile.Audio.DummyAudioSystem.AddBusEffect +- uid: '{T}' + commentId: '!:T' + definition: T + name: T + nameWithType: T + fullName: T +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + commentId: M:Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + isExternal: true + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_AddBusEffect__1___0_System_String_ + name: AddBusEffect(T, string) + nameWithType: AudioSystem.AddBusEffect(T, string) + fullName: Voile.Audio.AudioSystem.AddBusEffect(T, string) + nameWithType.vb: AudioSystem.AddBusEffect(Of T)(T, String) + fullName.vb: Voile.Audio.AudioSystem.AddBusEffect(Of T)(T, String) + name.vb: AddBusEffect(Of T)(T, String) + spec.csharp: + - uid: Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + name: AddBusEffect + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_AddBusEffect__1___0_System_String_ + - name: < + - name: T + - name: '>' + - name: ( + - name: T + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + name: AddBusEffect + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_AddBusEffect__1___0_System_String_ + - name: ( + - name: Of + - name: " " + - name: T + - name: ) + - name: ( + - name: T + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: T + name: T + nameWithType: T + fullName: T +- uid: Voile.Audio.AudioSystem.CreateBus(System.String) + commentId: M:Voile.Audio.AudioSystem.CreateBus(System.String) + parent: Voile.Audio.AudioSystem + isExternal: true + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_CreateBus_System_String_ + name: CreateBus(string) + nameWithType: AudioSystem.CreateBus(string) + fullName: Voile.Audio.AudioSystem.CreateBus(string) + nameWithType.vb: AudioSystem.CreateBus(String) + fullName.vb: Voile.Audio.AudioSystem.CreateBus(String) + name.vb: CreateBus(String) + spec.csharp: + - uid: Voile.Audio.AudioSystem.CreateBus(System.String) + name: CreateBus + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_CreateBus_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.CreateBus(System.String) + name: CreateBus + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_CreateBus_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.Audio.DummyAudioSystem.CreateBus* + commentId: Overload:Voile.Audio.DummyAudioSystem.CreateBus + href: Voile.Audio.DummyAudioSystem.html#Voile_Audio_DummyAudioSystem_CreateBus_System_String_ + name: CreateBus + nameWithType: DummyAudioSystem.CreateBus + fullName: Voile.Audio.DummyAudioSystem.CreateBus +- uid: Voile.Audio.AudioSystem.GetBusVolume(System.String) + commentId: M:Voile.Audio.AudioSystem.GetBusVolume(System.String) + parent: Voile.Audio.AudioSystem + isExternal: true + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_GetBusVolume_System_String_ + name: GetBusVolume(string) + nameWithType: AudioSystem.GetBusVolume(string) + fullName: Voile.Audio.AudioSystem.GetBusVolume(string) + nameWithType.vb: AudioSystem.GetBusVolume(String) + fullName.vb: Voile.Audio.AudioSystem.GetBusVolume(String) + name.vb: GetBusVolume(String) + spec.csharp: + - uid: Voile.Audio.AudioSystem.GetBusVolume(System.String) + name: GetBusVolume + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_GetBusVolume_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.GetBusVolume(System.String) + name: GetBusVolume + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_GetBusVolume_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.Audio.DummyAudioSystem.GetBusVolume* + commentId: Overload:Voile.Audio.DummyAudioSystem.GetBusVolume + href: Voile.Audio.DummyAudioSystem.html#Voile_Audio_DummyAudioSystem_GetBusVolume_System_String_ + name: GetBusVolume + nameWithType: DummyAudioSystem.GetBusVolume + fullName: Voile.Audio.DummyAudioSystem.GetBusVolume +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: Voile.Audio.AudioSystem.Initialize + commentId: M:Voile.Audio.AudioSystem.Initialize + parent: Voile.Audio.AudioSystem + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Initialize + name: Initialize() + nameWithType: AudioSystem.Initialize() + fullName: Voile.Audio.AudioSystem.Initialize() + spec.csharp: + - uid: Voile.Audio.AudioSystem.Initialize + name: Initialize + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Initialize + - name: ( + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.Initialize + name: Initialize + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Initialize + - name: ( + - name: ) +- uid: Voile.Audio.DummyAudioSystem.Initialize* + commentId: Overload:Voile.Audio.DummyAudioSystem.Initialize + href: Voile.Audio.DummyAudioSystem.html#Voile_Audio_DummyAudioSystem_Initialize + name: Initialize + nameWithType: DummyAudioSystem.Initialize + fullName: Voile.Audio.DummyAudioSystem.Initialize +- uid: Voile.Audio.AudioSystem.SetBusVolume(System.String,System.Single) + commentId: M:Voile.Audio.AudioSystem.SetBusVolume(System.String,System.Single) + parent: Voile.Audio.AudioSystem + isExternal: true + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_SetBusVolume_System_String_System_Single_ + name: SetBusVolume(string, float) + nameWithType: AudioSystem.SetBusVolume(string, float) + fullName: Voile.Audio.AudioSystem.SetBusVolume(string, float) + nameWithType.vb: AudioSystem.SetBusVolume(String, Single) + fullName.vb: Voile.Audio.AudioSystem.SetBusVolume(String, Single) + name.vb: SetBusVolume(String, Single) + spec.csharp: + - uid: Voile.Audio.AudioSystem.SetBusVolume(System.String,System.Single) + name: SetBusVolume + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_SetBusVolume_System_String_System_Single_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.SetBusVolume(System.String,System.Single) + name: SetBusVolume + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_SetBusVolume_System_String_System_Single_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: Voile.Audio.DummyAudioSystem.SetBusVolume* + commentId: Overload:Voile.Audio.DummyAudioSystem.SetBusVolume + href: Voile.Audio.DummyAudioSystem.html#Voile_Audio_DummyAudioSystem_SetBusVolume_System_String_System_Single_ + name: SetBusVolume + nameWithType: DummyAudioSystem.SetBusVolume + fullName: Voile.Audio.DummyAudioSystem.SetBusVolume +- uid: Voile.Audio.AudioSystem.Shutdown + commentId: M:Voile.Audio.AudioSystem.Shutdown + parent: Voile.Audio.AudioSystem + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Shutdown + name: Shutdown() + nameWithType: AudioSystem.Shutdown() + fullName: Voile.Audio.AudioSystem.Shutdown() + spec.csharp: + - uid: Voile.Audio.AudioSystem.Shutdown + name: Shutdown + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Shutdown + - name: ( + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.Shutdown + name: Shutdown + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Shutdown + - name: ( + - name: ) +- uid: Voile.Audio.DummyAudioSystem.Shutdown* + commentId: Overload:Voile.Audio.DummyAudioSystem.Shutdown + href: Voile.Audio.DummyAudioSystem.html#Voile_Audio_DummyAudioSystem_Shutdown + name: Shutdown + nameWithType: DummyAudioSystem.Shutdown + fullName: Voile.Audio.DummyAudioSystem.Shutdown +- uid: Voile.Audio.AudioSystem.Update + commentId: M:Voile.Audio.AudioSystem.Update + parent: Voile.Audio.AudioSystem + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Update + name: Update() + nameWithType: AudioSystem.Update() + fullName: Voile.Audio.AudioSystem.Update() + spec.csharp: + - uid: Voile.Audio.AudioSystem.Update + name: Update + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Update + - name: ( + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.Update + name: Update + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Update + - name: ( + - name: ) +- uid: Voile.Audio.DummyAudioSystem.Update* + commentId: Overload:Voile.Audio.DummyAudioSystem.Update + href: Voile.Audio.DummyAudioSystem.html#Voile_Audio_DummyAudioSystem_Update + name: Update + nameWithType: DummyAudioSystem.Update + fullName: Voile.Audio.DummyAudioSystem.Update +- uid: Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + commentId: M:Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + parent: Voile.Audio.AudioSystem + isExternal: true + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_PlaySound_Voile_Sound_System_Single_System_Single_System_String_ + name: PlaySound(Sound, float, float, string) + nameWithType: AudioSystem.PlaySound(Sound, float, float, string) + fullName: Voile.Audio.AudioSystem.PlaySound(Voile.Sound, float, float, string) + nameWithType.vb: AudioSystem.PlaySound(Sound, Single, Single, String) + fullName.vb: Voile.Audio.AudioSystem.PlaySound(Voile.Sound, Single, Single, String) + name.vb: PlaySound(Sound, Single, Single, String) + spec.csharp: + - uid: Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + name: PlaySound + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_PlaySound_Voile_Sound_System_Single_System_Single_System_String_ + - name: ( + - uid: Voile.Sound + name: Sound + href: Voile.Sound.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + name: PlaySound + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_PlaySound_Voile_Sound_System_Single_System_Single_System_String_ + - name: ( + - uid: Voile.Sound + name: Sound + href: Voile.Sound.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.Audio.DummyAudioSystem.PlaySound* + commentId: Overload:Voile.Audio.DummyAudioSystem.PlaySound + href: Voile.Audio.DummyAudioSystem.html#Voile_Audio_DummyAudioSystem_PlaySound_Voile_Sound_System_Single_System_Single_System_String_ + name: PlaySound + nameWithType: DummyAudioSystem.PlaySound + fullName: Voile.Audio.DummyAudioSystem.PlaySound +- uid: Voile.Sound + commentId: T:Voile.Sound + parent: Voile + href: Voile.Sound.html + name: Sound + nameWithType: Sound + fullName: Voile.Sound diff --git a/Voile/api/Voile.Audio.FmodAudioSystem.yml b/Voile/api/Voile.Audio.FmodAudioSystem.yml new file mode 100644 index 0000000..6cfb9bb --- /dev/null +++ b/Voile/api/Voile.Audio.FmodAudioSystem.yml @@ -0,0 +1,1157 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Audio.FmodAudioSystem + commentId: T:Voile.Audio.FmodAudioSystem + id: FmodAudioSystem + parent: Voile.Audio + children: + - Voile.Audio.FmodAudioSystem.AddBusEffect``1(``0,System.String) + - Voile.Audio.FmodAudioSystem.CreateBus(System.String) + - Voile.Audio.FmodAudioSystem.GetBusVolume(System.String) + - Voile.Audio.FmodAudioSystem.Initialize + - Voile.Audio.FmodAudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + - Voile.Audio.FmodAudioSystem.SetBusVolume(System.String,System.Single) + - Voile.Audio.FmodAudioSystem.Shutdown + - Voile.Audio.FmodAudioSystem.Update + langs: + - csharp + - vb + name: FmodAudioSystem + nameWithType: FmodAudioSystem + fullName: Voile.Audio.FmodAudioSystem + type: Class + source: + remote: + path: Voile/Source/Audio/FmodAudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: FmodAudioSystem + path: Source/Audio/FmodAudioSystem.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: 'public class FmodAudioSystem : AudioSystem, IStartableSystem, IUpdatableSystem, IDisposable' + content.vb: Public Class FmodAudioSystem Inherits AudioSystem Implements IStartableSystem, IUpdatableSystem, IDisposable + inheritance: + - System.Object + - Voile.Audio.AudioSystem + implements: + - Voile.IStartableSystem + - Voile.IUpdatableSystem + - System.IDisposable + inheritedMembers: + - Voile.Audio.AudioSystem.Start + - Voile.Audio.AudioSystem.Update(System.Double) + - Voile.Audio.AudioSystem.Dispose + - Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.String) + - Voile.Audio.AudioSystem.CreateInstance(Voile.Sound) + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Audio.FmodAudioSystem.Initialize + commentId: M:Voile.Audio.FmodAudioSystem.Initialize + id: Initialize + parent: Voile.Audio.FmodAudioSystem + langs: + - csharp + - vb + name: Initialize() + nameWithType: FmodAudioSystem.Initialize() + fullName: Voile.Audio.FmodAudioSystem.Initialize() + type: Method + source: + remote: + path: Voile/Source/Audio/FmodAudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Initialize + path: Source/Audio/FmodAudioSystem.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile.Audio + example: [] + syntax: + content: protected override void Initialize() + content.vb: Protected Overrides Sub Initialize() + overridden: Voile.Audio.AudioSystem.Initialize + overload: Voile.Audio.FmodAudioSystem.Initialize* +- uid: Voile.Audio.FmodAudioSystem.Update + commentId: M:Voile.Audio.FmodAudioSystem.Update + id: Update + parent: Voile.Audio.FmodAudioSystem + langs: + - csharp + - vb + name: Update() + nameWithType: FmodAudioSystem.Update() + fullName: Voile.Audio.FmodAudioSystem.Update() + type: Method + source: + remote: + path: Voile/Source/Audio/FmodAudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Update + path: Source/Audio/FmodAudioSystem.cs + startLine: 16 + assemblies: + - Voile + namespace: Voile.Audio + example: [] + syntax: + content: protected override void Update() + content.vb: Protected Overrides Sub Update() + overridden: Voile.Audio.AudioSystem.Update + overload: Voile.Audio.FmodAudioSystem.Update* +- uid: Voile.Audio.FmodAudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + commentId: M:Voile.Audio.FmodAudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + id: PlaySound(Voile.Sound,System.Single,System.Single,System.String) + parent: Voile.Audio.FmodAudioSystem + langs: + - csharp + - vb + name: PlaySound(Sound, float, float, string) + nameWithType: FmodAudioSystem.PlaySound(Sound, float, float, string) + fullName: Voile.Audio.FmodAudioSystem.PlaySound(Voile.Sound, float, float, string) + type: Method + source: + remote: + path: Voile/Source/Audio/FmodAudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: PlaySound + path: Source/Audio/FmodAudioSystem.cs + startLine: 18 + assemblies: + - Voile + namespace: Voile.Audio + example: [] + syntax: + content: public override void PlaySound(Sound sound, float pitch, float volume, string bus = "Master") + parameters: + - id: sound + type: Voile.Sound + - id: pitch + type: System.Single + - id: volume + type: System.Single + - id: bus + type: System.String + content.vb: Public Overrides Sub PlaySound(sound As Sound, pitch As Single, volume As Single, bus As String = "Master") + overridden: Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + overload: Voile.Audio.FmodAudioSystem.PlaySound* + nameWithType.vb: FmodAudioSystem.PlaySound(Sound, Single, Single, String) + fullName.vb: Voile.Audio.FmodAudioSystem.PlaySound(Voile.Sound, Single, Single, String) + name.vb: PlaySound(Sound, Single, Single, String) +- uid: Voile.Audio.FmodAudioSystem.CreateBus(System.String) + commentId: M:Voile.Audio.FmodAudioSystem.CreateBus(System.String) + id: CreateBus(System.String) + parent: Voile.Audio.FmodAudioSystem + langs: + - csharp + - vb + name: CreateBus(string) + nameWithType: FmodAudioSystem.CreateBus(string) + fullName: Voile.Audio.FmodAudioSystem.CreateBus(string) + type: Method + source: + remote: + path: Voile/Source/Audio/FmodAudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CreateBus + path: Source/Audio/FmodAudioSystem.cs + startLine: 42 + assemblies: + - Voile + namespace: Voile.Audio + example: [] + syntax: + content: public override void CreateBus(string busName) + parameters: + - id: busName + type: System.String + content.vb: Public Overrides Sub CreateBus(busName As String) + overridden: Voile.Audio.AudioSystem.CreateBus(System.String) + overload: Voile.Audio.FmodAudioSystem.CreateBus* + nameWithType.vb: FmodAudioSystem.CreateBus(String) + fullName.vb: Voile.Audio.FmodAudioSystem.CreateBus(String) + name.vb: CreateBus(String) +- uid: Voile.Audio.FmodAudioSystem.SetBusVolume(System.String,System.Single) + commentId: M:Voile.Audio.FmodAudioSystem.SetBusVolume(System.String,System.Single) + id: SetBusVolume(System.String,System.Single) + parent: Voile.Audio.FmodAudioSystem + langs: + - csharp + - vb + name: SetBusVolume(string, float) + nameWithType: FmodAudioSystem.SetBusVolume(string, float) + fullName: Voile.Audio.FmodAudioSystem.SetBusVolume(string, float) + type: Method + source: + remote: + path: Voile/Source/Audio/FmodAudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetBusVolume + path: Source/Audio/FmodAudioSystem.cs + startLine: 49 + assemblies: + - Voile + namespace: Voile.Audio + example: [] + syntax: + content: public override void SetBusVolume(string busName, float volume) + parameters: + - id: busName + type: System.String + - id: volume + type: System.Single + content.vb: Public Overrides Sub SetBusVolume(busName As String, volume As Single) + overridden: Voile.Audio.AudioSystem.SetBusVolume(System.String,System.Single) + overload: Voile.Audio.FmodAudioSystem.SetBusVolume* + nameWithType.vb: FmodAudioSystem.SetBusVolume(String, Single) + fullName.vb: Voile.Audio.FmodAudioSystem.SetBusVolume(String, Single) + name.vb: SetBusVolume(String, Single) +- uid: Voile.Audio.FmodAudioSystem.GetBusVolume(System.String) + commentId: M:Voile.Audio.FmodAudioSystem.GetBusVolume(System.String) + id: GetBusVolume(System.String) + parent: Voile.Audio.FmodAudioSystem + langs: + - csharp + - vb + name: GetBusVolume(string) + nameWithType: FmodAudioSystem.GetBusVolume(string) + fullName: Voile.Audio.FmodAudioSystem.GetBusVolume(string) + type: Method + source: + remote: + path: Voile/Source/Audio/FmodAudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetBusVolume + path: Source/Audio/FmodAudioSystem.cs + startLine: 55 + assemblies: + - Voile + namespace: Voile.Audio + example: [] + syntax: + content: public override float GetBusVolume(string busName) + parameters: + - id: busName + type: System.String + return: + type: System.Single + content.vb: Public Overrides Function GetBusVolume(busName As String) As Single + overridden: Voile.Audio.AudioSystem.GetBusVolume(System.String) + overload: Voile.Audio.FmodAudioSystem.GetBusVolume* + nameWithType.vb: FmodAudioSystem.GetBusVolume(String) + fullName.vb: Voile.Audio.FmodAudioSystem.GetBusVolume(String) + name.vb: GetBusVolume(String) +- uid: Voile.Audio.FmodAudioSystem.AddBusEffect``1(``0,System.String) + commentId: M:Voile.Audio.FmodAudioSystem.AddBusEffect``1(``0,System.String) + id: AddBusEffect``1(``0,System.String) + parent: Voile.Audio.FmodAudioSystem + langs: + - csharp + - vb + name: AddBusEffect(T, string) + nameWithType: FmodAudioSystem.AddBusEffect(T, string) + fullName: Voile.Audio.FmodAudioSystem.AddBusEffect(T, string) + type: Method + source: + remote: + path: Voile/Source/Audio/FmodAudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AddBusEffect + path: Source/Audio/FmodAudioSystem.cs + startLine: 62 + assemblies: + - Voile + namespace: Voile.Audio + example: [] + syntax: + content: 'public override void AddBusEffect(T effect, string bus = "Master") where T : AudioEffect' + parameters: + - id: effect + type: '{T}' + - id: bus + type: System.String + typeParameters: + - id: T + content.vb: Public Overrides Sub AddBusEffect(Of T As AudioEffect)(effect As T, bus As String = "Master") + overridden: Voile.Audio.AudioSystem.AddBusEffect``1({T},System.String) + overload: Voile.Audio.FmodAudioSystem.AddBusEffect* + nameWithType.vb: FmodAudioSystem.AddBusEffect(Of T)(T, String) + fullName.vb: Voile.Audio.FmodAudioSystem.AddBusEffect(Of T)(T, String) + name.vb: AddBusEffect(Of T)(T, String) +- uid: Voile.Audio.FmodAudioSystem.Shutdown + commentId: M:Voile.Audio.FmodAudioSystem.Shutdown + id: Shutdown + parent: Voile.Audio.FmodAudioSystem + langs: + - csharp + - vb + name: Shutdown() + nameWithType: FmodAudioSystem.Shutdown() + fullName: Voile.Audio.FmodAudioSystem.Shutdown() + type: Method + source: + remote: + path: Voile/Source/Audio/FmodAudioSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Shutdown + path: Source/Audio/FmodAudioSystem.cs + startLine: 80 + assemblies: + - Voile + namespace: Voile.Audio + example: [] + syntax: + content: protected override void Shutdown() + content.vb: Protected Overrides Sub Shutdown() + overridden: Voile.Audio.AudioSystem.Shutdown + overload: Voile.Audio.FmodAudioSystem.Shutdown* +references: +- uid: Voile.Audio + commentId: N:Voile.Audio + href: Voile.html + name: Voile.Audio + nameWithType: Voile.Audio + fullName: Voile.Audio + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Audio + name: Audio + href: Voile.Audio.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Audio + name: Audio + href: Voile.Audio.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.Audio.AudioSystem + commentId: T:Voile.Audio.AudioSystem + parent: Voile.Audio + href: Voile.Audio.AudioSystem.html + name: AudioSystem + nameWithType: AudioSystem + fullName: Voile.Audio.AudioSystem +- uid: Voile.IStartableSystem + commentId: T:Voile.IStartableSystem + parent: Voile + href: Voile.IStartableSystem.html + name: IStartableSystem + nameWithType: IStartableSystem + fullName: Voile.IStartableSystem +- uid: Voile.IUpdatableSystem + commentId: T:Voile.IUpdatableSystem + parent: Voile + href: Voile.IUpdatableSystem.html + name: IUpdatableSystem + nameWithType: IUpdatableSystem + fullName: Voile.IUpdatableSystem +- uid: System.IDisposable + commentId: T:System.IDisposable + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable + name: IDisposable + nameWithType: IDisposable + fullName: System.IDisposable +- uid: Voile.Audio.AudioSystem.Start + commentId: M:Voile.Audio.AudioSystem.Start + parent: Voile.Audio.AudioSystem + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Start + name: Start() + nameWithType: AudioSystem.Start() + fullName: Voile.Audio.AudioSystem.Start() + spec.csharp: + - uid: Voile.Audio.AudioSystem.Start + name: Start + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Start + - name: ( + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.Start + name: Start + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Start + - name: ( + - name: ) +- uid: Voile.Audio.AudioSystem.Update(System.Double) + commentId: M:Voile.Audio.AudioSystem.Update(System.Double) + parent: Voile.Audio.AudioSystem + isExternal: true + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Update_System_Double_ + name: Update(double) + nameWithType: AudioSystem.Update(double) + fullName: Voile.Audio.AudioSystem.Update(double) + nameWithType.vb: AudioSystem.Update(Double) + fullName.vb: Voile.Audio.AudioSystem.Update(Double) + name.vb: Update(Double) + spec.csharp: + - uid: Voile.Audio.AudioSystem.Update(System.Double) + name: Update + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Update_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.Update(System.Double) + name: Update + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Update_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.Audio.AudioSystem.Dispose + commentId: M:Voile.Audio.AudioSystem.Dispose + parent: Voile.Audio.AudioSystem + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Dispose + name: Dispose() + nameWithType: AudioSystem.Dispose() + fullName: Voile.Audio.AudioSystem.Dispose() + spec.csharp: + - uid: Voile.Audio.AudioSystem.Dispose + name: Dispose + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Dispose + - name: ( + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.Dispose + name: Dispose + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Dispose + - name: ( + - name: ) +- uid: Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.String) + commentId: M:Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.String) + parent: Voile.Audio.AudioSystem + isExternal: true + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_PlaySound_Voile_Sound_System_String_ + name: PlaySound(Sound, string) + nameWithType: AudioSystem.PlaySound(Sound, string) + fullName: Voile.Audio.AudioSystem.PlaySound(Voile.Sound, string) + nameWithType.vb: AudioSystem.PlaySound(Sound, String) + fullName.vb: Voile.Audio.AudioSystem.PlaySound(Voile.Sound, String) + name.vb: PlaySound(Sound, String) + spec.csharp: + - uid: Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.String) + name: PlaySound + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_PlaySound_Voile_Sound_System_String_ + - name: ( + - uid: Voile.Sound + name: Sound + href: Voile.Sound.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.String) + name: PlaySound + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_PlaySound_Voile_Sound_System_String_ + - name: ( + - uid: Voile.Sound + name: Sound + href: Voile.Sound.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.Audio.AudioSystem.CreateInstance(Voile.Sound) + commentId: M:Voile.Audio.AudioSystem.CreateInstance(Voile.Sound) + parent: Voile.Audio.AudioSystem + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_CreateInstance_Voile_Sound_ + name: CreateInstance(Sound) + nameWithType: AudioSystem.CreateInstance(Sound) + fullName: Voile.Audio.AudioSystem.CreateInstance(Voile.Sound) + spec.csharp: + - uid: Voile.Audio.AudioSystem.CreateInstance(Voile.Sound) + name: CreateInstance + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_CreateInstance_Voile_Sound_ + - name: ( + - uid: Voile.Sound + name: Sound + href: Voile.Sound.html + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.CreateInstance(Voile.Sound) + name: CreateInstance + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_CreateInstance_Voile_Sound_ + - name: ( + - uid: Voile.Sound + name: Sound + href: Voile.Sound.html + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.Audio.AudioSystem.Initialize + commentId: M:Voile.Audio.AudioSystem.Initialize + parent: Voile.Audio.AudioSystem + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Initialize + name: Initialize() + nameWithType: AudioSystem.Initialize() + fullName: Voile.Audio.AudioSystem.Initialize() + spec.csharp: + - uid: Voile.Audio.AudioSystem.Initialize + name: Initialize + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Initialize + - name: ( + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.Initialize + name: Initialize + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Initialize + - name: ( + - name: ) +- uid: Voile.Audio.FmodAudioSystem.Initialize* + commentId: Overload:Voile.Audio.FmodAudioSystem.Initialize + href: Voile.Audio.FmodAudioSystem.html#Voile_Audio_FmodAudioSystem_Initialize + name: Initialize + nameWithType: FmodAudioSystem.Initialize + fullName: Voile.Audio.FmodAudioSystem.Initialize +- uid: Voile.Audio.AudioSystem.Update + commentId: M:Voile.Audio.AudioSystem.Update + parent: Voile.Audio.AudioSystem + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Update + name: Update() + nameWithType: AudioSystem.Update() + fullName: Voile.Audio.AudioSystem.Update() + spec.csharp: + - uid: Voile.Audio.AudioSystem.Update + name: Update + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Update + - name: ( + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.Update + name: Update + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Update + - name: ( + - name: ) +- uid: Voile.Audio.FmodAudioSystem.Update* + commentId: Overload:Voile.Audio.FmodAudioSystem.Update + href: Voile.Audio.FmodAudioSystem.html#Voile_Audio_FmodAudioSystem_Update + name: Update + nameWithType: FmodAudioSystem.Update + fullName: Voile.Audio.FmodAudioSystem.Update +- uid: Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + commentId: M:Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + parent: Voile.Audio.AudioSystem + isExternal: true + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_PlaySound_Voile_Sound_System_Single_System_Single_System_String_ + name: PlaySound(Sound, float, float, string) + nameWithType: AudioSystem.PlaySound(Sound, float, float, string) + fullName: Voile.Audio.AudioSystem.PlaySound(Voile.Sound, float, float, string) + nameWithType.vb: AudioSystem.PlaySound(Sound, Single, Single, String) + fullName.vb: Voile.Audio.AudioSystem.PlaySound(Voile.Sound, Single, Single, String) + name.vb: PlaySound(Sound, Single, Single, String) + spec.csharp: + - uid: Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + name: PlaySound + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_PlaySound_Voile_Sound_System_Single_System_Single_System_String_ + - name: ( + - uid: Voile.Sound + name: Sound + href: Voile.Sound.html + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.PlaySound(Voile.Sound,System.Single,System.Single,System.String) + name: PlaySound + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_PlaySound_Voile_Sound_System_Single_System_Single_System_String_ + - name: ( + - uid: Voile.Sound + name: Sound + href: Voile.Sound.html + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.Audio.FmodAudioSystem.PlaySound* + commentId: Overload:Voile.Audio.FmodAudioSystem.PlaySound + href: Voile.Audio.FmodAudioSystem.html#Voile_Audio_FmodAudioSystem_PlaySound_Voile_Sound_System_Single_System_Single_System_String_ + name: PlaySound + nameWithType: FmodAudioSystem.PlaySound + fullName: Voile.Audio.FmodAudioSystem.PlaySound +- uid: Voile.Sound + commentId: T:Voile.Sound + parent: Voile + href: Voile.Sound.html + name: Sound + nameWithType: Sound + fullName: Voile.Sound +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.Audio.AudioSystem.CreateBus(System.String) + commentId: M:Voile.Audio.AudioSystem.CreateBus(System.String) + parent: Voile.Audio.AudioSystem + isExternal: true + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_CreateBus_System_String_ + name: CreateBus(string) + nameWithType: AudioSystem.CreateBus(string) + fullName: Voile.Audio.AudioSystem.CreateBus(string) + nameWithType.vb: AudioSystem.CreateBus(String) + fullName.vb: Voile.Audio.AudioSystem.CreateBus(String) + name.vb: CreateBus(String) + spec.csharp: + - uid: Voile.Audio.AudioSystem.CreateBus(System.String) + name: CreateBus + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_CreateBus_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.CreateBus(System.String) + name: CreateBus + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_CreateBus_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.Audio.FmodAudioSystem.CreateBus* + commentId: Overload:Voile.Audio.FmodAudioSystem.CreateBus + href: Voile.Audio.FmodAudioSystem.html#Voile_Audio_FmodAudioSystem_CreateBus_System_String_ + name: CreateBus + nameWithType: FmodAudioSystem.CreateBus + fullName: Voile.Audio.FmodAudioSystem.CreateBus +- uid: Voile.Audio.AudioSystem.SetBusVolume(System.String,System.Single) + commentId: M:Voile.Audio.AudioSystem.SetBusVolume(System.String,System.Single) + parent: Voile.Audio.AudioSystem + isExternal: true + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_SetBusVolume_System_String_System_Single_ + name: SetBusVolume(string, float) + nameWithType: AudioSystem.SetBusVolume(string, float) + fullName: Voile.Audio.AudioSystem.SetBusVolume(string, float) + nameWithType.vb: AudioSystem.SetBusVolume(String, Single) + fullName.vb: Voile.Audio.AudioSystem.SetBusVolume(String, Single) + name.vb: SetBusVolume(String, Single) + spec.csharp: + - uid: Voile.Audio.AudioSystem.SetBusVolume(System.String,System.Single) + name: SetBusVolume + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_SetBusVolume_System_String_System_Single_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.SetBusVolume(System.String,System.Single) + name: SetBusVolume + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_SetBusVolume_System_String_System_Single_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: Voile.Audio.FmodAudioSystem.SetBusVolume* + commentId: Overload:Voile.Audio.FmodAudioSystem.SetBusVolume + href: Voile.Audio.FmodAudioSystem.html#Voile_Audio_FmodAudioSystem_SetBusVolume_System_String_System_Single_ + name: SetBusVolume + nameWithType: FmodAudioSystem.SetBusVolume + fullName: Voile.Audio.FmodAudioSystem.SetBusVolume +- uid: Voile.Audio.AudioSystem.GetBusVolume(System.String) + commentId: M:Voile.Audio.AudioSystem.GetBusVolume(System.String) + parent: Voile.Audio.AudioSystem + isExternal: true + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_GetBusVolume_System_String_ + name: GetBusVolume(string) + nameWithType: AudioSystem.GetBusVolume(string) + fullName: Voile.Audio.AudioSystem.GetBusVolume(string) + nameWithType.vb: AudioSystem.GetBusVolume(String) + fullName.vb: Voile.Audio.AudioSystem.GetBusVolume(String) + name.vb: GetBusVolume(String) + spec.csharp: + - uid: Voile.Audio.AudioSystem.GetBusVolume(System.String) + name: GetBusVolume + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_GetBusVolume_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.GetBusVolume(System.String) + name: GetBusVolume + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_GetBusVolume_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.Audio.FmodAudioSystem.GetBusVolume* + commentId: Overload:Voile.Audio.FmodAudioSystem.GetBusVolume + href: Voile.Audio.FmodAudioSystem.html#Voile_Audio_FmodAudioSystem_GetBusVolume_System_String_ + name: GetBusVolume + nameWithType: FmodAudioSystem.GetBusVolume + fullName: Voile.Audio.FmodAudioSystem.GetBusVolume +- uid: Voile.Audio.AudioSystem.AddBusEffect``1({T},System.String) + commentId: M:Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + parent: Voile.Audio.AudioSystem + definition: Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_AddBusEffect__1___0_System_String_ + name: AddBusEffect(T, string) + nameWithType: AudioSystem.AddBusEffect(T, string) + fullName: Voile.Audio.AudioSystem.AddBusEffect(T, string) + nameWithType.vb: AudioSystem.AddBusEffect(Of T)(T, String) + fullName.vb: Voile.Audio.AudioSystem.AddBusEffect(Of T)(T, String) + name.vb: AddBusEffect(Of T)(T, String) + spec.csharp: + - uid: Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + name: AddBusEffect + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_AddBusEffect__1___0_System_String_ + - name: < + - name: T + - name: '>' + - name: ( + - name: T + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + name: AddBusEffect + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_AddBusEffect__1___0_System_String_ + - name: ( + - name: Of + - name: " " + - name: T + - name: ) + - name: ( + - name: T + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.Audio.FmodAudioSystem.AddBusEffect* + commentId: Overload:Voile.Audio.FmodAudioSystem.AddBusEffect + href: Voile.Audio.FmodAudioSystem.html#Voile_Audio_FmodAudioSystem_AddBusEffect__1___0_System_String_ + name: AddBusEffect + nameWithType: FmodAudioSystem.AddBusEffect + fullName: Voile.Audio.FmodAudioSystem.AddBusEffect +- uid: '{T}' + commentId: '!:T' + definition: T + name: T + nameWithType: T + fullName: T +- uid: Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + commentId: M:Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + isExternal: true + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_AddBusEffect__1___0_System_String_ + name: AddBusEffect(T, string) + nameWithType: AudioSystem.AddBusEffect(T, string) + fullName: Voile.Audio.AudioSystem.AddBusEffect(T, string) + nameWithType.vb: AudioSystem.AddBusEffect(Of T)(T, String) + fullName.vb: Voile.Audio.AudioSystem.AddBusEffect(Of T)(T, String) + name.vb: AddBusEffect(Of T)(T, String) + spec.csharp: + - uid: Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + name: AddBusEffect + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_AddBusEffect__1___0_System_String_ + - name: < + - name: T + - name: '>' + - name: ( + - name: T + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.AddBusEffect``1(``0,System.String) + name: AddBusEffect + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_AddBusEffect__1___0_System_String_ + - name: ( + - name: Of + - name: " " + - name: T + - name: ) + - name: ( + - name: T + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: T + name: T + nameWithType: T + fullName: T +- uid: Voile.Audio.AudioSystem.Shutdown + commentId: M:Voile.Audio.AudioSystem.Shutdown + parent: Voile.Audio.AudioSystem + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Shutdown + name: Shutdown() + nameWithType: AudioSystem.Shutdown() + fullName: Voile.Audio.AudioSystem.Shutdown() + spec.csharp: + - uid: Voile.Audio.AudioSystem.Shutdown + name: Shutdown + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Shutdown + - name: ( + - name: ) + spec.vb: + - uid: Voile.Audio.AudioSystem.Shutdown + name: Shutdown + href: Voile.Audio.AudioSystem.html#Voile_Audio_AudioSystem_Shutdown + - name: ( + - name: ) +- uid: Voile.Audio.FmodAudioSystem.Shutdown* + commentId: Overload:Voile.Audio.FmodAudioSystem.Shutdown + href: Voile.Audio.FmodAudioSystem.html#Voile_Audio_FmodAudioSystem_Shutdown + name: Shutdown + nameWithType: FmodAudioSystem.Shutdown + fullName: Voile.Audio.FmodAudioSystem.Shutdown diff --git a/Voile/api/Voile.Audio.SoundInstance.yml b/Voile/api/Voile.Audio.SoundInstance.yml new file mode 100644 index 0000000..8e2c5cb --- /dev/null +++ b/Voile/api/Voile.Audio.SoundInstance.yml @@ -0,0 +1,587 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Audio.SoundInstance + commentId: T:Voile.Audio.SoundInstance + id: SoundInstance + parent: Voile.Audio + children: + - Voile.Audio.SoundInstance.#ctor(Voile.Audio.AudioSystem,Voile.Sound) + - Voile.Audio.SoundInstance.OnBus(System.String) + - Voile.Audio.SoundInstance.PitchVariation(System.Single,System.Single) + - Voile.Audio.SoundInstance.Play + - Voile.Audio.SoundInstance.Sound + - Voile.Audio.SoundInstance.VolumeVariation(System.Single,System.Single) + langs: + - csharp + - vb + name: SoundInstance + nameWithType: SoundInstance + fullName: Voile.Audio.SoundInstance + type: Class + source: + remote: + path: Voile/Source/Audio/SoundInstance.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SoundInstance + path: Source/Audio/SoundInstance.cs + startLine: 2 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: public class SoundInstance + content.vb: Public Class SoundInstance + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Audio.SoundInstance.Sound + commentId: P:Voile.Audio.SoundInstance.Sound + id: Sound + parent: Voile.Audio.SoundInstance + langs: + - csharp + - vb + name: Sound + nameWithType: SoundInstance.Sound + fullName: Voile.Audio.SoundInstance.Sound + type: Property + source: + remote: + path: Voile/Source/Audio/SoundInstance.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Sound + path: Source/Audio/SoundInstance.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: protected virtual Sound Sound { get; } + parameters: [] + return: + type: Voile.Sound + content.vb: Protected Overridable ReadOnly Property Sound As Sound + overload: Voile.Audio.SoundInstance.Sound* +- uid: Voile.Audio.SoundInstance.#ctor(Voile.Audio.AudioSystem,Voile.Sound) + commentId: M:Voile.Audio.SoundInstance.#ctor(Voile.Audio.AudioSystem,Voile.Sound) + id: '#ctor(Voile.Audio.AudioSystem,Voile.Sound)' + parent: Voile.Audio.SoundInstance + langs: + - csharp + - vb + name: SoundInstance(AudioSystem, Sound) + nameWithType: SoundInstance.SoundInstance(AudioSystem, Sound) + fullName: Voile.Audio.SoundInstance.SoundInstance(Voile.Audio.AudioSystem, Voile.Sound) + type: Constructor + source: + remote: + path: Voile/Source/Audio/SoundInstance.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/Audio/SoundInstance.cs + startLine: 5 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: public SoundInstance(AudioSystem backend, Sound sound) + parameters: + - id: backend + type: Voile.Audio.AudioSystem + - id: sound + type: Voile.Sound + content.vb: Public Sub New(backend As AudioSystem, sound As Sound) + overload: Voile.Audio.SoundInstance.#ctor* + nameWithType.vb: SoundInstance.New(AudioSystem, Sound) + fullName.vb: Voile.Audio.SoundInstance.New(Voile.Audio.AudioSystem, Voile.Sound) + name.vb: New(AudioSystem, Sound) +- uid: Voile.Audio.SoundInstance.PitchVariation(System.Single,System.Single) + commentId: M:Voile.Audio.SoundInstance.PitchVariation(System.Single,System.Single) + id: PitchVariation(System.Single,System.Single) + parent: Voile.Audio.SoundInstance + langs: + - csharp + - vb + name: PitchVariation(float, float) + nameWithType: SoundInstance.PitchVariation(float, float) + fullName: Voile.Audio.SoundInstance.PitchVariation(float, float) + type: Method + source: + remote: + path: Voile/Source/Audio/SoundInstance.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: PitchVariation + path: Source/Audio/SoundInstance.cs + startLine: 11 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: public SoundInstance PitchVariation(float min, float max) + parameters: + - id: min + type: System.Single + - id: max + type: System.Single + return: + type: Voile.Audio.SoundInstance + content.vb: Public Function PitchVariation(min As Single, max As Single) As SoundInstance + overload: Voile.Audio.SoundInstance.PitchVariation* + nameWithType.vb: SoundInstance.PitchVariation(Single, Single) + fullName.vb: Voile.Audio.SoundInstance.PitchVariation(Single, Single) + name.vb: PitchVariation(Single, Single) +- uid: Voile.Audio.SoundInstance.VolumeVariation(System.Single,System.Single) + commentId: M:Voile.Audio.SoundInstance.VolumeVariation(System.Single,System.Single) + id: VolumeVariation(System.Single,System.Single) + parent: Voile.Audio.SoundInstance + langs: + - csharp + - vb + name: VolumeVariation(float, float) + nameWithType: SoundInstance.VolumeVariation(float, float) + fullName: Voile.Audio.SoundInstance.VolumeVariation(float, float) + type: Method + source: + remote: + path: Voile/Source/Audio/SoundInstance.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: VolumeVariation + path: Source/Audio/SoundInstance.cs + startLine: 18 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: public SoundInstance VolumeVariation(float min, float max) + parameters: + - id: min + type: System.Single + - id: max + type: System.Single + return: + type: Voile.Audio.SoundInstance + content.vb: Public Function VolumeVariation(min As Single, max As Single) As SoundInstance + overload: Voile.Audio.SoundInstance.VolumeVariation* + nameWithType.vb: SoundInstance.VolumeVariation(Single, Single) + fullName.vb: Voile.Audio.SoundInstance.VolumeVariation(Single, Single) + name.vb: VolumeVariation(Single, Single) +- uid: Voile.Audio.SoundInstance.OnBus(System.String) + commentId: M:Voile.Audio.SoundInstance.OnBus(System.String) + id: OnBus(System.String) + parent: Voile.Audio.SoundInstance + langs: + - csharp + - vb + name: OnBus(string) + nameWithType: SoundInstance.OnBus(string) + fullName: Voile.Audio.SoundInstance.OnBus(string) + type: Method + source: + remote: + path: Voile/Source/Audio/SoundInstance.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnBus + path: Source/Audio/SoundInstance.cs + startLine: 25 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: public SoundInstance OnBus(string bus = "Master") + parameters: + - id: bus + type: System.String + return: + type: Voile.Audio.SoundInstance + content.vb: Public Function OnBus(bus As String = "Master") As SoundInstance + overload: Voile.Audio.SoundInstance.OnBus* + nameWithType.vb: SoundInstance.OnBus(String) + fullName.vb: Voile.Audio.SoundInstance.OnBus(String) + name.vb: OnBus(String) +- uid: Voile.Audio.SoundInstance.Play + commentId: M:Voile.Audio.SoundInstance.Play + id: Play + parent: Voile.Audio.SoundInstance + langs: + - csharp + - vb + name: Play() + nameWithType: SoundInstance.Play() + fullName: Voile.Audio.SoundInstance.Play() + type: Method + source: + remote: + path: Voile/Source/Audio/SoundInstance.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Play + path: Source/Audio/SoundInstance.cs + startLine: 31 + assemblies: + - Voile + namespace: Voile.Audio + syntax: + content: public void Play() + content.vb: Public Sub Play() + overload: Voile.Audio.SoundInstance.Play* +references: +- uid: Voile.Audio + commentId: N:Voile.Audio + href: Voile.html + name: Voile.Audio + nameWithType: Voile.Audio + fullName: Voile.Audio + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Audio + name: Audio + href: Voile.Audio.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Audio + name: Audio + href: Voile.Audio.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Audio.SoundInstance.Sound* + commentId: Overload:Voile.Audio.SoundInstance.Sound + href: Voile.Audio.SoundInstance.html#Voile_Audio_SoundInstance_Sound + name: Sound + nameWithType: SoundInstance.Sound + fullName: Voile.Audio.SoundInstance.Sound +- uid: Voile.Sound + commentId: T:Voile.Sound + parent: Voile + href: Voile.Sound.html + name: Sound + nameWithType: Sound + fullName: Voile.Sound +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.Audio.SoundInstance.#ctor* + commentId: Overload:Voile.Audio.SoundInstance.#ctor + href: Voile.Audio.SoundInstance.html#Voile_Audio_SoundInstance__ctor_Voile_Audio_AudioSystem_Voile_Sound_ + name: SoundInstance + nameWithType: SoundInstance.SoundInstance + fullName: Voile.Audio.SoundInstance.SoundInstance + nameWithType.vb: SoundInstance.New + fullName.vb: Voile.Audio.SoundInstance.New + name.vb: New +- uid: Voile.Audio.AudioSystem + commentId: T:Voile.Audio.AudioSystem + parent: Voile.Audio + href: Voile.Audio.AudioSystem.html + name: AudioSystem + nameWithType: AudioSystem + fullName: Voile.Audio.AudioSystem +- uid: Voile.Audio.SoundInstance.PitchVariation* + commentId: Overload:Voile.Audio.SoundInstance.PitchVariation + href: Voile.Audio.SoundInstance.html#Voile_Audio_SoundInstance_PitchVariation_System_Single_System_Single_ + name: PitchVariation + nameWithType: SoundInstance.PitchVariation + fullName: Voile.Audio.SoundInstance.PitchVariation +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: Voile.Audio.SoundInstance + commentId: T:Voile.Audio.SoundInstance + parent: Voile.Audio + href: Voile.Audio.SoundInstance.html + name: SoundInstance + nameWithType: SoundInstance + fullName: Voile.Audio.SoundInstance +- uid: Voile.Audio.SoundInstance.VolumeVariation* + commentId: Overload:Voile.Audio.SoundInstance.VolumeVariation + href: Voile.Audio.SoundInstance.html#Voile_Audio_SoundInstance_VolumeVariation_System_Single_System_Single_ + name: VolumeVariation + nameWithType: SoundInstance.VolumeVariation + fullName: Voile.Audio.SoundInstance.VolumeVariation +- uid: Voile.Audio.SoundInstance.OnBus* + commentId: Overload:Voile.Audio.SoundInstance.OnBus + href: Voile.Audio.SoundInstance.html#Voile_Audio_SoundInstance_OnBus_System_String_ + name: OnBus + nameWithType: SoundInstance.OnBus + fullName: Voile.Audio.SoundInstance.OnBus +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.Audio.SoundInstance.Play* + commentId: Overload:Voile.Audio.SoundInstance.Play + href: Voile.Audio.SoundInstance.html#Voile_Audio_SoundInstance_Play + name: Play + nameWithType: SoundInstance.Play + fullName: Voile.Audio.SoundInstance.Play diff --git a/Voile/api/Voile.Audio.yml b/Voile/api/Voile.Audio.yml new file mode 100644 index 0000000..8e9724a --- /dev/null +++ b/Voile/api/Voile.Audio.yml @@ -0,0 +1,68 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Audio + commentId: N:Voile.Audio + id: Voile.Audio + children: + - Voile.Audio.AudioSystem + - Voile.Audio.DummyAudioSystem + - Voile.Audio.FmodAudioSystem + - Voile.Audio.SoundInstance + langs: + - csharp + - vb + name: Voile.Audio + nameWithType: Voile.Audio + fullName: Voile.Audio + type: Namespace + assemblies: + - Voile +references: +- uid: Voile.Audio.AudioSystem + commentId: T:Voile.Audio.AudioSystem + parent: Voile.Audio + href: Voile.Audio.AudioSystem.html + name: AudioSystem + nameWithType: AudioSystem + fullName: Voile.Audio.AudioSystem +- uid: Voile.Audio.DummyAudioSystem + commentId: T:Voile.Audio.DummyAudioSystem + href: Voile.Audio.DummyAudioSystem.html + name: DummyAudioSystem + nameWithType: DummyAudioSystem + fullName: Voile.Audio.DummyAudioSystem +- uid: Voile.Audio.FmodAudioSystem + commentId: T:Voile.Audio.FmodAudioSystem + href: Voile.Audio.FmodAudioSystem.html + name: FmodAudioSystem + nameWithType: FmodAudioSystem + fullName: Voile.Audio.FmodAudioSystem +- uid: Voile.Audio.SoundInstance + commentId: T:Voile.Audio.SoundInstance + parent: Voile.Audio + href: Voile.Audio.SoundInstance.html + name: SoundInstance + nameWithType: SoundInstance + fullName: Voile.Audio.SoundInstance +- uid: Voile.Audio + commentId: N:Voile.Audio + href: Voile.html + name: Voile.Audio + nameWithType: Voile.Audio + fullName: Voile.Audio + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Audio + name: Audio + href: Voile.Audio.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Audio + name: Audio + href: Voile.Audio.html diff --git a/Voile/api/Voile.AudioBus.yml b/Voile/api/Voile.AudioBus.yml new file mode 100644 index 0000000..0086017 --- /dev/null +++ b/Voile/api/Voile.AudioBus.yml @@ -0,0 +1,282 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.AudioBus + commentId: T:Voile.AudioBus + id: AudioBus + parent: Voile + children: [] + langs: + - csharp + - vb + name: AudioBus + nameWithType: AudioBus + fullName: Voile.AudioBus + type: Class + source: + remote: + path: Voile/Source/Audio/AudioBus.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AudioBus + path: Source/Audio/AudioBus.cs + startLine: 2 + assemblies: + - Voile + namespace: Voile + syntax: + content: public class AudioBus + content.vb: Public Class AudioBus + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System diff --git a/Voile/api/Voile.AudioEffect.yml b/Voile/api/Voile.AudioEffect.yml new file mode 100644 index 0000000..66d3cac --- /dev/null +++ b/Voile/api/Voile.AudioEffect.yml @@ -0,0 +1,284 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.AudioEffect + commentId: T:Voile.AudioEffect + id: AudioEffect + parent: Voile + children: [] + langs: + - csharp + - vb + name: AudioEffect + nameWithType: AudioEffect + fullName: Voile.AudioEffect + type: Class + source: + remote: + path: Voile/Source/Audio/AudioEffect.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AudioEffect + path: Source/Audio/AudioEffect.cs + startLine: 2 + assemblies: + - Voile + namespace: Voile + syntax: + content: public class AudioEffect + content.vb: Public Class AudioEffect + inheritance: + - System.Object + derivedClasses: + - Voile.AudioEffectReverb + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System diff --git a/Voile/api/Voile.AudioEffectReverb.yml b/Voile/api/Voile.AudioEffectReverb.yml new file mode 100644 index 0000000..a7cd33d --- /dev/null +++ b/Voile/api/Voile.AudioEffectReverb.yml @@ -0,0 +1,290 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.AudioEffectReverb + commentId: T:Voile.AudioEffectReverb + id: AudioEffectReverb + parent: Voile + children: [] + langs: + - csharp + - vb + name: AudioEffectReverb + nameWithType: AudioEffectReverb + fullName: Voile.AudioEffectReverb + type: Class + source: + remote: + path: Voile/Source/Audio/AudioEffect.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AudioEffectReverb + path: Source/Audio/AudioEffect.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile + syntax: + content: 'public class AudioEffectReverb : AudioEffect' + content.vb: Public Class AudioEffectReverb Inherits AudioEffect + inheritance: + - System.Object + - Voile.AudioEffect + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.AudioEffect + commentId: T:Voile.AudioEffect + parent: Voile + href: Voile.AudioEffect.html + name: AudioEffect + nameWithType: AudioEffect + fullName: Voile.AudioEffect +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System diff --git a/Voile/api/Voile.Color.yml b/Voile/api/Voile.Color.yml new file mode 100644 index 0000000..11025ee --- /dev/null +++ b/Voile/api/Voile.Color.yml @@ -0,0 +1,1544 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Color + commentId: T:Voile.Color + id: Color + parent: Voile + children: + - Voile.Color.#ctor(System.Byte,System.Byte,System.Byte,System.Byte) + - Voile.Color.#ctor(System.Int32) + - Voile.Color.#ctor(System.Single,System.Single,System.Single,System.Single) + - Voile.Color.A + - Voile.Color.AliceBlue + - Voile.Color.AntiqueWhite + - Voile.Color.Aqua + - Voile.Color.Aquamarine + - Voile.Color.Argb + - Voile.Color.Azure + - Voile.Color.B + - Voile.Color.Beige + - Voile.Color.Bisque + - Voile.Color.Black + - Voile.Color.BlanchedAlmond + - Voile.Color.Blue + - Voile.Color.BlueViolet + - Voile.Color.Brown + - Voile.Color.BurlyWood + - Voile.Color.CadetBlue + - Voile.Color.Chartreuse + - Voile.Color.Chocolate + - Voile.Color.Coral + - Voile.Color.CornflowerBlue + - Voile.Color.Cornsilk + - Voile.Color.Crimson + - Voile.Color.Cyan + - Voile.Color.DarkBlue + - Voile.Color.DarkCyan + - Voile.Color.Darkened(System.Single) + - Voile.Color.G + - Voile.Color.Green + - Voile.Color.Lightened(System.Single) + - Voile.Color.R + - Voile.Color.Red + - Voile.Color.ToSystemColor + - Voile.Color.White + langs: + - csharp + - vb + name: Color + nameWithType: Color + fullName: Voile.Color + type: Struct + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Color + path: Source/Utils/Color.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile + summary: A record struct representing a color. + example: [] + syntax: + content: 'public record struct Color : IEquatable' + content.vb: Public Structure Color Implements IEquatable(Of Color) + implements: + - System.IEquatable{Voile.Color} + inheritedMembers: + - System.ValueType.Equals(System.Object) + - System.ValueType.GetHashCode + - System.ValueType.ToString + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetType + - System.Object.ReferenceEquals(System.Object,System.Object) +- uid: Voile.Color.AliceBlue + commentId: F:Voile.Color.AliceBlue + id: AliceBlue + parent: Voile.Color + langs: + - csharp + - vb + name: AliceBlue + nameWithType: Color.AliceBlue + fullName: Voile.Color.AliceBlue + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AliceBlue + path: Source/Utils/Color.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color AliceBlue + return: + type: Voile.Color + content.vb: Public Shared AliceBlue As Color +- uid: Voile.Color.AntiqueWhite + commentId: F:Voile.Color.AntiqueWhite + id: AntiqueWhite + parent: Voile.Color + langs: + - csharp + - vb + name: AntiqueWhite + nameWithType: Color.AntiqueWhite + fullName: Voile.Color.AntiqueWhite + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AntiqueWhite + path: Source/Utils/Color.cs + startLine: 10 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color AntiqueWhite + return: + type: Voile.Color + content.vb: Public Shared AntiqueWhite As Color +- uid: Voile.Color.Aqua + commentId: F:Voile.Color.Aqua + id: Aqua + parent: Voile.Color + langs: + - csharp + - vb + name: Aqua + nameWithType: Color.Aqua + fullName: Voile.Color.Aqua + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Aqua + path: Source/Utils/Color.cs + startLine: 11 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color Aqua + return: + type: Voile.Color + content.vb: Public Shared Aqua As Color +- uid: Voile.Color.Aquamarine + commentId: F:Voile.Color.Aquamarine + id: Aquamarine + parent: Voile.Color + langs: + - csharp + - vb + name: Aquamarine + nameWithType: Color.Aquamarine + fullName: Voile.Color.Aquamarine + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Aquamarine + path: Source/Utils/Color.cs + startLine: 12 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color Aquamarine + return: + type: Voile.Color + content.vb: Public Shared Aquamarine As Color +- uid: Voile.Color.Azure + commentId: F:Voile.Color.Azure + id: Azure + parent: Voile.Color + langs: + - csharp + - vb + name: Azure + nameWithType: Color.Azure + fullName: Voile.Color.Azure + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Azure + path: Source/Utils/Color.cs + startLine: 13 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color Azure + return: + type: Voile.Color + content.vb: Public Shared Azure As Color +- uid: Voile.Color.Beige + commentId: F:Voile.Color.Beige + id: Beige + parent: Voile.Color + langs: + - csharp + - vb + name: Beige + nameWithType: Color.Beige + fullName: Voile.Color.Beige + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Beige + path: Source/Utils/Color.cs + startLine: 14 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color Beige + return: + type: Voile.Color + content.vb: Public Shared Beige As Color +- uid: Voile.Color.Bisque + commentId: F:Voile.Color.Bisque + id: Bisque + parent: Voile.Color + langs: + - csharp + - vb + name: Bisque + nameWithType: Color.Bisque + fullName: Voile.Color.Bisque + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Bisque + path: Source/Utils/Color.cs + startLine: 15 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color Bisque + return: + type: Voile.Color + content.vb: Public Shared Bisque As Color +- uid: Voile.Color.Black + commentId: F:Voile.Color.Black + id: Black + parent: Voile.Color + langs: + - csharp + - vb + name: Black + nameWithType: Color.Black + fullName: Voile.Color.Black + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Black + path: Source/Utils/Color.cs + startLine: 16 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color Black + return: + type: Voile.Color + content.vb: Public Shared Black As Color +- uid: Voile.Color.BlanchedAlmond + commentId: F:Voile.Color.BlanchedAlmond + id: BlanchedAlmond + parent: Voile.Color + langs: + - csharp + - vb + name: BlanchedAlmond + nameWithType: Color.BlanchedAlmond + fullName: Voile.Color.BlanchedAlmond + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: BlanchedAlmond + path: Source/Utils/Color.cs + startLine: 17 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color BlanchedAlmond + return: + type: Voile.Color + content.vb: Public Shared BlanchedAlmond As Color +- uid: Voile.Color.Blue + commentId: F:Voile.Color.Blue + id: Blue + parent: Voile.Color + langs: + - csharp + - vb + name: Blue + nameWithType: Color.Blue + fullName: Voile.Color.Blue + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Blue + path: Source/Utils/Color.cs + startLine: 18 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color Blue + return: + type: Voile.Color + content.vb: Public Shared Blue As Color +- uid: Voile.Color.BlueViolet + commentId: F:Voile.Color.BlueViolet + id: BlueViolet + parent: Voile.Color + langs: + - csharp + - vb + name: BlueViolet + nameWithType: Color.BlueViolet + fullName: Voile.Color.BlueViolet + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: BlueViolet + path: Source/Utils/Color.cs + startLine: 19 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color BlueViolet + return: + type: Voile.Color + content.vb: Public Shared BlueViolet As Color +- uid: Voile.Color.Brown + commentId: F:Voile.Color.Brown + id: Brown + parent: Voile.Color + langs: + - csharp + - vb + name: Brown + nameWithType: Color.Brown + fullName: Voile.Color.Brown + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Brown + path: Source/Utils/Color.cs + startLine: 20 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color Brown + return: + type: Voile.Color + content.vb: Public Shared Brown As Color +- uid: Voile.Color.BurlyWood + commentId: F:Voile.Color.BurlyWood + id: BurlyWood + parent: Voile.Color + langs: + - csharp + - vb + name: BurlyWood + nameWithType: Color.BurlyWood + fullName: Voile.Color.BurlyWood + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: BurlyWood + path: Source/Utils/Color.cs + startLine: 21 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color BurlyWood + return: + type: Voile.Color + content.vb: Public Shared BurlyWood As Color +- uid: Voile.Color.CadetBlue + commentId: F:Voile.Color.CadetBlue + id: CadetBlue + parent: Voile.Color + langs: + - csharp + - vb + name: CadetBlue + nameWithType: Color.CadetBlue + fullName: Voile.Color.CadetBlue + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CadetBlue + path: Source/Utils/Color.cs + startLine: 22 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color CadetBlue + return: + type: Voile.Color + content.vb: Public Shared CadetBlue As Color +- uid: Voile.Color.Chartreuse + commentId: F:Voile.Color.Chartreuse + id: Chartreuse + parent: Voile.Color + langs: + - csharp + - vb + name: Chartreuse + nameWithType: Color.Chartreuse + fullName: Voile.Color.Chartreuse + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Chartreuse + path: Source/Utils/Color.cs + startLine: 23 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color Chartreuse + return: + type: Voile.Color + content.vb: Public Shared Chartreuse As Color +- uid: Voile.Color.Chocolate + commentId: F:Voile.Color.Chocolate + id: Chocolate + parent: Voile.Color + langs: + - csharp + - vb + name: Chocolate + nameWithType: Color.Chocolate + fullName: Voile.Color.Chocolate + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Chocolate + path: Source/Utils/Color.cs + startLine: 24 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color Chocolate + return: + type: Voile.Color + content.vb: Public Shared Chocolate As Color +- uid: Voile.Color.Coral + commentId: F:Voile.Color.Coral + id: Coral + parent: Voile.Color + langs: + - csharp + - vb + name: Coral + nameWithType: Color.Coral + fullName: Voile.Color.Coral + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Coral + path: Source/Utils/Color.cs + startLine: 25 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color Coral + return: + type: Voile.Color + content.vb: Public Shared Coral As Color +- uid: Voile.Color.CornflowerBlue + commentId: F:Voile.Color.CornflowerBlue + id: CornflowerBlue + parent: Voile.Color + langs: + - csharp + - vb + name: CornflowerBlue + nameWithType: Color.CornflowerBlue + fullName: Voile.Color.CornflowerBlue + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CornflowerBlue + path: Source/Utils/Color.cs + startLine: 26 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color CornflowerBlue + return: + type: Voile.Color + content.vb: Public Shared CornflowerBlue As Color +- uid: Voile.Color.Cornsilk + commentId: F:Voile.Color.Cornsilk + id: Cornsilk + parent: Voile.Color + langs: + - csharp + - vb + name: Cornsilk + nameWithType: Color.Cornsilk + fullName: Voile.Color.Cornsilk + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Cornsilk + path: Source/Utils/Color.cs + startLine: 27 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color Cornsilk + return: + type: Voile.Color + content.vb: Public Shared Cornsilk As Color +- uid: Voile.Color.Crimson + commentId: F:Voile.Color.Crimson + id: Crimson + parent: Voile.Color + langs: + - csharp + - vb + name: Crimson + nameWithType: Color.Crimson + fullName: Voile.Color.Crimson + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Crimson + path: Source/Utils/Color.cs + startLine: 28 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color Crimson + return: + type: Voile.Color + content.vb: Public Shared Crimson As Color +- uid: Voile.Color.Cyan + commentId: F:Voile.Color.Cyan + id: Cyan + parent: Voile.Color + langs: + - csharp + - vb + name: Cyan + nameWithType: Color.Cyan + fullName: Voile.Color.Cyan + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Cyan + path: Source/Utils/Color.cs + startLine: 29 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color Cyan + return: + type: Voile.Color + content.vb: Public Shared Cyan As Color +- uid: Voile.Color.DarkBlue + commentId: F:Voile.Color.DarkBlue + id: DarkBlue + parent: Voile.Color + langs: + - csharp + - vb + name: DarkBlue + nameWithType: Color.DarkBlue + fullName: Voile.Color.DarkBlue + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DarkBlue + path: Source/Utils/Color.cs + startLine: 30 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color DarkBlue + return: + type: Voile.Color + content.vb: Public Shared DarkBlue As Color +- uid: Voile.Color.DarkCyan + commentId: F:Voile.Color.DarkCyan + id: DarkCyan + parent: Voile.Color + langs: + - csharp + - vb + name: DarkCyan + nameWithType: Color.DarkCyan + fullName: Voile.Color.DarkCyan + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DarkCyan + path: Source/Utils/Color.cs + startLine: 31 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color DarkCyan + return: + type: Voile.Color + content.vb: Public Shared DarkCyan As Color +- uid: Voile.Color.White + commentId: F:Voile.Color.White + id: White + parent: Voile.Color + langs: + - csharp + - vb + name: White + nameWithType: Color.White + fullName: Voile.Color.White + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: White + path: Source/Utils/Color.cs + startLine: 32 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color White + return: + type: Voile.Color + content.vb: Public Shared White As Color +- uid: Voile.Color.Green + commentId: F:Voile.Color.Green + id: Green + parent: Voile.Color + langs: + - csharp + - vb + name: Green + nameWithType: Color.Green + fullName: Voile.Color.Green + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Green + path: Source/Utils/Color.cs + startLine: 33 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color Green + return: + type: Voile.Color + content.vb: Public Shared Green As Color +- uid: Voile.Color.Red + commentId: F:Voile.Color.Red + id: Red + parent: Voile.Color + langs: + - csharp + - vb + name: Red + nameWithType: Color.Red + fullName: Voile.Color.Red + type: Field + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Red + path: Source/Utils/Color.cs + startLine: 34 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color Red + return: + type: Voile.Color + content.vb: Public Shared Red As Color +- uid: Voile.Color.R + commentId: P:Voile.Color.R + id: R + parent: Voile.Color + langs: + - csharp + - vb + name: R + nameWithType: Color.R + fullName: Voile.Color.R + type: Property + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: R + path: Source/Utils/Color.cs + startLine: 36 + assemblies: + - Voile + namespace: Voile + syntax: + content: public float R { readonly get; set; } + parameters: [] + return: + type: System.Single + content.vb: Public Property R As Single + overload: Voile.Color.R* +- uid: Voile.Color.G + commentId: P:Voile.Color.G + id: G + parent: Voile.Color + langs: + - csharp + - vb + name: G + nameWithType: Color.G + fullName: Voile.Color.G + type: Property + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: G + path: Source/Utils/Color.cs + startLine: 37 + assemblies: + - Voile + namespace: Voile + syntax: + content: public float G { readonly get; set; } + parameters: [] + return: + type: System.Single + content.vb: Public Property G As Single + overload: Voile.Color.G* +- uid: Voile.Color.B + commentId: P:Voile.Color.B + id: B + parent: Voile.Color + langs: + - csharp + - vb + name: B + nameWithType: Color.B + fullName: Voile.Color.B + type: Property + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: B + path: Source/Utils/Color.cs + startLine: 38 + assemblies: + - Voile + namespace: Voile + syntax: + content: public float B { readonly get; set; } + parameters: [] + return: + type: System.Single + content.vb: Public Property B As Single + overload: Voile.Color.B* +- uid: Voile.Color.A + commentId: P:Voile.Color.A + id: A + parent: Voile.Color + langs: + - csharp + - vb + name: A + nameWithType: Color.A + fullName: Voile.Color.A + type: Property + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: A + path: Source/Utils/Color.cs + startLine: 39 + assemblies: + - Voile + namespace: Voile + syntax: + content: public float A { readonly get; set; } + parameters: [] + return: + type: System.Single + content.vb: Public Property A As Single + overload: Voile.Color.A* +- uid: Voile.Color.Argb + commentId: P:Voile.Color.Argb + id: Argb + parent: Voile.Color + langs: + - csharp + - vb + name: Argb + nameWithType: Color.Argb + fullName: Voile.Color.Argb + type: Property + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Argb + path: Source/Utils/Color.cs + startLine: 41 + assemblies: + - Voile + namespace: Voile + syntax: + content: public int Argb { get; } + parameters: [] + return: + type: System.Int32 + content.vb: Public ReadOnly Property Argb As Integer + overload: Voile.Color.Argb* +- uid: Voile.Color.#ctor(System.Single,System.Single,System.Single,System.Single) + commentId: M:Voile.Color.#ctor(System.Single,System.Single,System.Single,System.Single) + id: '#ctor(System.Single,System.Single,System.Single,System.Single)' + parent: Voile.Color + langs: + - csharp + - vb + name: Color(float, float, float, float) + nameWithType: Color.Color(float, float, float, float) + fullName: Voile.Color.Color(float, float, float, float) + type: Constructor + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/Utils/Color.cs + startLine: 57 + assemblies: + - Voile + namespace: Voile + syntax: + content: public Color(float r, float g, float b, float a) + parameters: + - id: r + type: System.Single + - id: g + type: System.Single + - id: b + type: System.Single + - id: a + type: System.Single + content.vb: Public Sub New(r As Single, g As Single, b As Single, a As Single) + overload: Voile.Color.#ctor* + nameWithType.vb: Color.New(Single, Single, Single, Single) + fullName.vb: Voile.Color.New(Single, Single, Single, Single) + name.vb: New(Single, Single, Single, Single) +- uid: Voile.Color.#ctor(System.Byte,System.Byte,System.Byte,System.Byte) + commentId: M:Voile.Color.#ctor(System.Byte,System.Byte,System.Byte,System.Byte) + id: '#ctor(System.Byte,System.Byte,System.Byte,System.Byte)' + parent: Voile.Color + langs: + - csharp + - vb + name: Color(byte, byte, byte, byte) + nameWithType: Color.Color(byte, byte, byte, byte) + fullName: Voile.Color.Color(byte, byte, byte, byte) + type: Constructor + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/Utils/Color.cs + startLine: 65 + assemblies: + - Voile + namespace: Voile + syntax: + content: public Color(byte r, byte g, byte b, byte a) + parameters: + - id: r + type: System.Byte + - id: g + type: System.Byte + - id: b + type: System.Byte + - id: a + type: System.Byte + content.vb: Public Sub New(r As Byte, g As Byte, b As Byte, a As Byte) + overload: Voile.Color.#ctor* + nameWithType.vb: Color.New(Byte, Byte, Byte, Byte) + fullName.vb: Voile.Color.New(Byte, Byte, Byte, Byte) + name.vb: New(Byte, Byte, Byte, Byte) +- uid: Voile.Color.#ctor(System.Int32) + commentId: M:Voile.Color.#ctor(System.Int32) + id: '#ctor(System.Int32)' + parent: Voile.Color + langs: + - csharp + - vb + name: Color(int) + nameWithType: Color.Color(int) + fullName: Voile.Color.Color(int) + type: Constructor + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/Utils/Color.cs + startLine: 73 + assemblies: + - Voile + namespace: Voile + syntax: + content: public Color(int hex) + parameters: + - id: hex + type: System.Int32 + content.vb: Public Sub New(hex As Integer) + overload: Voile.Color.#ctor* + nameWithType.vb: Color.New(Integer) + fullName.vb: Voile.Color.New(Integer) + name.vb: New(Integer) +- uid: Voile.Color.Lightened(System.Single) + commentId: M:Voile.Color.Lightened(System.Single) + id: Lightened(System.Single) + parent: Voile.Color + langs: + - csharp + - vb + name: Lightened(float) + nameWithType: Color.Lightened(float) + fullName: Voile.Color.Lightened(float) + type: Method + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Lightened + path: Source/Utils/Color.cs + startLine: 83 + assemblies: + - Voile + namespace: Voile + syntax: + content: public Color Lightened(float amount) + parameters: + - id: amount + type: System.Single + return: + type: Voile.Color + content.vb: Public Function Lightened(amount As Single) As Color + overload: Voile.Color.Lightened* + nameWithType.vb: Color.Lightened(Single) + fullName.vb: Voile.Color.Lightened(Single) + name.vb: Lightened(Single) +- uid: Voile.Color.Darkened(System.Single) + commentId: M:Voile.Color.Darkened(System.Single) + id: Darkened(System.Single) + parent: Voile.Color + langs: + - csharp + - vb + name: Darkened(float) + nameWithType: Color.Darkened(float) + fullName: Voile.Color.Darkened(float) + type: Method + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Darkened + path: Source/Utils/Color.cs + startLine: 93 + assemblies: + - Voile + namespace: Voile + syntax: + content: public Color Darkened(float amount) + parameters: + - id: amount + type: System.Single + return: + type: Voile.Color + content.vb: Public Function Darkened(amount As Single) As Color + overload: Voile.Color.Darkened* + nameWithType.vb: Color.Darkened(Single) + fullName.vb: Voile.Color.Darkened(Single) + name.vb: Darkened(Single) +- uid: Voile.Color.ToSystemColor + commentId: M:Voile.Color.ToSystemColor + id: ToSystemColor + parent: Voile.Color + langs: + - csharp + - vb + name: ToSystemColor() + nameWithType: Color.ToSystemColor() + fullName: Voile.Color.ToSystemColor() + type: Method + source: + remote: + path: Voile/Source/Utils/Color.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ToSystemColor + path: Source/Utils/Color.cs + startLine: 103 + assemblies: + - Voile + namespace: Voile + syntax: + content: public Color ToSystemColor() + return: + type: System.Drawing.Color + content.vb: Public Function ToSystemColor() As Color + overload: Voile.Color.ToSystemColor* +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: System.IEquatable{Voile.Color} + commentId: T:System.IEquatable{Voile.Color} + parent: System + definition: System.IEquatable`1 + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + name: IEquatable + nameWithType: IEquatable + fullName: System.IEquatable + nameWithType.vb: IEquatable(Of Color) + fullName.vb: System.IEquatable(Of Voile.Color) + name.vb: IEquatable(Of Color) + spec.csharp: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: < + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: '>' + spec.vb: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: ( + - name: Of + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) +- uid: System.ValueType.Equals(System.Object) + commentId: M:System.ValueType.Equals(System.Object) + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + name: Equals(object) + nameWithType: ValueType.Equals(object) + fullName: System.ValueType.Equals(object) + nameWithType.vb: ValueType.Equals(Object) + fullName.vb: System.ValueType.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType.GetHashCode + commentId: M:System.ValueType.GetHashCode + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + name: GetHashCode() + nameWithType: ValueType.GetHashCode() + fullName: System.ValueType.GetHashCode() + spec.csharp: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) +- uid: System.ValueType.ToString + commentId: M:System.ValueType.ToString + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + name: ToString() + nameWithType: ValueType.ToString() + fullName: System.ValueType.ToString() + spec.csharp: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.IEquatable`1 + commentId: T:System.IEquatable`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + name: IEquatable + nameWithType: IEquatable + fullName: System.IEquatable + nameWithType.vb: IEquatable(Of T) + fullName.vb: System.IEquatable(Of T) + name.vb: IEquatable(Of T) + spec.csharp: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.IEquatable`1 + name: IEquatable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.iequatable-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.ValueType + commentId: T:System.ValueType + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype + name: ValueType + nameWithType: ValueType + fullName: System.ValueType +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.Color + commentId: T:Voile.Color + parent: Voile + href: Voile.Color.html + name: Color + nameWithType: Color + fullName: Voile.Color +- uid: Voile.Color.R* + commentId: Overload:Voile.Color.R + href: Voile.Color.html#Voile_Color_R + name: R + nameWithType: Color.R + fullName: Voile.Color.R +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: Voile.Color.G* + commentId: Overload:Voile.Color.G + href: Voile.Color.html#Voile_Color_G + name: G + nameWithType: Color.G + fullName: Voile.Color.G +- uid: Voile.Color.B* + commentId: Overload:Voile.Color.B + href: Voile.Color.html#Voile_Color_B + name: B + nameWithType: Color.B + fullName: Voile.Color.B +- uid: Voile.Color.A* + commentId: Overload:Voile.Color.A + href: Voile.Color.html#Voile_Color_A + name: A + nameWithType: Color.A + fullName: Voile.Color.A +- uid: Voile.Color.Argb* + commentId: Overload:Voile.Color.Argb + href: Voile.Color.html#Voile_Color_Argb + name: Argb + nameWithType: Color.Argb + fullName: Voile.Color.Argb +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: Voile.Color.#ctor* + commentId: Overload:Voile.Color.#ctor + href: Voile.Color.html#Voile_Color__ctor_System_Single_System_Single_System_Single_System_Single_ + name: Color + nameWithType: Color.Color + fullName: Voile.Color.Color + nameWithType.vb: Color.New + fullName.vb: Voile.Color.New + name.vb: New +- uid: System.Byte + commentId: T:System.Byte + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + name: byte + nameWithType: byte + fullName: byte + nameWithType.vb: Byte + fullName.vb: Byte + name.vb: Byte +- uid: Voile.Color.Lightened* + commentId: Overload:Voile.Color.Lightened + href: Voile.Color.html#Voile_Color_Lightened_System_Single_ + name: Lightened + nameWithType: Color.Lightened + fullName: Voile.Color.Lightened +- uid: Voile.Color.Darkened* + commentId: Overload:Voile.Color.Darkened + href: Voile.Color.html#Voile_Color_Darkened_System_Single_ + name: Darkened + nameWithType: Color.Darkened + fullName: Voile.Color.Darkened +- uid: Voile.Color.ToSystemColor* + commentId: Overload:Voile.Color.ToSystemColor + href: Voile.Color.html#Voile_Color_ToSystemColor + name: ToSystemColor + nameWithType: Color.ToSystemColor + fullName: Voile.Color.ToSystemColor +- uid: System.Drawing.Color + commentId: T:System.Drawing.Color + parent: System.Drawing + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.drawing.color + name: Color + nameWithType: Color + fullName: System.Drawing.Color +- uid: System.Drawing + commentId: N:System.Drawing + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Drawing + nameWithType: System.Drawing + fullName: System.Drawing + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Drawing + name: Drawing + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.drawing + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Drawing + name: Drawing + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.drawing diff --git a/Voile/api/Voile.Extensions.Mat4Extensions.yml b/Voile/api/Voile.Extensions.Mat4Extensions.yml new file mode 100644 index 0000000..f01e620 --- /dev/null +++ b/Voile/api/Voile.Extensions.Mat4Extensions.yml @@ -0,0 +1,382 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Extensions.Mat4Extensions + commentId: T:Voile.Extensions.Mat4Extensions + id: Mat4Extensions + parent: Voile.Extensions + children: + - Voile.Extensions.Mat4Extensions.Scale(System.Numerics.Matrix4x4,System.Numerics.Vector2) + langs: + - csharp + - vb + name: Mat4Extensions + nameWithType: Mat4Extensions + fullName: Voile.Extensions.Mat4Extensions + type: Class + source: + remote: + path: Voile/Source/Extensions/Mat4Extensions.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Mat4Extensions + path: Source/Extensions/Mat4Extensions.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.Extensions + syntax: + content: public static class Mat4Extensions + content.vb: Public Module Mat4Extensions + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Extensions.Mat4Extensions.Scale(System.Numerics.Matrix4x4,System.Numerics.Vector2) + commentId: M:Voile.Extensions.Mat4Extensions.Scale(System.Numerics.Matrix4x4,System.Numerics.Vector2) + id: Scale(System.Numerics.Matrix4x4,System.Numerics.Vector2) + isExtensionMethod: true + parent: Voile.Extensions.Mat4Extensions + langs: + - csharp + - vb + name: Scale(Matrix4x4, Vector2) + nameWithType: Mat4Extensions.Scale(Matrix4x4, Vector2) + fullName: Voile.Extensions.Mat4Extensions.Scale(System.Numerics.Matrix4x4, System.Numerics.Vector2) + type: Method + source: + remote: + path: Voile/Source/Extensions/Mat4Extensions.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Scale + path: Source/Extensions/Mat4Extensions.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.Extensions + syntax: + content: public static Matrix4x4 Scale(this Matrix4x4 mat, Vector2 scale) + parameters: + - id: mat + type: System.Numerics.Matrix4x4 + - id: scale + type: System.Numerics.Vector2 + return: + type: System.Numerics.Matrix4x4 + content.vb: Public Shared Function Scale(mat As Matrix4x4, scale As Vector2) As Matrix4x4 + overload: Voile.Extensions.Mat4Extensions.Scale* +references: +- uid: Voile.Extensions + commentId: N:Voile.Extensions + href: Voile.html + name: Voile.Extensions + nameWithType: Voile.Extensions + fullName: Voile.Extensions + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Extensions + name: Extensions + href: Voile.Extensions.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Extensions + name: Extensions + href: Voile.Extensions.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Extensions.Mat4Extensions.Scale* + commentId: Overload:Voile.Extensions.Mat4Extensions.Scale + href: Voile.Extensions.Mat4Extensions.html#Voile_Extensions_Mat4Extensions_Scale_System_Numerics_Matrix4x4_System_Numerics_Vector2_ + name: Scale + nameWithType: Mat4Extensions.Scale + fullName: Voile.Extensions.Mat4Extensions.Scale +- uid: System.Numerics.Matrix4x4 + commentId: T:System.Numerics.Matrix4x4 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.matrix4x4 + name: Matrix4x4 + nameWithType: Matrix4x4 + fullName: System.Numerics.Matrix4x4 +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics diff --git a/Voile/api/Voile.Extensions.Vector2Extensions.yml b/Voile/api/Voile.Extensions.Vector2Extensions.yml new file mode 100644 index 0000000..49b4d4a --- /dev/null +++ b/Voile/api/Voile.Extensions.Vector2Extensions.yml @@ -0,0 +1,390 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Extensions.Vector2Extensions + commentId: T:Voile.Extensions.Vector2Extensions + id: Vector2Extensions + parent: Voile.Extensions + children: + - Voile.Extensions.Vector2Extensions.Lerp(System.Numerics.Vector2,System.Numerics.Vector2,System.Double) + langs: + - csharp + - vb + name: Vector2Extensions + nameWithType: Vector2Extensions + fullName: Voile.Extensions.Vector2Extensions + type: Class + source: + remote: + path: Voile/Source/Extensions/Vector2Extensions.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Vector2Extensions + path: Source/Extensions/Vector2Extensions.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.Extensions + syntax: + content: public static class Vector2Extensions + content.vb: Public Module Vector2Extensions + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Extensions.Vector2Extensions.Lerp(System.Numerics.Vector2,System.Numerics.Vector2,System.Double) + commentId: M:Voile.Extensions.Vector2Extensions.Lerp(System.Numerics.Vector2,System.Numerics.Vector2,System.Double) + id: Lerp(System.Numerics.Vector2,System.Numerics.Vector2,System.Double) + isExtensionMethod: true + parent: Voile.Extensions.Vector2Extensions + langs: + - csharp + - vb + name: Lerp(Vector2, Vector2, double) + nameWithType: Vector2Extensions.Lerp(Vector2, Vector2, double) + fullName: Voile.Extensions.Vector2Extensions.Lerp(System.Numerics.Vector2, System.Numerics.Vector2, double) + type: Method + source: + remote: + path: Voile/Source/Extensions/Vector2Extensions.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Lerp + path: Source/Extensions/Vector2Extensions.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.Extensions + syntax: + content: public static Vector2 Lerp(this Vector2 a, Vector2 b, double t) + parameters: + - id: a + type: System.Numerics.Vector2 + - id: b + type: System.Numerics.Vector2 + - id: t + type: System.Double + return: + type: System.Numerics.Vector2 + content.vb: Public Shared Function Lerp(a As Vector2, b As Vector2, t As Double) As Vector2 + overload: Voile.Extensions.Vector2Extensions.Lerp* + nameWithType.vb: Vector2Extensions.Lerp(Vector2, Vector2, Double) + fullName.vb: Voile.Extensions.Vector2Extensions.Lerp(System.Numerics.Vector2, System.Numerics.Vector2, Double) + name.vb: Lerp(Vector2, Vector2, Double) +references: +- uid: Voile.Extensions + commentId: N:Voile.Extensions + href: Voile.html + name: Voile.Extensions + nameWithType: Voile.Extensions + fullName: Voile.Extensions + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Extensions + name: Extensions + href: Voile.Extensions.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Extensions + name: Extensions + href: Voile.Extensions.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Extensions.Vector2Extensions.Lerp* + commentId: Overload:Voile.Extensions.Vector2Extensions.Lerp + href: Voile.Extensions.Vector2Extensions.html#Voile_Extensions_Vector2Extensions_Lerp_System_Numerics_Vector2_System_Numerics_Vector2_System_Double_ + name: Lerp + nameWithType: Vector2Extensions.Lerp + fullName: Voile.Extensions.Vector2Extensions.Lerp +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Double + commentId: T:System.Double + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + name: double + nameWithType: double + fullName: double + nameWithType.vb: Double + fullName.vb: Double + name.vb: Double +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics diff --git a/Voile/api/Voile.Extensions.yml b/Voile/api/Voile.Extensions.yml new file mode 100644 index 0000000..f26771c --- /dev/null +++ b/Voile/api/Voile.Extensions.yml @@ -0,0 +1,30 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Extensions + commentId: N:Voile.Extensions + id: Voile.Extensions + children: + - Voile.Extensions.Mat4Extensions + - Voile.Extensions.Vector2Extensions + langs: + - csharp + - vb + name: Voile.Extensions + nameWithType: Voile.Extensions + fullName: Voile.Extensions + type: Namespace + assemblies: + - Voile +references: +- uid: Voile.Extensions.Mat4Extensions + commentId: T:Voile.Extensions.Mat4Extensions + href: Voile.Extensions.Mat4Extensions.html + name: Mat4Extensions + nameWithType: Mat4Extensions + fullName: Voile.Extensions.Mat4Extensions +- uid: Voile.Extensions.Vector2Extensions + commentId: T:Voile.Extensions.Vector2Extensions + href: Voile.Extensions.Vector2Extensions.html + name: Vector2Extensions + nameWithType: Vector2Extensions + fullName: Voile.Extensions.Vector2Extensions diff --git a/Voile/api/Voile.Font.yml b/Voile/api/Voile.Font.yml new file mode 100644 index 0000000..465bf5b --- /dev/null +++ b/Voile/api/Voile.Font.yml @@ -0,0 +1,477 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Font + commentId: T:Voile.Font + id: Font + parent: Voile + children: + - Voile.Font.#ctor(System.String,System.Byte[]) + - Voile.Font.Size + langs: + - csharp + - vb + name: Font + nameWithType: Font + fullName: Voile.Font + type: Class + source: + remote: + path: Voile/Source/Resources/Font.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Font + path: Source/Resources/Font.cs + startLine: 2 + assemblies: + - Voile + namespace: Voile + syntax: + content: 'public class Font : Resource, IDisposable' + content.vb: Public Class Font Inherits Resource Implements IDisposable + inheritance: + - System.Object + - Voile.Resource + implements: + - System.IDisposable + inheritedMembers: + - Voile.Resource.Guid + - Voile.Resource.Path + - Voile.Resource.Buffer + - Voile.Resource.BufferSize + - Voile.Resource.Dispose + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Font.Size + commentId: P:Voile.Font.Size + id: Size + parent: Voile.Font + langs: + - csharp + - vb + name: Size + nameWithType: Font.Size + fullName: Voile.Font.Size + type: Property + source: + remote: + path: Voile/Source/Resources/Font.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Size + path: Source/Resources/Font.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile + syntax: + content: public int Size { get; set; } + parameters: [] + return: + type: System.Int32 + content.vb: Public Property Size As Integer + overload: Voile.Font.Size* +- uid: Voile.Font.#ctor(System.String,System.Byte[]) + commentId: M:Voile.Font.#ctor(System.String,System.Byte[]) + id: '#ctor(System.String,System.Byte[])' + parent: Voile.Font + langs: + - csharp + - vb + name: Font(string, byte[]) + nameWithType: Font.Font(string, byte[]) + fullName: Voile.Font.Font(string, byte[]) + type: Constructor + source: + remote: + path: Voile/Source/Resources/Font.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/Resources/Font.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile + syntax: + content: public Font(string path, byte[] buffer) + parameters: + - id: path + type: System.String + - id: buffer + type: System.Byte[] + content.vb: Public Sub New(path As String, buffer As Byte()) + overload: Voile.Font.#ctor* + nameWithType.vb: Font.New(String, Byte()) + fullName.vb: Voile.Font.New(String, Byte()) + name.vb: New(String, Byte()) +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.Resource + commentId: T:Voile.Resource + parent: Voile + href: Voile.Resource.html + name: Resource + nameWithType: Resource + fullName: Voile.Resource +- uid: System.IDisposable + commentId: T:System.IDisposable + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable + name: IDisposable + nameWithType: IDisposable + fullName: System.IDisposable +- uid: Voile.Resource.Guid + commentId: P:Voile.Resource.Guid + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_Guid + name: Guid + nameWithType: Resource.Guid + fullName: Voile.Resource.Guid +- uid: Voile.Resource.Path + commentId: P:Voile.Resource.Path + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_Path + name: Path + nameWithType: Resource.Path + fullName: Voile.Resource.Path +- uid: Voile.Resource.Buffer + commentId: P:Voile.Resource.Buffer + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_Buffer + name: Buffer + nameWithType: Resource.Buffer + fullName: Voile.Resource.Buffer +- uid: Voile.Resource.BufferSize + commentId: P:Voile.Resource.BufferSize + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_BufferSize + name: BufferSize + nameWithType: Resource.BufferSize + fullName: Voile.Resource.BufferSize +- uid: Voile.Resource.Dispose + commentId: M:Voile.Resource.Dispose + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_Dispose + name: Dispose() + nameWithType: Resource.Dispose() + fullName: Voile.Resource.Dispose() + spec.csharp: + - uid: Voile.Resource.Dispose + name: Dispose + href: Voile.Resource.html#Voile_Resource_Dispose + - name: ( + - name: ) + spec.vb: + - uid: Voile.Resource.Dispose + name: Dispose + href: Voile.Resource.html#Voile_Resource_Dispose + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Font.Size* + commentId: Overload:Voile.Font.Size + href: Voile.Font.html#Voile_Font_Size + name: Size + nameWithType: Font.Size + fullName: Voile.Font.Size +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: Voile.Font.#ctor* + commentId: Overload:Voile.Font.#ctor + href: Voile.Font.html#Voile_Font__ctor_System_String_System_Byte___ + name: Font + nameWithType: Font.Font + fullName: Voile.Font.Font + nameWithType.vb: Font.New + fullName.vb: Voile.Font.New + name.vb: New +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: System.Byte[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + name: byte[] + nameWithType: byte[] + fullName: byte[] + nameWithType.vb: Byte() + fullName.vb: Byte() + name.vb: Byte() + spec.csharp: + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '[' + - name: ']' + spec.vb: + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: ( + - name: ) diff --git a/Voile/api/Voile.Game.yml b/Voile/api/Voile.Game.yml new file mode 100644 index 0000000..81b39c2 --- /dev/null +++ b/Voile/api/Voile.Game.yml @@ -0,0 +1,987 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Game + commentId: T:Voile.Game + id: Game + parent: Voile + children: + - Voile.Game.#ctor + - Voile.Game.#ctor(Voile.Resources.ResourceManager,Voile.Input.InputSystem,Voile.Rendering.RenderSystem) + - Voile.Game.EngineConfigPath + - Voile.Game.Initialize + - Voile.Game.InitializeDefault + - Voile.Game.Input + - Voile.Game.LoadResources + - Voile.Game.Name + - Voile.Game.Ready + - Voile.Game.Renderer + - Voile.Game.ResourceManager + - Voile.Game.ResourceRoot + - Voile.Game.Run + - Voile.Game.Shutdown + - Voile.Game.ShutdownDefault + - Voile.Game.Start + langs: + - csharp + - vb + name: Game + nameWithType: Game + fullName: Voile.Game + type: Class + source: + remote: + path: Voile/Source/Game.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Game + path: Source/Game.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract class Game + content.vb: Public MustInherit Class Game + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Game.ResourceManager + commentId: P:Voile.Game.ResourceManager + id: ResourceManager + parent: Voile.Game + langs: + - csharp + - vb + name: ResourceManager + nameWithType: Game.ResourceManager + fullName: Voile.Game.ResourceManager + type: Property + source: + remote: + path: Voile/Source/Game.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ResourceManager + path: Source/Game.cs + startLine: 11 + assemblies: + - Voile + namespace: Voile + summary: The ResourceManager associated with this game. + example: [] + syntax: + content: protected ResourceManager ResourceManager { get; } + parameters: [] + return: + type: Voile.Resources.ResourceManager + content.vb: Protected Property ResourceManager As ResourceManager + overload: Voile.Game.ResourceManager* +- uid: Voile.Game.Input + commentId: P:Voile.Game.Input + id: Input + parent: Voile.Game + langs: + - csharp + - vb + name: Input + nameWithType: Game.Input + fullName: Voile.Game.Input + type: Property + source: + remote: + path: Voile/Source/Game.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Input + path: Source/Game.cs + startLine: 15 + assemblies: + - Voile + namespace: Voile + summary: The InputHandler associated with this game. Uses by default. + example: [] + syntax: + content: protected InputSystem Input { get; } + parameters: [] + return: + type: Voile.Input.InputSystem + content.vb: Protected Property Input As InputSystem + overload: Voile.Game.Input* +- uid: Voile.Game.Renderer + commentId: P:Voile.Game.Renderer + id: Renderer + parent: Voile.Game + langs: + - csharp + - vb + name: Renderer + nameWithType: Game.Renderer + fullName: Voile.Game.Renderer + type: Property + source: + remote: + path: Voile/Source/Game.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Renderer + path: Source/Game.cs + startLine: 20 + assemblies: + - Voile + namespace: Voile + summary: The Renderer associated with this game. Uses by default. + example: [] + syntax: + content: protected RenderSystem Renderer { get; } + parameters: [] + return: + type: Voile.Rendering.RenderSystem + content.vb: Protected Property Renderer As RenderSystem + overload: Voile.Game.Renderer* +- uid: Voile.Game.ResourceRoot + commentId: P:Voile.Game.ResourceRoot + id: ResourceRoot + parent: Voile.Game + langs: + - csharp + - vb + name: ResourceRoot + nameWithType: Game.ResourceRoot + fullName: Voile.Game.ResourceRoot + type: Property + source: + remote: + path: Voile/Source/Game.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ResourceRoot + path: Source/Game.cs + startLine: 25 + assemblies: + - Voile + namespace: Voile + summary: Resource root path for this game. + example: [] + syntax: + content: public virtual string ResourceRoot { get; } + parameters: [] + return: + type: System.String + content.vb: Public Overridable ReadOnly Property ResourceRoot As String + overload: Voile.Game.ResourceRoot* +- uid: Voile.Game.EngineConfigPath + commentId: P:Voile.Game.EngineConfigPath + id: EngineConfigPath + parent: Voile.Game + langs: + - csharp + - vb + name: EngineConfigPath + nameWithType: Game.EngineConfigPath + fullName: Voile.Game.EngineConfigPath + type: Property + source: + remote: + path: Voile/Source/Game.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: EngineConfigPath + path: Source/Game.cs + startLine: 30 + assemblies: + - Voile + namespace: Voile + summary: Path to the engine configuration file. + example: [] + syntax: + content: public virtual string EngineConfigPath { get; } + parameters: [] + return: + type: System.String + content.vb: Public Overridable ReadOnly Property EngineConfigPath As String + overload: Voile.Game.EngineConfigPath* +- uid: Voile.Game.Name + commentId: P:Voile.Game.Name + id: Name + parent: Voile.Game + langs: + - csharp + - vb + name: Name + nameWithType: Game.Name + fullName: Voile.Game.Name + type: Property + source: + remote: + path: Voile/Source/Game.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Name + path: Source/Game.cs + startLine: 35 + assemblies: + - Voile + namespace: Voile + summary: Name of this game. Also used as a default window title. + example: [] + syntax: + content: public virtual string Name { get; } + parameters: [] + return: + type: System.String + content.vb: Public Overridable ReadOnly Property Name As String + overload: Voile.Game.Name* +- uid: Voile.Game.#ctor + commentId: M:Voile.Game.#ctor + id: '#ctor' + parent: Voile.Game + langs: + - csharp + - vb + name: Game() + nameWithType: Game.Game() + fullName: Voile.Game.Game() + type: Constructor + source: + remote: + path: Voile/Source/Game.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/Game.cs + startLine: 40 + assemblies: + - Voile + namespace: Voile + summary: Default game constructor. + example: [] + syntax: + content: public Game() + content.vb: Public Sub New() + overload: Voile.Game.#ctor* + nameWithType.vb: Game.New() + fullName.vb: Voile.Game.New() + name.vb: New() +- uid: Voile.Game.#ctor(Voile.Resources.ResourceManager,Voile.Input.InputSystem,Voile.Rendering.RenderSystem) + commentId: M:Voile.Game.#ctor(Voile.Resources.ResourceManager,Voile.Input.InputSystem,Voile.Rendering.RenderSystem) + id: '#ctor(Voile.Resources.ResourceManager,Voile.Input.InputSystem,Voile.Rendering.RenderSystem)' + parent: Voile.Game + langs: + - csharp + - vb + name: Game(ResourceManager, InputSystem, RenderSystem) + nameWithType: Game.Game(ResourceManager, InputSystem, RenderSystem) + fullName: Voile.Game.Game(Voile.Resources.ResourceManager, Voile.Input.InputSystem, Voile.Rendering.RenderSystem) + type: Constructor + source: + remote: + path: Voile/Source/Game.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/Game.cs + startLine: 53 + assemblies: + - Voile + namespace: Voile + summary: Game constructor with custom systems. + example: [] + syntax: + content: public Game(ResourceManager resourceManager, InputSystem inputSystem, RenderSystem renderSystem) + parameters: + - id: resourceManager + type: Voile.Resources.ResourceManager + description: '' + - id: inputSystem + type: Voile.Input.InputSystem + description: '' + - id: renderSystem + type: Voile.Rendering.RenderSystem + description: '' + content.vb: Public Sub New(resourceManager As ResourceManager, inputSystem As InputSystem, renderSystem As RenderSystem) + overload: Voile.Game.#ctor* + nameWithType.vb: Game.New(ResourceManager, InputSystem, RenderSystem) + fullName.vb: Voile.Game.New(Voile.Resources.ResourceManager, Voile.Input.InputSystem, Voile.Rendering.RenderSystem) + name.vb: New(ResourceManager, InputSystem, RenderSystem) +- uid: Voile.Game.Start + commentId: M:Voile.Game.Start + id: Start + parent: Voile.Game + langs: + - csharp + - vb + name: Start() + nameWithType: Game.Start() + fullName: Voile.Game.Start() + type: Method + source: + remote: + path: Voile/Source/Game.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Start + path: Source/Game.cs + startLine: 64 + assemblies: + - Voile + namespace: Voile + summary: >- + Starts the game application. + + This involves initializing the required subsystems, loading resources from the disk, and then preparing the subsystems for running in the main loop. + example: [] + syntax: + content: public void Start() + content.vb: Public Sub Start() + overload: Voile.Game.Start* +- uid: Voile.Game.InitializeDefault + commentId: M:Voile.Game.InitializeDefault + id: InitializeDefault + parent: Voile.Game + langs: + - csharp + - vb + name: InitializeDefault() + nameWithType: Game.InitializeDefault() + fullName: Voile.Game.InitializeDefault() + type: Method + source: + remote: + path: Voile/Source/Game.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: InitializeDefault + path: Source/Game.cs + startLine: 76 + assemblies: + - Voile + namespace: Voile + summary: Initializes subsystems using default types and settings. + example: [] + syntax: + content: public void InitializeDefault() + content.vb: Public Sub InitializeDefault() + overload: Voile.Game.InitializeDefault* +- uid: Voile.Game.ShutdownDefault + commentId: M:Voile.Game.ShutdownDefault + id: ShutdownDefault + parent: Voile.Game + langs: + - csharp + - vb + name: ShutdownDefault() + nameWithType: Game.ShutdownDefault() + fullName: Voile.Game.ShutdownDefault() + type: Method + source: + remote: + path: Voile/Source/Game.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ShutdownDefault + path: Source/Game.cs + startLine: 88 + assemblies: + - Voile + namespace: Voile + syntax: + content: public void ShutdownDefault() + content.vb: Public Sub ShutdownDefault() + overload: Voile.Game.ShutdownDefault* +- uid: Voile.Game.Initialize + commentId: M:Voile.Game.Initialize + id: Initialize + parent: Voile.Game + langs: + - csharp + - vb + name: Initialize() + nameWithType: Game.Initialize() + fullName: Voile.Game.Initialize() + type: Method + source: + remote: + path: Voile/Source/Game.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Initialize + path: Source/Game.cs + startLine: 98 + assemblies: + - Voile + namespace: Voile + summary: Called when it's time to initialize the subsystems, or modify default game settings or system settings. + example: [] + syntax: + content: public abstract void Initialize() + content.vb: Public MustOverride Sub Initialize() + overload: Voile.Game.Initialize* +- uid: Voile.Game.LoadResources + commentId: M:Voile.Game.LoadResources + id: LoadResources + parent: Voile.Game + langs: + - csharp + - vb + name: LoadResources() + nameWithType: Game.LoadResources() + fullName: Voile.Game.LoadResources() + type: Method + source: + remote: + path: Voile/Source/Game.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LoadResources + path: Source/Game.cs + startLine: 102 + assemblies: + - Voile + namespace: Voile + summary: Called when it's time to load the game's resources, such as images or sounds. + example: [] + syntax: + content: protected abstract void LoadResources() + content.vb: Protected MustOverride Sub LoadResources() + overload: Voile.Game.LoadResources* +- uid: Voile.Game.Ready + commentId: M:Voile.Game.Ready + id: Ready + parent: Voile.Game + langs: + - csharp + - vb + name: Ready() + nameWithType: Game.Ready() + fullName: Voile.Game.Ready() + type: Method + source: + remote: + path: Voile/Source/Game.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Ready + path: Source/Game.cs + startLine: 107 + assemblies: + - Voile + namespace: Voile + summary: >- + Called when it's safe to manipulate the resources or/and systems. + + You can safely create game objects, scenes, etc. in this method. + example: [] + syntax: + content: protected abstract void Ready() + content.vb: Protected MustOverride Sub Ready() + overload: Voile.Game.Ready* +- uid: Voile.Game.Run + commentId: M:Voile.Game.Run + id: Run + parent: Voile.Game + langs: + - csharp + - vb + name: Run() + nameWithType: Game.Run() + fullName: Voile.Game.Run() + type: Method + source: + remote: + path: Voile/Source/Game.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Run + path: Source/Game.cs + startLine: 111 + assemblies: + - Voile + namespace: Voile + summary: Called when everything has been readied to start the main loop. + example: [] + syntax: + content: protected abstract void Run() + content.vb: Protected MustOverride Sub Run() + overload: Voile.Game.Run* +- uid: Voile.Game.Shutdown + commentId: M:Voile.Game.Shutdown + id: Shutdown + parent: Voile.Game + langs: + - csharp + - vb + name: Shutdown() + nameWithType: Game.Shutdown() + fullName: Voile.Game.Shutdown() + type: Method + source: + remote: + path: Voile/Source/Game.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Shutdown + path: Source/Game.cs + startLine: 115 + assemblies: + - Voile + namespace: Voile + summary: Called when the application quits and it's safe to clean up. + example: [] + syntax: + content: public abstract void Shutdown() + content.vb: Public MustOverride Sub Shutdown() + overload: Voile.Game.Shutdown* +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Game.ResourceManager* + commentId: Overload:Voile.Game.ResourceManager + href: Voile.Game.html#Voile_Game_ResourceManager + name: ResourceManager + nameWithType: Game.ResourceManager + fullName: Voile.Game.ResourceManager +- uid: Voile.Resources.ResourceManager + commentId: T:Voile.Resources.ResourceManager + parent: Voile.Resources + href: Voile.Resources.ResourceManager.html + name: ResourceManager + nameWithType: ResourceManager + fullName: Voile.Resources.ResourceManager +- uid: Voile.Resources + commentId: N:Voile.Resources + href: Voile.html + name: Voile.Resources + nameWithType: Voile.Resources + fullName: Voile.Resources + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html +- uid: Voile.Input.RaylibInputSystem + commentId: T:Voile.Input.RaylibInputSystem + href: Voile.Input.RaylibInputSystem.html + name: RaylibInputSystem + nameWithType: RaylibInputSystem + fullName: Voile.Input.RaylibInputSystem +- uid: Voile.Game.Input* + commentId: Overload:Voile.Game.Input + href: Voile.Game.html#Voile_Game_Input + name: Input + nameWithType: Game.Input + fullName: Voile.Game.Input +- uid: Voile.Input.InputSystem + commentId: T:Voile.Input.InputSystem + parent: Voile.Input + href: Voile.Input.InputSystem.html + name: InputSystem + nameWithType: InputSystem + fullName: Voile.Input.InputSystem +- uid: Voile.Input + commentId: N:Voile.Input + href: Voile.html + name: Voile.Input + nameWithType: Voile.Input + fullName: Voile.Input + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html +- uid: Voile.Rendering.RaylibRenderSystem + commentId: T:Voile.Rendering.RaylibRenderSystem + href: Voile.Rendering.RaylibRenderSystem.html + name: RaylibRenderSystem + nameWithType: RaylibRenderSystem + fullName: Voile.Rendering.RaylibRenderSystem +- uid: Voile.Game.Renderer* + commentId: Overload:Voile.Game.Renderer + href: Voile.Game.html#Voile_Game_Renderer + name: Renderer + nameWithType: Game.Renderer + fullName: Voile.Game.Renderer +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: Voile.Game.ResourceRoot* + commentId: Overload:Voile.Game.ResourceRoot + href: Voile.Game.html#Voile_Game_ResourceRoot + name: ResourceRoot + nameWithType: Game.ResourceRoot + fullName: Voile.Game.ResourceRoot +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.Game.EngineConfigPath* + commentId: Overload:Voile.Game.EngineConfigPath + href: Voile.Game.html#Voile_Game_EngineConfigPath + name: EngineConfigPath + nameWithType: Game.EngineConfigPath + fullName: Voile.Game.EngineConfigPath +- uid: Voile.Game.Name* + commentId: Overload:Voile.Game.Name + href: Voile.Game.html#Voile_Game_Name + name: Name + nameWithType: Game.Name + fullName: Voile.Game.Name +- uid: Voile.Game.#ctor* + commentId: Overload:Voile.Game.#ctor + href: Voile.Game.html#Voile_Game__ctor + name: Game + nameWithType: Game.Game + fullName: Voile.Game.Game + nameWithType.vb: Game.New + fullName.vb: Voile.Game.New + name.vb: New +- uid: Voile.Game.Start* + commentId: Overload:Voile.Game.Start + href: Voile.Game.html#Voile_Game_Start + name: Start + nameWithType: Game.Start + fullName: Voile.Game.Start +- uid: Voile.Game.InitializeDefault* + commentId: Overload:Voile.Game.InitializeDefault + href: Voile.Game.html#Voile_Game_InitializeDefault + name: InitializeDefault + nameWithType: Game.InitializeDefault + fullName: Voile.Game.InitializeDefault +- uid: Voile.Game.ShutdownDefault* + commentId: Overload:Voile.Game.ShutdownDefault + href: Voile.Game.html#Voile_Game_ShutdownDefault + name: ShutdownDefault + nameWithType: Game.ShutdownDefault + fullName: Voile.Game.ShutdownDefault +- uid: Voile.Game.Initialize* + commentId: Overload:Voile.Game.Initialize + href: Voile.Game.html#Voile_Game_Initialize + name: Initialize + nameWithType: Game.Initialize + fullName: Voile.Game.Initialize +- uid: Voile.Game.LoadResources* + commentId: Overload:Voile.Game.LoadResources + href: Voile.Game.html#Voile_Game_LoadResources + name: LoadResources + nameWithType: Game.LoadResources + fullName: Voile.Game.LoadResources +- uid: Voile.Game.Ready* + commentId: Overload:Voile.Game.Ready + href: Voile.Game.html#Voile_Game_Ready + name: Ready + nameWithType: Game.Ready + fullName: Voile.Game.Ready +- uid: Voile.Game.Run* + commentId: Overload:Voile.Game.Run + href: Voile.Game.html#Voile_Game_Run + name: Run + nameWithType: Game.Run + fullName: Voile.Game.Run +- uid: Voile.Game.Shutdown* + commentId: Overload:Voile.Game.Shutdown + href: Voile.Game.html#Voile_Game_Shutdown + name: Shutdown + nameWithType: Game.Shutdown + fullName: Voile.Game.Shutdown diff --git a/Voile/api/Voile.IStartableSystem-1.yml b/Voile/api/Voile.IStartableSystem-1.yml new file mode 100644 index 0000000..0da1463 --- /dev/null +++ b/Voile/api/Voile.IStartableSystem-1.yml @@ -0,0 +1,93 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.IStartableSystem`1 + commentId: T:Voile.IStartableSystem`1 + id: IStartableSystem`1 + parent: Voile + children: + - Voile.IStartableSystem`1.Start(`0) + langs: + - csharp + - vb + name: IStartableSystem + nameWithType: IStartableSystem + fullName: Voile.IStartableSystem + type: Interface + source: + remote: + path: Voile/Source/Systems/ISystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IStartableSystem + path: Source/Systems/ISystem.cs + startLine: 11 + assemblies: + - Voile + namespace: Voile + summary: A system that accepts additional data for starting. + example: [] + syntax: + content: public interface IStartableSystem + typeParameters: + - id: T + description: '' + content.vb: Public Interface IStartableSystem(Of T) + nameWithType.vb: IStartableSystem(Of T) + fullName.vb: Voile.IStartableSystem(Of T) + name.vb: IStartableSystem(Of T) +- uid: Voile.IStartableSystem`1.Start(`0) + commentId: M:Voile.IStartableSystem`1.Start(`0) + id: Start(`0) + parent: Voile.IStartableSystem`1 + langs: + - csharp + - vb + name: Start(T) + nameWithType: IStartableSystem.Start(T) + fullName: Voile.IStartableSystem.Start(T) + type: Method + source: + remote: + path: Voile/Source/Systems/ISystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Start + path: Source/Systems/ISystem.cs + startLine: 13 + assemblies: + - Voile + namespace: Voile + syntax: + content: void Start(T configuration) + parameters: + - id: configuration + type: '{T}' + content.vb: Sub Start(configuration As T) + overload: Voile.IStartableSystem`1.Start* + nameWithType.vb: IStartableSystem(Of T).Start(T) + fullName.vb: Voile.IStartableSystem(Of T).Start(T) +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.IStartableSystem`1.Start* + commentId: Overload:Voile.IStartableSystem`1.Start + href: Voile.IStartableSystem-1.html#Voile_IStartableSystem_1_Start__0_ + name: Start + nameWithType: IStartableSystem.Start + fullName: Voile.IStartableSystem.Start + nameWithType.vb: IStartableSystem(Of T).Start + fullName.vb: Voile.IStartableSystem(Of T).Start +- uid: '{T}' + commentId: '!:T' + definition: T + name: T + nameWithType: T + fullName: T +- uid: T + name: T + nameWithType: T + fullName: T diff --git a/Voile/api/Voile.IStartableSystem.yml b/Voile/api/Voile.IStartableSystem.yml new file mode 100644 index 0000000..caf28ba --- /dev/null +++ b/Voile/api/Voile.IStartableSystem.yml @@ -0,0 +1,68 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.IStartableSystem + commentId: T:Voile.IStartableSystem + id: IStartableSystem + parent: Voile + children: + - Voile.IStartableSystem.Start + langs: + - csharp + - vb + name: IStartableSystem + nameWithType: IStartableSystem + fullName: Voile.IStartableSystem + type: Interface + source: + remote: + path: Voile/Source/Systems/ISystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IStartableSystem + path: Source/Systems/ISystem.cs + startLine: 2 + assemblies: + - Voile + namespace: Voile + syntax: + content: public interface IStartableSystem + content.vb: Public Interface IStartableSystem +- uid: Voile.IStartableSystem.Start + commentId: M:Voile.IStartableSystem.Start + id: Start + parent: Voile.IStartableSystem + langs: + - csharp + - vb + name: Start() + nameWithType: IStartableSystem.Start() + fullName: Voile.IStartableSystem.Start() + type: Method + source: + remote: + path: Voile/Source/Systems/ISystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Start + path: Source/Systems/ISystem.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile + syntax: + content: void Start() + content.vb: Sub Start() + overload: Voile.IStartableSystem.Start* +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.IStartableSystem.Start* + commentId: Overload:Voile.IStartableSystem.Start + href: Voile.IStartableSystem.html#Voile_IStartableSystem_Start + name: Start + nameWithType: IStartableSystem.Start + fullName: Voile.IStartableSystem.Start diff --git a/Voile/api/Voile.IUpdatableSystem.yml b/Voile/api/Voile.IUpdatableSystem.yml new file mode 100644 index 0000000..e133fa4 --- /dev/null +++ b/Voile/api/Voile.IUpdatableSystem.yml @@ -0,0 +1,92 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.IUpdatableSystem + commentId: T:Voile.IUpdatableSystem + id: IUpdatableSystem + parent: Voile + children: + - Voile.IUpdatableSystem.Update(System.Double) + langs: + - csharp + - vb + name: IUpdatableSystem + nameWithType: IUpdatableSystem + fullName: Voile.IUpdatableSystem + type: Interface + source: + remote: + path: Voile/Source/Systems/ISystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IUpdatableSystem + path: Source/Systems/ISystem.cs + startLine: 16 + assemblies: + - Voile + namespace: Voile + syntax: + content: public interface IUpdatableSystem + content.vb: Public Interface IUpdatableSystem +- uid: Voile.IUpdatableSystem.Update(System.Double) + commentId: M:Voile.IUpdatableSystem.Update(System.Double) + id: Update(System.Double) + parent: Voile.IUpdatableSystem + langs: + - csharp + - vb + name: Update(double) + nameWithType: IUpdatableSystem.Update(double) + fullName: Voile.IUpdatableSystem.Update(double) + type: Method + source: + remote: + path: Voile/Source/Systems/ISystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Update + path: Source/Systems/ISystem.cs + startLine: 18 + assemblies: + - Voile + namespace: Voile + syntax: + content: void Update(double deltaTime) + parameters: + - id: deltaTime + type: System.Double + content.vb: Sub Update(deltaTime As Double) + overload: Voile.IUpdatableSystem.Update* + nameWithType.vb: IUpdatableSystem.Update(Double) + fullName.vb: Voile.IUpdatableSystem.Update(Double) + name.vb: Update(Double) +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.IUpdatableSystem.Update* + commentId: Overload:Voile.IUpdatableSystem.Update + href: Voile.IUpdatableSystem.html#Voile_IUpdatableSystem_Update_System_Double_ + name: Update + nameWithType: IUpdatableSystem.Update + fullName: Voile.IUpdatableSystem.Update +- uid: System.Double + commentId: T:System.Double + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + name: double + nameWithType: double + fullName: double + nameWithType.vb: Double + fullName.vb: Double + name.vb: Double +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System diff --git a/Voile/api/Voile.Input.InputAction.yml b/Voile/api/Voile.Input.InputAction.yml new file mode 100644 index 0000000..8c0fee1 --- /dev/null +++ b/Voile/api/Voile.Input.InputAction.yml @@ -0,0 +1,432 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Input.InputAction + commentId: T:Voile.Input.InputAction + id: InputAction + parent: Voile.Input + children: + - Voile.Input.InputAction.IsDown(Voile.Input.InputSystem) + - Voile.Input.InputAction.IsPressed(Voile.Input.InputSystem) + - Voile.Input.InputAction.IsReleased(Voile.Input.InputSystem) + langs: + - csharp + - vb + name: InputAction + nameWithType: InputAction + fullName: Voile.Input.InputAction + type: Class + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: InputAction + path: Source/Input/InputAction.cs + startLine: 2 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract class InputAction + content.vb: Public MustInherit Class InputAction + inheritance: + - System.Object + derivedClasses: + - Voile.Input.KeyInputAction + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Input.InputAction.IsDown(Voile.Input.InputSystem) + commentId: M:Voile.Input.InputAction.IsDown(Voile.Input.InputSystem) + id: IsDown(Voile.Input.InputSystem) + parent: Voile.Input.InputAction + langs: + - csharp + - vb + name: IsDown(InputSystem) + nameWithType: InputAction.IsDown(InputSystem) + fullName: Voile.Input.InputAction.IsDown(Voile.Input.InputSystem) + type: Method + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsDown + path: Source/Input/InputAction.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract bool IsDown(InputSystem inputHandler) + parameters: + - id: inputHandler + type: Voile.Input.InputSystem + return: + type: System.Boolean + content.vb: Public MustOverride Function IsDown(inputHandler As InputSystem) As Boolean + overload: Voile.Input.InputAction.IsDown* +- uid: Voile.Input.InputAction.IsPressed(Voile.Input.InputSystem) + commentId: M:Voile.Input.InputAction.IsPressed(Voile.Input.InputSystem) + id: IsPressed(Voile.Input.InputSystem) + parent: Voile.Input.InputAction + langs: + - csharp + - vb + name: IsPressed(InputSystem) + nameWithType: InputAction.IsPressed(InputSystem) + fullName: Voile.Input.InputAction.IsPressed(Voile.Input.InputSystem) + type: Method + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsPressed + path: Source/Input/InputAction.cs + startLine: 5 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract bool IsPressed(InputSystem inputHandler) + parameters: + - id: inputHandler + type: Voile.Input.InputSystem + return: + type: System.Boolean + content.vb: Public MustOverride Function IsPressed(inputHandler As InputSystem) As Boolean + overload: Voile.Input.InputAction.IsPressed* +- uid: Voile.Input.InputAction.IsReleased(Voile.Input.InputSystem) + commentId: M:Voile.Input.InputAction.IsReleased(Voile.Input.InputSystem) + id: IsReleased(Voile.Input.InputSystem) + parent: Voile.Input.InputAction + langs: + - csharp + - vb + name: IsReleased(InputSystem) + nameWithType: InputAction.IsReleased(InputSystem) + fullName: Voile.Input.InputAction.IsReleased(Voile.Input.InputSystem) + type: Method + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsReleased + path: Source/Input/InputAction.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract bool IsReleased(InputSystem inputHandler) + parameters: + - id: inputHandler + type: Voile.Input.InputSystem + return: + type: System.Boolean + content.vb: Public MustOverride Function IsReleased(inputHandler As InputSystem) As Boolean + overload: Voile.Input.InputAction.IsReleased* +references: +- uid: Voile.Input + commentId: N:Voile.Input + href: Voile.html + name: Voile.Input + nameWithType: Voile.Input + fullName: Voile.Input + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Input.InputAction.IsDown* + commentId: Overload:Voile.Input.InputAction.IsDown + href: Voile.Input.InputAction.html#Voile_Input_InputAction_IsDown_Voile_Input_InputSystem_ + name: IsDown + nameWithType: InputAction.IsDown + fullName: Voile.Input.InputAction.IsDown +- uid: Voile.Input.InputSystem + commentId: T:Voile.Input.InputSystem + parent: Voile.Input + href: Voile.Input.InputSystem.html + name: InputSystem + nameWithType: InputSystem + fullName: Voile.Input.InputSystem +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: Voile.Input.InputAction.IsPressed* + commentId: Overload:Voile.Input.InputAction.IsPressed + href: Voile.Input.InputAction.html#Voile_Input_InputAction_IsPressed_Voile_Input_InputSystem_ + name: IsPressed + nameWithType: InputAction.IsPressed + fullName: Voile.Input.InputAction.IsPressed +- uid: Voile.Input.InputAction.IsReleased* + commentId: Overload:Voile.Input.InputAction.IsReleased + href: Voile.Input.InputAction.html#Voile_Input_InputAction_IsReleased_Voile_Input_InputSystem_ + name: IsReleased + nameWithType: InputAction.IsReleased + fullName: Voile.Input.InputAction.IsReleased diff --git a/Voile/api/Voile.Input.InputSystem.yml b/Voile/api/Voile.Input.InputSystem.yml new file mode 100644 index 0000000..4d74183 --- /dev/null +++ b/Voile/api/Voile.Input.InputSystem.yml @@ -0,0 +1,1678 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Input.InputSystem + commentId: T:Voile.Input.InputSystem + id: InputSystem + parent: Voile.Input + children: + - Voile.Input.InputSystem.AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}) + - Voile.Input.InputSystem.Dispose + - Voile.Input.InputSystem.GetCharPressed + - Voile.Input.InputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + - Voile.Input.InputSystem.GetInputDirection(Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey) + - Voile.Input.InputSystem.GetMousePosition + - Voile.Input.InputSystem.GetMouseWheelMovement + - Voile.Input.InputSystem.Handled + - Voile.Input.InputSystem.HideCursor + - Voile.Input.InputSystem.InputMappings + - Voile.Input.InputSystem.IsActionDown(System.String) + - Voile.Input.InputSystem.IsActionPressed(System.String) + - Voile.Input.InputSystem.IsActionReleased(System.String) + - Voile.Input.InputSystem.IsCursorHidden + - Voile.Input.InputSystem.IsKeyboardKeyDown(Voile.Input.KeyboardKey) + - Voile.Input.InputSystem.IsMouseButtonDown(Voile.Input.MouseButton) + - Voile.Input.InputSystem.KeyboardKeyJustPressed(Voile.Input.KeyboardKey) + - Voile.Input.InputSystem.KeyboardKeyJustReleased(Voile.Input.KeyboardKey) + - Voile.Input.InputSystem.SetAsHandled + - Voile.Input.InputSystem.SetMousePosition(System.Numerics.Vector2) + - Voile.Input.InputSystem.ShowCursor + - Voile.Input.InputSystem.Shutdown + - Voile.Input.InputSystem.Start + - Voile.Input.InputSystem.TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}@) + - Voile.Input.InputSystem.inputMappings + langs: + - csharp + - vb + name: InputSystem + nameWithType: InputSystem + fullName: Voile.Input.InputSystem + type: Class + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: InputSystem + path: Source/Input/InputSystem.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile.Input + summary: A system providing means for collecting user input, as well as defining custom list. + example: [] + syntax: + content: 'public abstract class InputSystem : IStartableSystem, IDisposable' + content.vb: Public MustInherit Class InputSystem Implements IStartableSystem, IDisposable + inheritance: + - System.Object + derivedClasses: + - Voile.Input.RaylibInputSystem + implements: + - Voile.IStartableSystem + - System.IDisposable + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Input.InputSystem.InputMappings + commentId: P:Voile.Input.InputSystem.InputMappings + id: InputMappings + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: InputMappings + nameWithType: InputSystem.InputMappings + fullName: Voile.Input.InputSystem.InputMappings + type: Property + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: InputMappings + path: Source/Input/InputSystem.cs + startLine: 14 + assemblies: + - Voile + namespace: Voile.Input + summary: The list of all available input mappings, custom and built-in. + example: [] + syntax: + content: public static IReadOnlyDictionary> InputMappings { get; } + parameters: [] + return: + type: System.Collections.Generic.IReadOnlyDictionary{System.String,System.Collections.Generic.List{Voile.Input.InputAction}} + content.vb: Public Shared ReadOnly Property InputMappings As IReadOnlyDictionary(Of String, List(Of InputAction)) + overload: Voile.Input.InputSystem.InputMappings* +- uid: Voile.Input.InputSystem.Start + commentId: M:Voile.Input.InputSystem.Start + id: Start + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: Start() + nameWithType: InputSystem.Start() + fullName: Voile.Input.InputSystem.Start() + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Start + path: Source/Input/InputSystem.cs + startLine: 16 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public void Start() + content.vb: Public Sub Start() + overload: Voile.Input.InputSystem.Start* + implements: + - Voile.IStartableSystem.Start +- uid: Voile.Input.InputSystem.Shutdown + commentId: M:Voile.Input.InputSystem.Shutdown + id: Shutdown + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: Shutdown() + nameWithType: InputSystem.Shutdown() + fullName: Voile.Input.InputSystem.Shutdown() + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Shutdown + path: Source/Input/InputSystem.cs + startLine: 22 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public void Shutdown() + content.vb: Public Sub Shutdown() + overload: Voile.Input.InputSystem.Shutdown* +- uid: Voile.Input.InputSystem.Dispose + commentId: M:Voile.Input.InputSystem.Dispose + id: Dispose + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: Dispose() + nameWithType: InputSystem.Dispose() + fullName: Voile.Input.InputSystem.Dispose() + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Dispose + path: Source/Input/InputSystem.cs + startLine: 24 + assemblies: + - Voile + namespace: Voile.Input + summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + example: [] + syntax: + content: public void Dispose() + content.vb: Public Sub Dispose() + overload: Voile.Input.InputSystem.Dispose* + implements: + - System.IDisposable.Dispose +- uid: Voile.Input.InputSystem.Handled + commentId: P:Voile.Input.InputSystem.Handled + id: Handled + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: Handled + nameWithType: InputSystem.Handled + fullName: Voile.Input.InputSystem.Handled + type: Property + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Handled + path: Source/Input/InputSystem.cs + startLine: 26 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public bool Handled { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property Handled As Boolean + overload: Voile.Input.InputSystem.Handled* +- uid: Voile.Input.InputSystem.IsKeyboardKeyDown(Voile.Input.KeyboardKey) + commentId: M:Voile.Input.InputSystem.IsKeyboardKeyDown(Voile.Input.KeyboardKey) + id: IsKeyboardKeyDown(Voile.Input.KeyboardKey) + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: IsKeyboardKeyDown(KeyboardKey) + nameWithType: InputSystem.IsKeyboardKeyDown(KeyboardKey) + fullName: Voile.Input.InputSystem.IsKeyboardKeyDown(Voile.Input.KeyboardKey) + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsKeyboardKeyDown + path: Source/Input/InputSystem.cs + startLine: 27 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract bool IsKeyboardKeyDown(KeyboardKey key) + parameters: + - id: key + type: Voile.Input.KeyboardKey + return: + type: System.Boolean + content.vb: Public MustOverride Function IsKeyboardKeyDown(key As KeyboardKey) As Boolean + overload: Voile.Input.InputSystem.IsKeyboardKeyDown* +- uid: Voile.Input.InputSystem.KeyboardKeyJustPressed(Voile.Input.KeyboardKey) + commentId: M:Voile.Input.InputSystem.KeyboardKeyJustPressed(Voile.Input.KeyboardKey) + id: KeyboardKeyJustPressed(Voile.Input.KeyboardKey) + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: KeyboardKeyJustPressed(KeyboardKey) + nameWithType: InputSystem.KeyboardKeyJustPressed(KeyboardKey) + fullName: Voile.Input.InputSystem.KeyboardKeyJustPressed(Voile.Input.KeyboardKey) + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KeyboardKeyJustPressed + path: Source/Input/InputSystem.cs + startLine: 28 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract bool KeyboardKeyJustPressed(KeyboardKey key) + parameters: + - id: key + type: Voile.Input.KeyboardKey + return: + type: System.Boolean + content.vb: Public MustOverride Function KeyboardKeyJustPressed(key As KeyboardKey) As Boolean + overload: Voile.Input.InputSystem.KeyboardKeyJustPressed* +- uid: Voile.Input.InputSystem.KeyboardKeyJustReleased(Voile.Input.KeyboardKey) + commentId: M:Voile.Input.InputSystem.KeyboardKeyJustReleased(Voile.Input.KeyboardKey) + id: KeyboardKeyJustReleased(Voile.Input.KeyboardKey) + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: KeyboardKeyJustReleased(KeyboardKey) + nameWithType: InputSystem.KeyboardKeyJustReleased(KeyboardKey) + fullName: Voile.Input.InputSystem.KeyboardKeyJustReleased(Voile.Input.KeyboardKey) + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KeyboardKeyJustReleased + path: Source/Input/InputSystem.cs + startLine: 29 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract bool KeyboardKeyJustReleased(KeyboardKey key) + parameters: + - id: key + type: Voile.Input.KeyboardKey + return: + type: System.Boolean + content.vb: Public MustOverride Function KeyboardKeyJustReleased(key As KeyboardKey) As Boolean + overload: Voile.Input.InputSystem.KeyboardKeyJustReleased* +- uid: Voile.Input.InputSystem.GetInputDirection(Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey) + commentId: M:Voile.Input.InputSystem.GetInputDirection(Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey) + id: GetInputDirection(Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey) + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: GetInputDirection(KeyboardKey, KeyboardKey, KeyboardKey, KeyboardKey) + nameWithType: InputSystem.GetInputDirection(KeyboardKey, KeyboardKey, KeyboardKey, KeyboardKey) + fullName: Voile.Input.InputSystem.GetInputDirection(Voile.Input.KeyboardKey, Voile.Input.KeyboardKey, Voile.Input.KeyboardKey, Voile.Input.KeyboardKey) + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetInputDirection + path: Source/Input/InputSystem.cs + startLine: 30 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract Vector2 GetInputDirection(KeyboardKey leftKey, KeyboardKey rightKey, KeyboardKey upKey, KeyboardKey downKey) + parameters: + - id: leftKey + type: Voile.Input.KeyboardKey + - id: rightKey + type: Voile.Input.KeyboardKey + - id: upKey + type: Voile.Input.KeyboardKey + - id: downKey + type: Voile.Input.KeyboardKey + return: + type: System.Numerics.Vector2 + content.vb: Public MustOverride Function GetInputDirection(leftKey As KeyboardKey, rightKey As KeyboardKey, upKey As KeyboardKey, downKey As KeyboardKey) As Vector2 + overload: Voile.Input.InputSystem.GetInputDirection* +- uid: Voile.Input.InputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + commentId: M:Voile.Input.InputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + id: GetInputDirection(System.String,System.String,System.String,System.String) + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: GetInputDirection(string, string, string, string) + nameWithType: InputSystem.GetInputDirection(string, string, string, string) + fullName: Voile.Input.InputSystem.GetInputDirection(string, string, string, string) + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetInputDirection + path: Source/Input/InputSystem.cs + startLine: 31 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract Vector2 GetInputDirection(string leftAction, string rightAction, string upAction, string downAction) + parameters: + - id: leftAction + type: System.String + - id: rightAction + type: System.String + - id: upAction + type: System.String + - id: downAction + type: System.String + return: + type: System.Numerics.Vector2 + content.vb: Public MustOverride Function GetInputDirection(leftAction As String, rightAction As String, upAction As String, downAction As String) As Vector2 + overload: Voile.Input.InputSystem.GetInputDirection* + nameWithType.vb: InputSystem.GetInputDirection(String, String, String, String) + fullName.vb: Voile.Input.InputSystem.GetInputDirection(String, String, String, String) + name.vb: GetInputDirection(String, String, String, String) +- uid: Voile.Input.InputSystem.GetCharPressed + commentId: M:Voile.Input.InputSystem.GetCharPressed + id: GetCharPressed + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: GetCharPressed() + nameWithType: InputSystem.GetCharPressed() + fullName: Voile.Input.InputSystem.GetCharPressed() + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetCharPressed + path: Source/Input/InputSystem.cs + startLine: 32 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract int GetCharPressed() + return: + type: System.Int32 + content.vb: Public MustOverride Function GetCharPressed() As Integer + overload: Voile.Input.InputSystem.GetCharPressed* +- uid: Voile.Input.InputSystem.IsActionDown(System.String) + commentId: M:Voile.Input.InputSystem.IsActionDown(System.String) + id: IsActionDown(System.String) + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: IsActionDown(string) + nameWithType: InputSystem.IsActionDown(string) + fullName: Voile.Input.InputSystem.IsActionDown(string) + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsActionDown + path: Source/Input/InputSystem.cs + startLine: 34 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract bool IsActionDown(string action) + parameters: + - id: action + type: System.String + return: + type: System.Boolean + content.vb: Public MustOverride Function IsActionDown(action As String) As Boolean + overload: Voile.Input.InputSystem.IsActionDown* + nameWithType.vb: InputSystem.IsActionDown(String) + fullName.vb: Voile.Input.InputSystem.IsActionDown(String) + name.vb: IsActionDown(String) +- uid: Voile.Input.InputSystem.IsActionPressed(System.String) + commentId: M:Voile.Input.InputSystem.IsActionPressed(System.String) + id: IsActionPressed(System.String) + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: IsActionPressed(string) + nameWithType: InputSystem.IsActionPressed(string) + fullName: Voile.Input.InputSystem.IsActionPressed(string) + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsActionPressed + path: Source/Input/InputSystem.cs + startLine: 35 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract bool IsActionPressed(string action) + parameters: + - id: action + type: System.String + return: + type: System.Boolean + content.vb: Public MustOverride Function IsActionPressed(action As String) As Boolean + overload: Voile.Input.InputSystem.IsActionPressed* + nameWithType.vb: InputSystem.IsActionPressed(String) + fullName.vb: Voile.Input.InputSystem.IsActionPressed(String) + name.vb: IsActionPressed(String) +- uid: Voile.Input.InputSystem.IsActionReleased(System.String) + commentId: M:Voile.Input.InputSystem.IsActionReleased(System.String) + id: IsActionReleased(System.String) + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: IsActionReleased(string) + nameWithType: InputSystem.IsActionReleased(string) + fullName: Voile.Input.InputSystem.IsActionReleased(string) + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsActionReleased + path: Source/Input/InputSystem.cs + startLine: 36 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract bool IsActionReleased(string action) + parameters: + - id: action + type: System.String + return: + type: System.Boolean + content.vb: Public MustOverride Function IsActionReleased(action As String) As Boolean + overload: Voile.Input.InputSystem.IsActionReleased* + nameWithType.vb: InputSystem.IsActionReleased(String) + fullName.vb: Voile.Input.InputSystem.IsActionReleased(String) + name.vb: IsActionReleased(String) +- uid: Voile.Input.InputSystem.IsMouseButtonDown(Voile.Input.MouseButton) + commentId: M:Voile.Input.InputSystem.IsMouseButtonDown(Voile.Input.MouseButton) + id: IsMouseButtonDown(Voile.Input.MouseButton) + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: IsMouseButtonDown(MouseButton) + nameWithType: InputSystem.IsMouseButtonDown(MouseButton) + fullName: Voile.Input.InputSystem.IsMouseButtonDown(Voile.Input.MouseButton) + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsMouseButtonDown + path: Source/Input/InputSystem.cs + startLine: 38 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract bool IsMouseButtonDown(MouseButton button) + parameters: + - id: button + type: Voile.Input.MouseButton + return: + type: System.Boolean + content.vb: Public MustOverride Function IsMouseButtonDown(button As MouseButton) As Boolean + overload: Voile.Input.InputSystem.IsMouseButtonDown* +- uid: Voile.Input.InputSystem.GetMouseWheelMovement + commentId: M:Voile.Input.InputSystem.GetMouseWheelMovement + id: GetMouseWheelMovement + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: GetMouseWheelMovement() + nameWithType: InputSystem.GetMouseWheelMovement() + fullName: Voile.Input.InputSystem.GetMouseWheelMovement() + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetMouseWheelMovement + path: Source/Input/InputSystem.cs + startLine: 39 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract float GetMouseWheelMovement() + return: + type: System.Single + content.vb: Public MustOverride Function GetMouseWheelMovement() As Single + overload: Voile.Input.InputSystem.GetMouseWheelMovement* +- uid: Voile.Input.InputSystem.SetMousePosition(System.Numerics.Vector2) + commentId: M:Voile.Input.InputSystem.SetMousePosition(System.Numerics.Vector2) + id: SetMousePosition(System.Numerics.Vector2) + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: SetMousePosition(Vector2) + nameWithType: InputSystem.SetMousePosition(Vector2) + fullName: Voile.Input.InputSystem.SetMousePosition(System.Numerics.Vector2) + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetMousePosition + path: Source/Input/InputSystem.cs + startLine: 40 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract void SetMousePosition(Vector2 position) + parameters: + - id: position + type: System.Numerics.Vector2 + content.vb: Public MustOverride Sub SetMousePosition(position As Vector2) + overload: Voile.Input.InputSystem.SetMousePosition* +- uid: Voile.Input.InputSystem.GetMousePosition + commentId: M:Voile.Input.InputSystem.GetMousePosition + id: GetMousePosition + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: GetMousePosition() + nameWithType: InputSystem.GetMousePosition() + fullName: Voile.Input.InputSystem.GetMousePosition() + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetMousePosition + path: Source/Input/InputSystem.cs + startLine: 41 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract Vector2 GetMousePosition() + return: + type: System.Numerics.Vector2 + content.vb: Public MustOverride Function GetMousePosition() As Vector2 + overload: Voile.Input.InputSystem.GetMousePosition* +- uid: Voile.Input.InputSystem.HideCursor + commentId: M:Voile.Input.InputSystem.HideCursor + id: HideCursor + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: HideCursor() + nameWithType: InputSystem.HideCursor() + fullName: Voile.Input.InputSystem.HideCursor() + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: HideCursor + path: Source/Input/InputSystem.cs + startLine: 42 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract void HideCursor() + content.vb: Public MustOverride Sub HideCursor() + overload: Voile.Input.InputSystem.HideCursor* +- uid: Voile.Input.InputSystem.ShowCursor + commentId: M:Voile.Input.InputSystem.ShowCursor + id: ShowCursor + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: ShowCursor() + nameWithType: InputSystem.ShowCursor() + fullName: Voile.Input.InputSystem.ShowCursor() + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ShowCursor + path: Source/Input/InputSystem.cs + startLine: 43 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract void ShowCursor() + content.vb: Public MustOverride Sub ShowCursor() + overload: Voile.Input.InputSystem.ShowCursor* +- uid: Voile.Input.InputSystem.IsCursorHidden + commentId: M:Voile.Input.InputSystem.IsCursorHidden + id: IsCursorHidden + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: IsCursorHidden() + nameWithType: InputSystem.IsCursorHidden() + fullName: Voile.Input.InputSystem.IsCursorHidden() + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsCursorHidden + path: Source/Input/InputSystem.cs + startLine: 44 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public abstract bool IsCursorHidden() + return: + type: System.Boolean + content.vb: Public MustOverride Function IsCursorHidden() As Boolean + overload: Voile.Input.InputSystem.IsCursorHidden* +- uid: Voile.Input.InputSystem.SetAsHandled + commentId: M:Voile.Input.InputSystem.SetAsHandled + id: SetAsHandled + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: SetAsHandled() + nameWithType: InputSystem.SetAsHandled() + fullName: Voile.Input.InputSystem.SetAsHandled() + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetAsHandled + path: Source/Input/InputSystem.cs + startLine: 46 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public void SetAsHandled() + content.vb: Public Sub SetAsHandled() + overload: Voile.Input.InputSystem.SetAsHandled* +- uid: Voile.Input.InputSystem.AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}) + commentId: M:Voile.Input.InputSystem.AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}) + id: AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}) + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: AddInputMapping(string, IEnumerable) + nameWithType: InputSystem.AddInputMapping(string, IEnumerable) + fullName: Voile.Input.InputSystem.AddInputMapping(string, System.Collections.Generic.IEnumerable) + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AddInputMapping + path: Source/Input/InputSystem.cs + startLine: 48 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public void AddInputMapping(string actionName, IEnumerable inputActions) + parameters: + - id: actionName + type: System.String + - id: inputActions + type: System.Collections.Generic.IEnumerable{Voile.Input.InputAction} + content.vb: Public Sub AddInputMapping(actionName As String, inputActions As IEnumerable(Of InputAction)) + overload: Voile.Input.InputSystem.AddInputMapping* + nameWithType.vb: InputSystem.AddInputMapping(String, IEnumerable(Of InputAction)) + fullName.vb: Voile.Input.InputSystem.AddInputMapping(String, System.Collections.Generic.IEnumerable(Of Voile.Input.InputAction)) + name.vb: AddInputMapping(String, IEnumerable(Of InputAction)) +- uid: Voile.Input.InputSystem.TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}@) + commentId: M:Voile.Input.InputSystem.TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}@) + id: TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}@) + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: TryGetInputMappings(string, out IEnumerable?) + nameWithType: InputSystem.TryGetInputMappings(string, out IEnumerable?) + fullName: Voile.Input.InputSystem.TryGetInputMappings(string, out System.Collections.Generic.IEnumerable?) + type: Method + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: TryGetInputMappings + path: Source/Input/InputSystem.cs + startLine: 73 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: protected bool TryGetInputMappings(string forAction, out IEnumerable? inputActions) + parameters: + - id: forAction + type: System.String + - id: inputActions + type: System.Collections.Generic.IEnumerable{Voile.Input.InputAction} + return: + type: System.Boolean + content.vb: Protected Function TryGetInputMappings(forAction As String, inputActions As IEnumerable(Of InputAction)) As Boolean + overload: Voile.Input.InputSystem.TryGetInputMappings* + nameWithType.vb: InputSystem.TryGetInputMappings(String, IEnumerable(Of InputAction)) + fullName.vb: Voile.Input.InputSystem.TryGetInputMappings(String, System.Collections.Generic.IEnumerable(Of Voile.Input.InputAction)) + name.vb: TryGetInputMappings(String, IEnumerable(Of InputAction)) +- uid: Voile.Input.InputSystem.inputMappings + commentId: F:Voile.Input.InputSystem.inputMappings + id: inputMappings + parent: Voile.Input.InputSystem + langs: + - csharp + - vb + name: inputMappings + nameWithType: InputSystem.inputMappings + fullName: Voile.Input.InputSystem.inputMappings + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: inputMappings + path: Source/Input/InputSystem.cs + startLine: 89 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: protected static Dictionary> inputMappings + return: + type: System.Collections.Generic.Dictionary{System.String,System.Collections.Generic.List{Voile.Input.InputAction}} + content.vb: Protected Shared inputMappings As Dictionary(Of String, List(Of InputAction)) +references: +- uid: Voile.Input.InputAction + commentId: T:Voile.Input.InputAction + parent: Voile.Input + href: Voile.Input.InputAction.html + name: InputAction + nameWithType: InputAction + fullName: Voile.Input.InputAction +- uid: Voile.Input + commentId: N:Voile.Input + href: Voile.html + name: Voile.Input + nameWithType: Voile.Input + fullName: Voile.Input + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.IStartableSystem + commentId: T:Voile.IStartableSystem + parent: Voile + href: Voile.IStartableSystem.html + name: IStartableSystem + nameWithType: IStartableSystem + fullName: Voile.IStartableSystem +- uid: System.IDisposable + commentId: T:System.IDisposable + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable + name: IDisposable + nameWithType: IDisposable + fullName: System.IDisposable +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.Input.InputSystem.InputMappings* + commentId: Overload:Voile.Input.InputSystem.InputMappings + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_InputMappings + name: InputMappings + nameWithType: InputSystem.InputMappings + fullName: Voile.Input.InputSystem.InputMappings +- uid: System.Collections.Generic.IReadOnlyDictionary{System.String,System.Collections.Generic.List{Voile.Input.InputAction}} + commentId: T:System.Collections.Generic.IReadOnlyDictionary{System.String,System.Collections.Generic.List{Voile.Input.InputAction}} + parent: System.Collections.Generic + definition: System.Collections.Generic.IReadOnlyDictionary`2 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 + name: IReadOnlyDictionary> + nameWithType: IReadOnlyDictionary> + fullName: System.Collections.Generic.IReadOnlyDictionary> + nameWithType.vb: IReadOnlyDictionary(Of String, List(Of InputAction)) + fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of String, System.Collections.Generic.List(Of Voile.Input.InputAction)) + name.vb: IReadOnlyDictionary(Of String, List(Of InputAction)) + spec.csharp: + - uid: System.Collections.Generic.IReadOnlyDictionary`2 + name: IReadOnlyDictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: Voile.Input.InputAction + name: InputAction + href: Voile.Input.InputAction.html + - name: '>' + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IReadOnlyDictionary`2 + name: IReadOnlyDictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: Voile.Input.InputAction + name: InputAction + href: Voile.Input.InputAction.html + - name: ) + - name: ) +- uid: System.Collections.Generic.IReadOnlyDictionary`2 + commentId: T:System.Collections.Generic.IReadOnlyDictionary`2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 + name: IReadOnlyDictionary + nameWithType: IReadOnlyDictionary + fullName: System.Collections.Generic.IReadOnlyDictionary + nameWithType.vb: IReadOnlyDictionary(Of TKey, TValue) + fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of TKey, TValue) + name.vb: IReadOnlyDictionary(Of TKey, TValue) + spec.csharp: + - uid: System.Collections.Generic.IReadOnlyDictionary`2 + name: IReadOnlyDictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 + - name: < + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IReadOnlyDictionary`2 + name: IReadOnlyDictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 + - name: ( + - name: Of + - name: " " + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: Voile.Input.InputSystem.Start* + commentId: Overload:Voile.Input.InputSystem.Start + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_Start + name: Start + nameWithType: InputSystem.Start + fullName: Voile.Input.InputSystem.Start +- uid: Voile.IStartableSystem.Start + commentId: M:Voile.IStartableSystem.Start + parent: Voile.IStartableSystem + href: Voile.IStartableSystem.html#Voile_IStartableSystem_Start + name: Start() + nameWithType: IStartableSystem.Start() + fullName: Voile.IStartableSystem.Start() + spec.csharp: + - uid: Voile.IStartableSystem.Start + name: Start + href: Voile.IStartableSystem.html#Voile_IStartableSystem_Start + - name: ( + - name: ) + spec.vb: + - uid: Voile.IStartableSystem.Start + name: Start + href: Voile.IStartableSystem.html#Voile_IStartableSystem_Start + - name: ( + - name: ) +- uid: Voile.Input.InputSystem.Shutdown* + commentId: Overload:Voile.Input.InputSystem.Shutdown + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_Shutdown + name: Shutdown + nameWithType: InputSystem.Shutdown + fullName: Voile.Input.InputSystem.Shutdown +- uid: Voile.Input.InputSystem.Dispose* + commentId: Overload:Voile.Input.InputSystem.Dispose + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_Dispose + name: Dispose + nameWithType: InputSystem.Dispose + fullName: Voile.Input.InputSystem.Dispose +- uid: System.IDisposable.Dispose + commentId: M:System.IDisposable.Dispose + parent: System.IDisposable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + name: Dispose() + nameWithType: IDisposable.Dispose() + fullName: System.IDisposable.Dispose() + spec.csharp: + - uid: System.IDisposable.Dispose + name: Dispose + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + - name: ( + - name: ) + spec.vb: + - uid: System.IDisposable.Dispose + name: Dispose + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + - name: ( + - name: ) +- uid: Voile.Input.InputSystem.Handled* + commentId: Overload:Voile.Input.InputSystem.Handled + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_Handled + name: Handled + nameWithType: InputSystem.Handled + fullName: Voile.Input.InputSystem.Handled +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: Voile.Input.InputSystem.IsKeyboardKeyDown* + commentId: Overload:Voile.Input.InputSystem.IsKeyboardKeyDown + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsKeyboardKeyDown_Voile_Input_KeyboardKey_ + name: IsKeyboardKeyDown + nameWithType: InputSystem.IsKeyboardKeyDown + fullName: Voile.Input.InputSystem.IsKeyboardKeyDown +- uid: Voile.Input.KeyboardKey + commentId: T:Voile.Input.KeyboardKey + parent: Voile.Input + href: Voile.Input.KeyboardKey.html + name: KeyboardKey + nameWithType: KeyboardKey + fullName: Voile.Input.KeyboardKey +- uid: Voile.Input.InputSystem.KeyboardKeyJustPressed* + commentId: Overload:Voile.Input.InputSystem.KeyboardKeyJustPressed + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_KeyboardKeyJustPressed_Voile_Input_KeyboardKey_ + name: KeyboardKeyJustPressed + nameWithType: InputSystem.KeyboardKeyJustPressed + fullName: Voile.Input.InputSystem.KeyboardKeyJustPressed +- uid: Voile.Input.InputSystem.KeyboardKeyJustReleased* + commentId: Overload:Voile.Input.InputSystem.KeyboardKeyJustReleased + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_KeyboardKeyJustReleased_Voile_Input_KeyboardKey_ + name: KeyboardKeyJustReleased + nameWithType: InputSystem.KeyboardKeyJustReleased + fullName: Voile.Input.InputSystem.KeyboardKeyJustReleased +- uid: Voile.Input.InputSystem.GetInputDirection* + commentId: Overload:Voile.Input.InputSystem.GetInputDirection + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetInputDirection_Voile_Input_KeyboardKey_Voile_Input_KeyboardKey_Voile_Input_KeyboardKey_Voile_Input_KeyboardKey_ + name: GetInputDirection + nameWithType: InputSystem.GetInputDirection + fullName: Voile.Input.InputSystem.GetInputDirection +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.Input.InputSystem.GetCharPressed* + commentId: Overload:Voile.Input.InputSystem.GetCharPressed + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetCharPressed + name: GetCharPressed + nameWithType: InputSystem.GetCharPressed + fullName: Voile.Input.InputSystem.GetCharPressed +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: Voile.Input.InputSystem.IsActionDown* + commentId: Overload:Voile.Input.InputSystem.IsActionDown + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsActionDown_System_String_ + name: IsActionDown + nameWithType: InputSystem.IsActionDown + fullName: Voile.Input.InputSystem.IsActionDown +- uid: Voile.Input.InputSystem.IsActionPressed* + commentId: Overload:Voile.Input.InputSystem.IsActionPressed + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsActionPressed_System_String_ + name: IsActionPressed + nameWithType: InputSystem.IsActionPressed + fullName: Voile.Input.InputSystem.IsActionPressed +- uid: Voile.Input.InputSystem.IsActionReleased* + commentId: Overload:Voile.Input.InputSystem.IsActionReleased + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsActionReleased_System_String_ + name: IsActionReleased + nameWithType: InputSystem.IsActionReleased + fullName: Voile.Input.InputSystem.IsActionReleased +- uid: Voile.Input.InputSystem.IsMouseButtonDown* + commentId: Overload:Voile.Input.InputSystem.IsMouseButtonDown + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsMouseButtonDown_Voile_Input_MouseButton_ + name: IsMouseButtonDown + nameWithType: InputSystem.IsMouseButtonDown + fullName: Voile.Input.InputSystem.IsMouseButtonDown +- uid: Voile.Input.MouseButton + commentId: T:Voile.Input.MouseButton + parent: Voile.Input + href: Voile.Input.MouseButton.html + name: MouseButton + nameWithType: MouseButton + fullName: Voile.Input.MouseButton +- uid: Voile.Input.InputSystem.GetMouseWheelMovement* + commentId: Overload:Voile.Input.InputSystem.GetMouseWheelMovement + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetMouseWheelMovement + name: GetMouseWheelMovement + nameWithType: InputSystem.GetMouseWheelMovement + fullName: Voile.Input.InputSystem.GetMouseWheelMovement +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: Voile.Input.InputSystem.SetMousePosition* + commentId: Overload:Voile.Input.InputSystem.SetMousePosition + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_SetMousePosition_System_Numerics_Vector2_ + name: SetMousePosition + nameWithType: InputSystem.SetMousePosition + fullName: Voile.Input.InputSystem.SetMousePosition +- uid: Voile.Input.InputSystem.GetMousePosition* + commentId: Overload:Voile.Input.InputSystem.GetMousePosition + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetMousePosition + name: GetMousePosition + nameWithType: InputSystem.GetMousePosition + fullName: Voile.Input.InputSystem.GetMousePosition +- uid: Voile.Input.InputSystem.HideCursor* + commentId: Overload:Voile.Input.InputSystem.HideCursor + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_HideCursor + name: HideCursor + nameWithType: InputSystem.HideCursor + fullName: Voile.Input.InputSystem.HideCursor +- uid: Voile.Input.InputSystem.ShowCursor* + commentId: Overload:Voile.Input.InputSystem.ShowCursor + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_ShowCursor + name: ShowCursor + nameWithType: InputSystem.ShowCursor + fullName: Voile.Input.InputSystem.ShowCursor +- uid: Voile.Input.InputSystem.IsCursorHidden* + commentId: Overload:Voile.Input.InputSystem.IsCursorHidden + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsCursorHidden + name: IsCursorHidden + nameWithType: InputSystem.IsCursorHidden + fullName: Voile.Input.InputSystem.IsCursorHidden +- uid: Voile.Input.InputSystem.SetAsHandled* + commentId: Overload:Voile.Input.InputSystem.SetAsHandled + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_SetAsHandled + name: SetAsHandled + nameWithType: InputSystem.SetAsHandled + fullName: Voile.Input.InputSystem.SetAsHandled +- uid: Voile.Input.InputSystem.AddInputMapping* + commentId: Overload:Voile.Input.InputSystem.AddInputMapping + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_AddInputMapping_System_String_System_Collections_Generic_IEnumerable_Voile_Input_InputAction__ + name: AddInputMapping + nameWithType: InputSystem.AddInputMapping + fullName: Voile.Input.InputSystem.AddInputMapping +- uid: System.Collections.Generic.IEnumerable{Voile.Input.InputAction} + commentId: T:System.Collections.Generic.IEnumerable{Voile.Input.InputAction} + parent: System.Collections.Generic + definition: System.Collections.Generic.IEnumerable`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + name: IEnumerable + nameWithType: IEnumerable + fullName: System.Collections.Generic.IEnumerable + nameWithType.vb: IEnumerable(Of InputAction) + fullName.vb: System.Collections.Generic.IEnumerable(Of Voile.Input.InputAction) + name.vb: IEnumerable(Of InputAction) + spec.csharp: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: < + - uid: Voile.Input.InputAction + name: InputAction + href: Voile.Input.InputAction.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: ( + - name: Of + - name: " " + - uid: Voile.Input.InputAction + name: InputAction + href: Voile.Input.InputAction.html + - name: ) +- uid: System.Collections.Generic.IEnumerable`1 + commentId: T:System.Collections.Generic.IEnumerable`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + name: IEnumerable + nameWithType: IEnumerable + fullName: System.Collections.Generic.IEnumerable + nameWithType.vb: IEnumerable(Of T) + fullName.vb: System.Collections.Generic.IEnumerable(Of T) + name.vb: IEnumerable(Of T) + spec.csharp: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: Voile.Input.InputSystem.TryGetInputMappings* + commentId: Overload:Voile.Input.InputSystem.TryGetInputMappings + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_TryGetInputMappings_System_String_System_Collections_Generic_IEnumerable_Voile_Input_InputAction___ + name: TryGetInputMappings + nameWithType: InputSystem.TryGetInputMappings + fullName: Voile.Input.InputSystem.TryGetInputMappings +- uid: System.Collections.Generic.Dictionary{System.String,System.Collections.Generic.List{Voile.Input.InputAction}} + commentId: T:System.Collections.Generic.Dictionary{System.String,System.Collections.Generic.List{Voile.Input.InputAction}} + parent: System.Collections.Generic + definition: System.Collections.Generic.Dictionary`2 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + name: Dictionary> + nameWithType: Dictionary> + fullName: System.Collections.Generic.Dictionary> + nameWithType.vb: Dictionary(Of String, List(Of InputAction)) + fullName.vb: System.Collections.Generic.Dictionary(Of String, System.Collections.Generic.List(Of Voile.Input.InputAction)) + name.vb: Dictionary(Of String, List(Of InputAction)) + spec.csharp: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: Voile.Input.InputAction + name: InputAction + href: Voile.Input.InputAction.html + - name: '>' + - name: '>' + spec.vb: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: Voile.Input.InputAction + name: InputAction + href: Voile.Input.InputAction.html + - name: ) + - name: ) +- uid: System.Collections.Generic.Dictionary`2 + commentId: T:System.Collections.Generic.Dictionary`2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + name: Dictionary + nameWithType: Dictionary + fullName: System.Collections.Generic.Dictionary + nameWithType.vb: Dictionary(Of TKey, TValue) + fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue) + name.vb: Dictionary(Of TKey, TValue) + spec.csharp: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: < + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: '>' + spec.vb: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: ( + - name: Of + - name: " " + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: ) diff --git a/Voile/api/Voile.Input.KeyInputAction.yml b/Voile/api/Voile.Input.KeyInputAction.yml new file mode 100644 index 0000000..eb6601f --- /dev/null +++ b/Voile/api/Voile.Input.KeyInputAction.yml @@ -0,0 +1,604 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Input.KeyInputAction + commentId: T:Voile.Input.KeyInputAction + id: KeyInputAction + parent: Voile.Input + children: + - Voile.Input.KeyInputAction.#ctor(Voile.Input.KeyboardKey) + - Voile.Input.KeyInputAction.IsDown(Voile.Input.InputSystem) + - Voile.Input.KeyInputAction.IsPressed(Voile.Input.InputSystem) + - Voile.Input.KeyInputAction.IsReleased(Voile.Input.InputSystem) + - Voile.Input.KeyInputAction.Key + langs: + - csharp + - vb + name: KeyInputAction + nameWithType: KeyInputAction + fullName: Voile.Input.KeyInputAction + type: Class + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KeyInputAction + path: Source/Input/InputAction.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: 'public class KeyInputAction : InputAction' + content.vb: Public Class KeyInputAction Inherits InputAction + inheritance: + - System.Object + - Voile.Input.InputAction + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Input.KeyInputAction.Key + commentId: P:Voile.Input.KeyInputAction.Key + id: Key + parent: Voile.Input.KeyInputAction + langs: + - csharp + - vb + name: Key + nameWithType: KeyInputAction.Key + fullName: Voile.Input.KeyInputAction.Key + type: Property + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Key + path: Source/Input/InputAction.cs + startLine: 11 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public KeyboardKey Key { get; } + parameters: [] + return: + type: Voile.Input.KeyboardKey + content.vb: Public ReadOnly Property Key As KeyboardKey + overload: Voile.Input.KeyInputAction.Key* +- uid: Voile.Input.KeyInputAction.#ctor(Voile.Input.KeyboardKey) + commentId: M:Voile.Input.KeyInputAction.#ctor(Voile.Input.KeyboardKey) + id: '#ctor(Voile.Input.KeyboardKey)' + parent: Voile.Input.KeyInputAction + langs: + - csharp + - vb + name: KeyInputAction(KeyboardKey) + nameWithType: KeyInputAction.KeyInputAction(KeyboardKey) + fullName: Voile.Input.KeyInputAction.KeyInputAction(Voile.Input.KeyboardKey) + type: Constructor + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/Input/InputAction.cs + startLine: 13 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public KeyInputAction(KeyboardKey keyboardKey) + parameters: + - id: keyboardKey + type: Voile.Input.KeyboardKey + content.vb: Public Sub New(keyboardKey As KeyboardKey) + overload: Voile.Input.KeyInputAction.#ctor* + nameWithType.vb: KeyInputAction.New(KeyboardKey) + fullName.vb: Voile.Input.KeyInputAction.New(Voile.Input.KeyboardKey) + name.vb: New(KeyboardKey) +- uid: Voile.Input.KeyInputAction.IsDown(Voile.Input.InputSystem) + commentId: M:Voile.Input.KeyInputAction.IsDown(Voile.Input.InputSystem) + id: IsDown(Voile.Input.InputSystem) + parent: Voile.Input.KeyInputAction + langs: + - csharp + - vb + name: IsDown(InputSystem) + nameWithType: KeyInputAction.IsDown(InputSystem) + fullName: Voile.Input.KeyInputAction.IsDown(Voile.Input.InputSystem) + type: Method + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsDown + path: Source/Input/InputAction.cs + startLine: 17 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override bool IsDown(InputSystem inputHandler) + parameters: + - id: inputHandler + type: Voile.Input.InputSystem + return: + type: System.Boolean + content.vb: Public Overrides Function IsDown(inputHandler As InputSystem) As Boolean + overridden: Voile.Input.InputAction.IsDown(Voile.Input.InputSystem) + overload: Voile.Input.KeyInputAction.IsDown* +- uid: Voile.Input.KeyInputAction.IsPressed(Voile.Input.InputSystem) + commentId: M:Voile.Input.KeyInputAction.IsPressed(Voile.Input.InputSystem) + id: IsPressed(Voile.Input.InputSystem) + parent: Voile.Input.KeyInputAction + langs: + - csharp + - vb + name: IsPressed(InputSystem) + nameWithType: KeyInputAction.IsPressed(InputSystem) + fullName: Voile.Input.KeyInputAction.IsPressed(Voile.Input.InputSystem) + type: Method + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsPressed + path: Source/Input/InputAction.cs + startLine: 22 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override bool IsPressed(InputSystem inputHandler) + parameters: + - id: inputHandler + type: Voile.Input.InputSystem + return: + type: System.Boolean + content.vb: Public Overrides Function IsPressed(inputHandler As InputSystem) As Boolean + overridden: Voile.Input.InputAction.IsPressed(Voile.Input.InputSystem) + overload: Voile.Input.KeyInputAction.IsPressed* +- uid: Voile.Input.KeyInputAction.IsReleased(Voile.Input.InputSystem) + commentId: M:Voile.Input.KeyInputAction.IsReleased(Voile.Input.InputSystem) + id: IsReleased(Voile.Input.InputSystem) + parent: Voile.Input.KeyInputAction + langs: + - csharp + - vb + name: IsReleased(InputSystem) + nameWithType: KeyInputAction.IsReleased(InputSystem) + fullName: Voile.Input.KeyInputAction.IsReleased(Voile.Input.InputSystem) + type: Method + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsReleased + path: Source/Input/InputAction.cs + startLine: 27 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override bool IsReleased(InputSystem inputHandler) + parameters: + - id: inputHandler + type: Voile.Input.InputSystem + return: + type: System.Boolean + content.vb: Public Overrides Function IsReleased(inputHandler As InputSystem) As Boolean + overridden: Voile.Input.InputAction.IsReleased(Voile.Input.InputSystem) + overload: Voile.Input.KeyInputAction.IsReleased* +references: +- uid: Voile.Input + commentId: N:Voile.Input + href: Voile.html + name: Voile.Input + nameWithType: Voile.Input + fullName: Voile.Input + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.Input.InputAction + commentId: T:Voile.Input.InputAction + parent: Voile.Input + href: Voile.Input.InputAction.html + name: InputAction + nameWithType: InputAction + fullName: Voile.Input.InputAction +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Input.KeyInputAction.Key* + commentId: Overload:Voile.Input.KeyInputAction.Key + href: Voile.Input.KeyInputAction.html#Voile_Input_KeyInputAction_Key + name: Key + nameWithType: KeyInputAction.Key + fullName: Voile.Input.KeyInputAction.Key +- uid: Voile.Input.KeyboardKey + commentId: T:Voile.Input.KeyboardKey + parent: Voile.Input + href: Voile.Input.KeyboardKey.html + name: KeyboardKey + nameWithType: KeyboardKey + fullName: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyInputAction.#ctor* + commentId: Overload:Voile.Input.KeyInputAction.#ctor + href: Voile.Input.KeyInputAction.html#Voile_Input_KeyInputAction__ctor_Voile_Input_KeyboardKey_ + name: KeyInputAction + nameWithType: KeyInputAction.KeyInputAction + fullName: Voile.Input.KeyInputAction.KeyInputAction + nameWithType.vb: KeyInputAction.New + fullName.vb: Voile.Input.KeyInputAction.New + name.vb: New +- uid: Voile.Input.InputAction.IsDown(Voile.Input.InputSystem) + commentId: M:Voile.Input.InputAction.IsDown(Voile.Input.InputSystem) + parent: Voile.Input.InputAction + href: Voile.Input.InputAction.html#Voile_Input_InputAction_IsDown_Voile_Input_InputSystem_ + name: IsDown(InputSystem) + nameWithType: InputAction.IsDown(InputSystem) + fullName: Voile.Input.InputAction.IsDown(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.Input.InputAction.IsDown(Voile.Input.InputSystem) + name: IsDown + href: Voile.Input.InputAction.html#Voile_Input_InputAction_IsDown_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.Input.InputAction.IsDown(Voile.Input.InputSystem) + name: IsDown + href: Voile.Input.InputAction.html#Voile_Input_InputAction_IsDown_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.Input.KeyInputAction.IsDown* + commentId: Overload:Voile.Input.KeyInputAction.IsDown + href: Voile.Input.KeyInputAction.html#Voile_Input_KeyInputAction_IsDown_Voile_Input_InputSystem_ + name: IsDown + nameWithType: KeyInputAction.IsDown + fullName: Voile.Input.KeyInputAction.IsDown +- uid: Voile.Input.InputSystem + commentId: T:Voile.Input.InputSystem + parent: Voile.Input + href: Voile.Input.InputSystem.html + name: InputSystem + nameWithType: InputSystem + fullName: Voile.Input.InputSystem +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: Voile.Input.InputAction.IsPressed(Voile.Input.InputSystem) + commentId: M:Voile.Input.InputAction.IsPressed(Voile.Input.InputSystem) + parent: Voile.Input.InputAction + href: Voile.Input.InputAction.html#Voile_Input_InputAction_IsPressed_Voile_Input_InputSystem_ + name: IsPressed(InputSystem) + nameWithType: InputAction.IsPressed(InputSystem) + fullName: Voile.Input.InputAction.IsPressed(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.Input.InputAction.IsPressed(Voile.Input.InputSystem) + name: IsPressed + href: Voile.Input.InputAction.html#Voile_Input_InputAction_IsPressed_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.Input.InputAction.IsPressed(Voile.Input.InputSystem) + name: IsPressed + href: Voile.Input.InputAction.html#Voile_Input_InputAction_IsPressed_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.Input.KeyInputAction.IsPressed* + commentId: Overload:Voile.Input.KeyInputAction.IsPressed + href: Voile.Input.KeyInputAction.html#Voile_Input_KeyInputAction_IsPressed_Voile_Input_InputSystem_ + name: IsPressed + nameWithType: KeyInputAction.IsPressed + fullName: Voile.Input.KeyInputAction.IsPressed +- uid: Voile.Input.InputAction.IsReleased(Voile.Input.InputSystem) + commentId: M:Voile.Input.InputAction.IsReleased(Voile.Input.InputSystem) + parent: Voile.Input.InputAction + href: Voile.Input.InputAction.html#Voile_Input_InputAction_IsReleased_Voile_Input_InputSystem_ + name: IsReleased(InputSystem) + nameWithType: InputAction.IsReleased(InputSystem) + fullName: Voile.Input.InputAction.IsReleased(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.Input.InputAction.IsReleased(Voile.Input.InputSystem) + name: IsReleased + href: Voile.Input.InputAction.html#Voile_Input_InputAction_IsReleased_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.Input.InputAction.IsReleased(Voile.Input.InputSystem) + name: IsReleased + href: Voile.Input.InputAction.html#Voile_Input_InputAction_IsReleased_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.Input.KeyInputAction.IsReleased* + commentId: Overload:Voile.Input.KeyInputAction.IsReleased + href: Voile.Input.KeyInputAction.html#Voile_Input_KeyInputAction_IsReleased_Voile_Input_InputSystem_ + name: IsReleased + nameWithType: KeyInputAction.IsReleased + fullName: Voile.Input.KeyInputAction.IsReleased diff --git a/Voile/api/Voile.Input.KeyboardKey.yml b/Voile/api/Voile.Input.KeyboardKey.yml new file mode 100644 index 0000000..6864e19 --- /dev/null +++ b/Voile/api/Voile.Input.KeyboardKey.yml @@ -0,0 +1,3028 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Input.KeyboardKey + commentId: T:Voile.Input.KeyboardKey + id: KeyboardKey + parent: Voile.Input + children: + - Voile.Input.KeyboardKey.A + - Voile.Input.KeyboardKey.Apostrophe + - Voile.Input.KeyboardKey.B + - Voile.Input.KeyboardKey.Back + - Voile.Input.KeyboardKey.Backslash + - Voile.Input.KeyboardKey.Backspace + - Voile.Input.KeyboardKey.C + - Voile.Input.KeyboardKey.CapsLock + - Voile.Input.KeyboardKey.Comma + - Voile.Input.KeyboardKey.D + - Voile.Input.KeyboardKey.Delete + - Voile.Input.KeyboardKey.Down + - Voile.Input.KeyboardKey.E + - Voile.Input.KeyboardKey.Eight + - Voile.Input.KeyboardKey.End + - Voile.Input.KeyboardKey.Enter + - Voile.Input.KeyboardKey.Equal + - Voile.Input.KeyboardKey.Escape + - Voile.Input.KeyboardKey.F + - Voile.Input.KeyboardKey.F1 + - Voile.Input.KeyboardKey.F10 + - Voile.Input.KeyboardKey.F11 + - Voile.Input.KeyboardKey.F12 + - Voile.Input.KeyboardKey.F2 + - Voile.Input.KeyboardKey.F3 + - Voile.Input.KeyboardKey.F4 + - Voile.Input.KeyboardKey.F5 + - Voile.Input.KeyboardKey.F6 + - Voile.Input.KeyboardKey.F7 + - Voile.Input.KeyboardKey.F8 + - Voile.Input.KeyboardKey.F9 + - Voile.Input.KeyboardKey.Five + - Voile.Input.KeyboardKey.Four + - Voile.Input.KeyboardKey.G + - Voile.Input.KeyboardKey.Grave + - Voile.Input.KeyboardKey.H + - Voile.Input.KeyboardKey.Home + - Voile.Input.KeyboardKey.I + - Voile.Input.KeyboardKey.Insert + - Voile.Input.KeyboardKey.J + - Voile.Input.KeyboardKey.K + - Voile.Input.KeyboardKey.KBMenu + - Voile.Input.KeyboardKey.KP0 + - Voile.Input.KeyboardKey.KP1 + - Voile.Input.KeyboardKey.KP2 + - Voile.Input.KeyboardKey.KP3 + - Voile.Input.KeyboardKey.KP4 + - Voile.Input.KeyboardKey.KP5 + - Voile.Input.KeyboardKey.KP6 + - Voile.Input.KeyboardKey.KP7 + - Voile.Input.KeyboardKey.KP8 + - Voile.Input.KeyboardKey.KP9 + - Voile.Input.KeyboardKey.KPAdd + - Voile.Input.KeyboardKey.KPDecimal + - Voile.Input.KeyboardKey.KPDivide + - Voile.Input.KeyboardKey.KPEnter + - Voile.Input.KeyboardKey.KPEqual + - Voile.Input.KeyboardKey.KPMultiply + - Voile.Input.KeyboardKey.KPSubstract + - Voile.Input.KeyboardKey.L + - Voile.Input.KeyboardKey.Left + - Voile.Input.KeyboardKey.LeftAlt + - Voile.Input.KeyboardKey.LeftBracket + - Voile.Input.KeyboardKey.LeftControl + - Voile.Input.KeyboardKey.LeftShift + - Voile.Input.KeyboardKey.LeftSuper + - Voile.Input.KeyboardKey.M + - Voile.Input.KeyboardKey.Menu + - Voile.Input.KeyboardKey.Minus + - Voile.Input.KeyboardKey.N + - Voile.Input.KeyboardKey.Nine + - Voile.Input.KeyboardKey.Null + - Voile.Input.KeyboardKey.NumLock + - Voile.Input.KeyboardKey.O + - Voile.Input.KeyboardKey.One + - Voile.Input.KeyboardKey.P + - Voile.Input.KeyboardKey.PageDown + - Voile.Input.KeyboardKey.PageUp + - Voile.Input.KeyboardKey.Pause + - Voile.Input.KeyboardKey.Period + - Voile.Input.KeyboardKey.PrintScreen + - Voile.Input.KeyboardKey.Q + - Voile.Input.KeyboardKey.R + - Voile.Input.KeyboardKey.Right + - Voile.Input.KeyboardKey.RightAlt + - Voile.Input.KeyboardKey.RightBracket + - Voile.Input.KeyboardKey.RightControl + - Voile.Input.KeyboardKey.RightShift + - Voile.Input.KeyboardKey.RightSuper + - Voile.Input.KeyboardKey.S + - Voile.Input.KeyboardKey.ScrollLock + - Voile.Input.KeyboardKey.Semicolon + - Voile.Input.KeyboardKey.Seven + - Voile.Input.KeyboardKey.Six + - Voile.Input.KeyboardKey.Slash + - Voile.Input.KeyboardKey.Spacebar + - Voile.Input.KeyboardKey.T + - Voile.Input.KeyboardKey.Tab + - Voile.Input.KeyboardKey.Three + - Voile.Input.KeyboardKey.Two + - Voile.Input.KeyboardKey.U + - Voile.Input.KeyboardKey.Up + - Voile.Input.KeyboardKey.V + - Voile.Input.KeyboardKey.VolumeDown + - Voile.Input.KeyboardKey.VolumeUp + - Voile.Input.KeyboardKey.W + - Voile.Input.KeyboardKey.X + - Voile.Input.KeyboardKey.Y + - Voile.Input.KeyboardKey.Z + - Voile.Input.KeyboardKey.Zero + langs: + - csharp + - vb + name: KeyboardKey + nameWithType: KeyboardKey + fullName: Voile.Input.KeyboardKey + type: Enum + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KeyboardKey + path: Source/Input/InputSystem.cs + startLine: 94 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: public enum KeyboardKey + content.vb: Public Enum KeyboardKey +- uid: Voile.Input.KeyboardKey.Null + commentId: F:Voile.Input.KeyboardKey.Null + id: "Null" + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: "Null" + nameWithType: KeyboardKey.Null + fullName: Voile.Input.KeyboardKey.Null + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: "Null" + path: Source/Input/InputSystem.cs + startLine: 96 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Null = 0 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Back + commentId: F:Voile.Input.KeyboardKey.Back + id: Back + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Back + nameWithType: KeyboardKey.Back + fullName: Voile.Input.KeyboardKey.Back + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Back + path: Source/Input/InputSystem.cs + startLine: 97 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Back = 4 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.VolumeUp + commentId: F:Voile.Input.KeyboardKey.VolumeUp + id: VolumeUp + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: VolumeUp + nameWithType: KeyboardKey.VolumeUp + fullName: Voile.Input.KeyboardKey.VolumeUp + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: VolumeUp + path: Source/Input/InputSystem.cs + startLine: 98 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: VolumeUp = 24 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.VolumeDown + commentId: F:Voile.Input.KeyboardKey.VolumeDown + id: VolumeDown + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: VolumeDown + nameWithType: KeyboardKey.VolumeDown + fullName: Voile.Input.KeyboardKey.VolumeDown + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: VolumeDown + path: Source/Input/InputSystem.cs + startLine: 99 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: VolumeDown = 25 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Spacebar + commentId: F:Voile.Input.KeyboardKey.Spacebar + id: Spacebar + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Spacebar + nameWithType: KeyboardKey.Spacebar + fullName: Voile.Input.KeyboardKey.Spacebar + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Spacebar + path: Source/Input/InputSystem.cs + startLine: 100 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Spacebar = 32 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Apostrophe + commentId: F:Voile.Input.KeyboardKey.Apostrophe + id: Apostrophe + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Apostrophe + nameWithType: KeyboardKey.Apostrophe + fullName: Voile.Input.KeyboardKey.Apostrophe + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Apostrophe + path: Source/Input/InputSystem.cs + startLine: 101 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Apostrophe = 39 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Comma + commentId: F:Voile.Input.KeyboardKey.Comma + id: Comma + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Comma + nameWithType: KeyboardKey.Comma + fullName: Voile.Input.KeyboardKey.Comma + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Comma + path: Source/Input/InputSystem.cs + startLine: 102 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Comma = 44 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Minus + commentId: F:Voile.Input.KeyboardKey.Minus + id: Minus + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Minus + nameWithType: KeyboardKey.Minus + fullName: Voile.Input.KeyboardKey.Minus + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Minus + path: Source/Input/InputSystem.cs + startLine: 103 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Minus = 45 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Period + commentId: F:Voile.Input.KeyboardKey.Period + id: Period + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Period + nameWithType: KeyboardKey.Period + fullName: Voile.Input.KeyboardKey.Period + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Period + path: Source/Input/InputSystem.cs + startLine: 104 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Period = 46 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Slash + commentId: F:Voile.Input.KeyboardKey.Slash + id: Slash + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Slash + nameWithType: KeyboardKey.Slash + fullName: Voile.Input.KeyboardKey.Slash + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Slash + path: Source/Input/InputSystem.cs + startLine: 105 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Slash = 47 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Zero + commentId: F:Voile.Input.KeyboardKey.Zero + id: Zero + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Zero + nameWithType: KeyboardKey.Zero + fullName: Voile.Input.KeyboardKey.Zero + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Zero + path: Source/Input/InputSystem.cs + startLine: 106 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Zero = 48 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.One + commentId: F:Voile.Input.KeyboardKey.One + id: One + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: One + nameWithType: KeyboardKey.One + fullName: Voile.Input.KeyboardKey.One + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: One + path: Source/Input/InputSystem.cs + startLine: 107 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: One = 49 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Two + commentId: F:Voile.Input.KeyboardKey.Two + id: Two + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Two + nameWithType: KeyboardKey.Two + fullName: Voile.Input.KeyboardKey.Two + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Two + path: Source/Input/InputSystem.cs + startLine: 108 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Two = 50 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Three + commentId: F:Voile.Input.KeyboardKey.Three + id: Three + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Three + nameWithType: KeyboardKey.Three + fullName: Voile.Input.KeyboardKey.Three + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Three + path: Source/Input/InputSystem.cs + startLine: 109 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Three = 51 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Four + commentId: F:Voile.Input.KeyboardKey.Four + id: Four + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Four + nameWithType: KeyboardKey.Four + fullName: Voile.Input.KeyboardKey.Four + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Four + path: Source/Input/InputSystem.cs + startLine: 110 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Four = 52 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Five + commentId: F:Voile.Input.KeyboardKey.Five + id: Five + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Five + nameWithType: KeyboardKey.Five + fullName: Voile.Input.KeyboardKey.Five + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Five + path: Source/Input/InputSystem.cs + startLine: 111 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Five = 53 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Six + commentId: F:Voile.Input.KeyboardKey.Six + id: Six + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Six + nameWithType: KeyboardKey.Six + fullName: Voile.Input.KeyboardKey.Six + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Six + path: Source/Input/InputSystem.cs + startLine: 112 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Six = 54 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Seven + commentId: F:Voile.Input.KeyboardKey.Seven + id: Seven + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Seven + nameWithType: KeyboardKey.Seven + fullName: Voile.Input.KeyboardKey.Seven + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Seven + path: Source/Input/InputSystem.cs + startLine: 113 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Seven = 55 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Eight + commentId: F:Voile.Input.KeyboardKey.Eight + id: Eight + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Eight + nameWithType: KeyboardKey.Eight + fullName: Voile.Input.KeyboardKey.Eight + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Eight + path: Source/Input/InputSystem.cs + startLine: 114 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Eight = 56 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Nine + commentId: F:Voile.Input.KeyboardKey.Nine + id: Nine + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Nine + nameWithType: KeyboardKey.Nine + fullName: Voile.Input.KeyboardKey.Nine + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Nine + path: Source/Input/InputSystem.cs + startLine: 115 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Nine = 57 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Semicolon + commentId: F:Voile.Input.KeyboardKey.Semicolon + id: Semicolon + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Semicolon + nameWithType: KeyboardKey.Semicolon + fullName: Voile.Input.KeyboardKey.Semicolon + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Semicolon + path: Source/Input/InputSystem.cs + startLine: 116 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Semicolon = 59 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Equal + commentId: F:Voile.Input.KeyboardKey.Equal + id: Equal + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Equal + nameWithType: KeyboardKey.Equal + fullName: Voile.Input.KeyboardKey.Equal + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Equal + path: Source/Input/InputSystem.cs + startLine: 117 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Equal = 61 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.A + commentId: F:Voile.Input.KeyboardKey.A + id: A + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: A + nameWithType: KeyboardKey.A + fullName: Voile.Input.KeyboardKey.A + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: A + path: Source/Input/InputSystem.cs + startLine: 118 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: A = 65 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.B + commentId: F:Voile.Input.KeyboardKey.B + id: B + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: B + nameWithType: KeyboardKey.B + fullName: Voile.Input.KeyboardKey.B + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: B + path: Source/Input/InputSystem.cs + startLine: 119 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: B = 66 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.C + commentId: F:Voile.Input.KeyboardKey.C + id: C + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: C + nameWithType: KeyboardKey.C + fullName: Voile.Input.KeyboardKey.C + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: C + path: Source/Input/InputSystem.cs + startLine: 120 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: C = 67 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.D + commentId: F:Voile.Input.KeyboardKey.D + id: D + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: D + nameWithType: KeyboardKey.D + fullName: Voile.Input.KeyboardKey.D + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: D + path: Source/Input/InputSystem.cs + startLine: 121 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: D = 68 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.E + commentId: F:Voile.Input.KeyboardKey.E + id: E + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: E + nameWithType: KeyboardKey.E + fullName: Voile.Input.KeyboardKey.E + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: E + path: Source/Input/InputSystem.cs + startLine: 122 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: E = 69 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.F + commentId: F:Voile.Input.KeyboardKey.F + id: F + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: F + nameWithType: KeyboardKey.F + fullName: Voile.Input.KeyboardKey.F + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F + path: Source/Input/InputSystem.cs + startLine: 123 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: F = 70 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.G + commentId: F:Voile.Input.KeyboardKey.G + id: G + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: G + nameWithType: KeyboardKey.G + fullName: Voile.Input.KeyboardKey.G + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: G + path: Source/Input/InputSystem.cs + startLine: 124 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: G = 71 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.H + commentId: F:Voile.Input.KeyboardKey.H + id: H + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: H + nameWithType: KeyboardKey.H + fullName: Voile.Input.KeyboardKey.H + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: H + path: Source/Input/InputSystem.cs + startLine: 125 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: H = 72 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.I + commentId: F:Voile.Input.KeyboardKey.I + id: I + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: I + nameWithType: KeyboardKey.I + fullName: Voile.Input.KeyboardKey.I + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: I + path: Source/Input/InputSystem.cs + startLine: 126 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: I = 73 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.J + commentId: F:Voile.Input.KeyboardKey.J + id: J + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: J + nameWithType: KeyboardKey.J + fullName: Voile.Input.KeyboardKey.J + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: J + path: Source/Input/InputSystem.cs + startLine: 127 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: J = 74 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.K + commentId: F:Voile.Input.KeyboardKey.K + id: K + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: K + nameWithType: KeyboardKey.K + fullName: Voile.Input.KeyboardKey.K + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: K + path: Source/Input/InputSystem.cs + startLine: 128 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: K = 75 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.L + commentId: F:Voile.Input.KeyboardKey.L + id: L + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: L + nameWithType: KeyboardKey.L + fullName: Voile.Input.KeyboardKey.L + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: L + path: Source/Input/InputSystem.cs + startLine: 129 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: L = 76 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.M + commentId: F:Voile.Input.KeyboardKey.M + id: M + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: M + nameWithType: KeyboardKey.M + fullName: Voile.Input.KeyboardKey.M + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: M + path: Source/Input/InputSystem.cs + startLine: 130 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: M = 77 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.N + commentId: F:Voile.Input.KeyboardKey.N + id: N + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: N + nameWithType: KeyboardKey.N + fullName: Voile.Input.KeyboardKey.N + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: N + path: Source/Input/InputSystem.cs + startLine: 131 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: N = 78 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.O + commentId: F:Voile.Input.KeyboardKey.O + id: O + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: O + nameWithType: KeyboardKey.O + fullName: Voile.Input.KeyboardKey.O + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: O + path: Source/Input/InputSystem.cs + startLine: 132 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: O = 79 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.P + commentId: F:Voile.Input.KeyboardKey.P + id: P + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: P + nameWithType: KeyboardKey.P + fullName: Voile.Input.KeyboardKey.P + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: P + path: Source/Input/InputSystem.cs + startLine: 133 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: P = 80 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Q + commentId: F:Voile.Input.KeyboardKey.Q + id: Q + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Q + nameWithType: KeyboardKey.Q + fullName: Voile.Input.KeyboardKey.Q + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Q + path: Source/Input/InputSystem.cs + startLine: 134 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Q = 81 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.R + commentId: F:Voile.Input.KeyboardKey.R + id: R + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: R + nameWithType: KeyboardKey.R + fullName: Voile.Input.KeyboardKey.R + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: R + path: Source/Input/InputSystem.cs + startLine: 135 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: R = 82 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Menu + commentId: F:Voile.Input.KeyboardKey.Menu + id: Menu + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Menu + nameWithType: KeyboardKey.Menu + fullName: Voile.Input.KeyboardKey.Menu + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Menu + path: Source/Input/InputSystem.cs + startLine: 136 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Menu = 82 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.S + commentId: F:Voile.Input.KeyboardKey.S + id: S + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: S + nameWithType: KeyboardKey.S + fullName: Voile.Input.KeyboardKey.S + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: S + path: Source/Input/InputSystem.cs + startLine: 137 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: S = 83 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.T + commentId: F:Voile.Input.KeyboardKey.T + id: T + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: T + nameWithType: KeyboardKey.T + fullName: Voile.Input.KeyboardKey.T + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: T + path: Source/Input/InputSystem.cs + startLine: 138 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: T = 84 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.U + commentId: F:Voile.Input.KeyboardKey.U + id: U + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: U + nameWithType: KeyboardKey.U + fullName: Voile.Input.KeyboardKey.U + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: U + path: Source/Input/InputSystem.cs + startLine: 139 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: U = 85 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.V + commentId: F:Voile.Input.KeyboardKey.V + id: V + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: V + nameWithType: KeyboardKey.V + fullName: Voile.Input.KeyboardKey.V + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: V + path: Source/Input/InputSystem.cs + startLine: 140 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: V = 86 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.W + commentId: F:Voile.Input.KeyboardKey.W + id: W + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: W + nameWithType: KeyboardKey.W + fullName: Voile.Input.KeyboardKey.W + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: W + path: Source/Input/InputSystem.cs + startLine: 141 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: W = 87 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.X + commentId: F:Voile.Input.KeyboardKey.X + id: X + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: X + nameWithType: KeyboardKey.X + fullName: Voile.Input.KeyboardKey.X + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: X + path: Source/Input/InputSystem.cs + startLine: 142 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: X = 88 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Y + commentId: F:Voile.Input.KeyboardKey.Y + id: Y + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Y + nameWithType: KeyboardKey.Y + fullName: Voile.Input.KeyboardKey.Y + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Y + path: Source/Input/InputSystem.cs + startLine: 143 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Y = 89 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Z + commentId: F:Voile.Input.KeyboardKey.Z + id: Z + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Z + nameWithType: KeyboardKey.Z + fullName: Voile.Input.KeyboardKey.Z + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Z + path: Source/Input/InputSystem.cs + startLine: 144 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Z = 90 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.LeftBracket + commentId: F:Voile.Input.KeyboardKey.LeftBracket + id: LeftBracket + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: LeftBracket + nameWithType: KeyboardKey.LeftBracket + fullName: Voile.Input.KeyboardKey.LeftBracket + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LeftBracket + path: Source/Input/InputSystem.cs + startLine: 145 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: LeftBracket = 91 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Backslash + commentId: F:Voile.Input.KeyboardKey.Backslash + id: Backslash + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Backslash + nameWithType: KeyboardKey.Backslash + fullName: Voile.Input.KeyboardKey.Backslash + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Backslash + path: Source/Input/InputSystem.cs + startLine: 146 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Backslash = 92 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.RightBracket + commentId: F:Voile.Input.KeyboardKey.RightBracket + id: RightBracket + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: RightBracket + nameWithType: KeyboardKey.RightBracket + fullName: Voile.Input.KeyboardKey.RightBracket + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RightBracket + path: Source/Input/InputSystem.cs + startLine: 147 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: RightBracket = 93 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Grave + commentId: F:Voile.Input.KeyboardKey.Grave + id: Grave + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Grave + nameWithType: KeyboardKey.Grave + fullName: Voile.Input.KeyboardKey.Grave + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Grave + path: Source/Input/InputSystem.cs + startLine: 148 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Grave = 96 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Escape + commentId: F:Voile.Input.KeyboardKey.Escape + id: Escape + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Escape + nameWithType: KeyboardKey.Escape + fullName: Voile.Input.KeyboardKey.Escape + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Escape + path: Source/Input/InputSystem.cs + startLine: 149 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Escape = 256 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Enter + commentId: F:Voile.Input.KeyboardKey.Enter + id: Enter + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Enter + nameWithType: KeyboardKey.Enter + fullName: Voile.Input.KeyboardKey.Enter + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Enter + path: Source/Input/InputSystem.cs + startLine: 150 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Enter = 257 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Tab + commentId: F:Voile.Input.KeyboardKey.Tab + id: Tab + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Tab + nameWithType: KeyboardKey.Tab + fullName: Voile.Input.KeyboardKey.Tab + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Tab + path: Source/Input/InputSystem.cs + startLine: 151 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Tab = 258 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Backspace + commentId: F:Voile.Input.KeyboardKey.Backspace + id: Backspace + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Backspace + nameWithType: KeyboardKey.Backspace + fullName: Voile.Input.KeyboardKey.Backspace + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Backspace + path: Source/Input/InputSystem.cs + startLine: 152 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Backspace = 259 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Insert + commentId: F:Voile.Input.KeyboardKey.Insert + id: Insert + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Insert + nameWithType: KeyboardKey.Insert + fullName: Voile.Input.KeyboardKey.Insert + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Insert + path: Source/Input/InputSystem.cs + startLine: 153 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Insert = 260 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Delete + commentId: F:Voile.Input.KeyboardKey.Delete + id: Delete + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Delete + nameWithType: KeyboardKey.Delete + fullName: Voile.Input.KeyboardKey.Delete + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Delete + path: Source/Input/InputSystem.cs + startLine: 154 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Delete = 261 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Right + commentId: F:Voile.Input.KeyboardKey.Right + id: Right + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Right + nameWithType: KeyboardKey.Right + fullName: Voile.Input.KeyboardKey.Right + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Right + path: Source/Input/InputSystem.cs + startLine: 155 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Right = 262 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Left + commentId: F:Voile.Input.KeyboardKey.Left + id: Left + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Left + nameWithType: KeyboardKey.Left + fullName: Voile.Input.KeyboardKey.Left + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Left + path: Source/Input/InputSystem.cs + startLine: 156 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Left = 263 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Down + commentId: F:Voile.Input.KeyboardKey.Down + id: Down + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Down + nameWithType: KeyboardKey.Down + fullName: Voile.Input.KeyboardKey.Down + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Down + path: Source/Input/InputSystem.cs + startLine: 157 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Down = 264 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Up + commentId: F:Voile.Input.KeyboardKey.Up + id: Up + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Up + nameWithType: KeyboardKey.Up + fullName: Voile.Input.KeyboardKey.Up + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Up + path: Source/Input/InputSystem.cs + startLine: 158 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Up = 265 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.PageUp + commentId: F:Voile.Input.KeyboardKey.PageUp + id: PageUp + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: PageUp + nameWithType: KeyboardKey.PageUp + fullName: Voile.Input.KeyboardKey.PageUp + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: PageUp + path: Source/Input/InputSystem.cs + startLine: 159 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: PageUp = 266 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.PageDown + commentId: F:Voile.Input.KeyboardKey.PageDown + id: PageDown + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: PageDown + nameWithType: KeyboardKey.PageDown + fullName: Voile.Input.KeyboardKey.PageDown + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: PageDown + path: Source/Input/InputSystem.cs + startLine: 160 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: PageDown = 267 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Home + commentId: F:Voile.Input.KeyboardKey.Home + id: Home + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Home + nameWithType: KeyboardKey.Home + fullName: Voile.Input.KeyboardKey.Home + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Home + path: Source/Input/InputSystem.cs + startLine: 161 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Home = 268 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.End + commentId: F:Voile.Input.KeyboardKey.End + id: End + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: End + nameWithType: KeyboardKey.End + fullName: Voile.Input.KeyboardKey.End + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: End + path: Source/Input/InputSystem.cs + startLine: 162 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: End = 269 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.CapsLock + commentId: F:Voile.Input.KeyboardKey.CapsLock + id: CapsLock + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: CapsLock + nameWithType: KeyboardKey.CapsLock + fullName: Voile.Input.KeyboardKey.CapsLock + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CapsLock + path: Source/Input/InputSystem.cs + startLine: 163 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: CapsLock = 280 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.ScrollLock + commentId: F:Voile.Input.KeyboardKey.ScrollLock + id: ScrollLock + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: ScrollLock + nameWithType: KeyboardKey.ScrollLock + fullName: Voile.Input.KeyboardKey.ScrollLock + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ScrollLock + path: Source/Input/InputSystem.cs + startLine: 164 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: ScrollLock = 281 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.NumLock + commentId: F:Voile.Input.KeyboardKey.NumLock + id: NumLock + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: NumLock + nameWithType: KeyboardKey.NumLock + fullName: Voile.Input.KeyboardKey.NumLock + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: NumLock + path: Source/Input/InputSystem.cs + startLine: 165 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: NumLock = 282 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.PrintScreen + commentId: F:Voile.Input.KeyboardKey.PrintScreen + id: PrintScreen + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: PrintScreen + nameWithType: KeyboardKey.PrintScreen + fullName: Voile.Input.KeyboardKey.PrintScreen + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: PrintScreen + path: Source/Input/InputSystem.cs + startLine: 166 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: PrintScreen = 283 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.Pause + commentId: F:Voile.Input.KeyboardKey.Pause + id: Pause + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: Pause + nameWithType: KeyboardKey.Pause + fullName: Voile.Input.KeyboardKey.Pause + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Pause + path: Source/Input/InputSystem.cs + startLine: 167 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Pause = 284 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.F1 + commentId: F:Voile.Input.KeyboardKey.F1 + id: F1 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: F1 + nameWithType: KeyboardKey.F1 + fullName: Voile.Input.KeyboardKey.F1 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F1 + path: Source/Input/InputSystem.cs + startLine: 168 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: F1 = 290 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.F2 + commentId: F:Voile.Input.KeyboardKey.F2 + id: F2 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: F2 + nameWithType: KeyboardKey.F2 + fullName: Voile.Input.KeyboardKey.F2 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F2 + path: Source/Input/InputSystem.cs + startLine: 169 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: F2 = 291 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.F3 + commentId: F:Voile.Input.KeyboardKey.F3 + id: F3 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: F3 + nameWithType: KeyboardKey.F3 + fullName: Voile.Input.KeyboardKey.F3 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F3 + path: Source/Input/InputSystem.cs + startLine: 170 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: F3 = 292 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.F4 + commentId: F:Voile.Input.KeyboardKey.F4 + id: F4 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: F4 + nameWithType: KeyboardKey.F4 + fullName: Voile.Input.KeyboardKey.F4 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F4 + path: Source/Input/InputSystem.cs + startLine: 171 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: F4 = 293 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.F5 + commentId: F:Voile.Input.KeyboardKey.F5 + id: F5 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: F5 + nameWithType: KeyboardKey.F5 + fullName: Voile.Input.KeyboardKey.F5 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F5 + path: Source/Input/InputSystem.cs + startLine: 172 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: F5 = 294 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.F6 + commentId: F:Voile.Input.KeyboardKey.F6 + id: F6 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: F6 + nameWithType: KeyboardKey.F6 + fullName: Voile.Input.KeyboardKey.F6 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F6 + path: Source/Input/InputSystem.cs + startLine: 173 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: F6 = 295 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.F7 + commentId: F:Voile.Input.KeyboardKey.F7 + id: F7 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: F7 + nameWithType: KeyboardKey.F7 + fullName: Voile.Input.KeyboardKey.F7 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F7 + path: Source/Input/InputSystem.cs + startLine: 174 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: F7 = 296 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.F8 + commentId: F:Voile.Input.KeyboardKey.F8 + id: F8 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: F8 + nameWithType: KeyboardKey.F8 + fullName: Voile.Input.KeyboardKey.F8 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F8 + path: Source/Input/InputSystem.cs + startLine: 175 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: F8 = 297 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.F9 + commentId: F:Voile.Input.KeyboardKey.F9 + id: F9 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: F9 + nameWithType: KeyboardKey.F9 + fullName: Voile.Input.KeyboardKey.F9 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F9 + path: Source/Input/InputSystem.cs + startLine: 176 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: F9 = 298 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.F10 + commentId: F:Voile.Input.KeyboardKey.F10 + id: F10 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: F10 + nameWithType: KeyboardKey.F10 + fullName: Voile.Input.KeyboardKey.F10 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F10 + path: Source/Input/InputSystem.cs + startLine: 177 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: F10 = 299 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.F11 + commentId: F:Voile.Input.KeyboardKey.F11 + id: F11 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: F11 + nameWithType: KeyboardKey.F11 + fullName: Voile.Input.KeyboardKey.F11 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F11 + path: Source/Input/InputSystem.cs + startLine: 178 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: F11 = 300 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.F12 + commentId: F:Voile.Input.KeyboardKey.F12 + id: F12 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: F12 + nameWithType: KeyboardKey.F12 + fullName: Voile.Input.KeyboardKey.F12 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F12 + path: Source/Input/InputSystem.cs + startLine: 179 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: F12 = 301 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.KP0 + commentId: F:Voile.Input.KeyboardKey.KP0 + id: KP0 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: KP0 + nameWithType: KeyboardKey.KP0 + fullName: Voile.Input.KeyboardKey.KP0 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP0 + path: Source/Input/InputSystem.cs + startLine: 180 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: KP0 = 320 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.KP1 + commentId: F:Voile.Input.KeyboardKey.KP1 + id: KP1 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: KP1 + nameWithType: KeyboardKey.KP1 + fullName: Voile.Input.KeyboardKey.KP1 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP1 + path: Source/Input/InputSystem.cs + startLine: 181 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: KP1 = 321 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.KP2 + commentId: F:Voile.Input.KeyboardKey.KP2 + id: KP2 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: KP2 + nameWithType: KeyboardKey.KP2 + fullName: Voile.Input.KeyboardKey.KP2 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP2 + path: Source/Input/InputSystem.cs + startLine: 182 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: KP2 = 322 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.KP3 + commentId: F:Voile.Input.KeyboardKey.KP3 + id: KP3 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: KP3 + nameWithType: KeyboardKey.KP3 + fullName: Voile.Input.KeyboardKey.KP3 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP3 + path: Source/Input/InputSystem.cs + startLine: 183 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: KP3 = 323 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.KP4 + commentId: F:Voile.Input.KeyboardKey.KP4 + id: KP4 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: KP4 + nameWithType: KeyboardKey.KP4 + fullName: Voile.Input.KeyboardKey.KP4 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP4 + path: Source/Input/InputSystem.cs + startLine: 184 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: KP4 = 324 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.KP5 + commentId: F:Voile.Input.KeyboardKey.KP5 + id: KP5 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: KP5 + nameWithType: KeyboardKey.KP5 + fullName: Voile.Input.KeyboardKey.KP5 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP5 + path: Source/Input/InputSystem.cs + startLine: 185 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: KP5 = 325 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.KP6 + commentId: F:Voile.Input.KeyboardKey.KP6 + id: KP6 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: KP6 + nameWithType: KeyboardKey.KP6 + fullName: Voile.Input.KeyboardKey.KP6 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP6 + path: Source/Input/InputSystem.cs + startLine: 186 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: KP6 = 326 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.KP7 + commentId: F:Voile.Input.KeyboardKey.KP7 + id: KP7 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: KP7 + nameWithType: KeyboardKey.KP7 + fullName: Voile.Input.KeyboardKey.KP7 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP7 + path: Source/Input/InputSystem.cs + startLine: 187 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: KP7 = 327 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.KP8 + commentId: F:Voile.Input.KeyboardKey.KP8 + id: KP8 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: KP8 + nameWithType: KeyboardKey.KP8 + fullName: Voile.Input.KeyboardKey.KP8 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP8 + path: Source/Input/InputSystem.cs + startLine: 188 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: KP8 = 328 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.KP9 + commentId: F:Voile.Input.KeyboardKey.KP9 + id: KP9 + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: KP9 + nameWithType: KeyboardKey.KP9 + fullName: Voile.Input.KeyboardKey.KP9 + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP9 + path: Source/Input/InputSystem.cs + startLine: 189 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: KP9 = 329 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.KPDecimal + commentId: F:Voile.Input.KeyboardKey.KPDecimal + id: KPDecimal + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: KPDecimal + nameWithType: KeyboardKey.KPDecimal + fullName: Voile.Input.KeyboardKey.KPDecimal + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KPDecimal + path: Source/Input/InputSystem.cs + startLine: 190 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: KPDecimal = 330 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.KPDivide + commentId: F:Voile.Input.KeyboardKey.KPDivide + id: KPDivide + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: KPDivide + nameWithType: KeyboardKey.KPDivide + fullName: Voile.Input.KeyboardKey.KPDivide + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KPDivide + path: Source/Input/InputSystem.cs + startLine: 191 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: KPDivide = 331 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.KPMultiply + commentId: F:Voile.Input.KeyboardKey.KPMultiply + id: KPMultiply + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: KPMultiply + nameWithType: KeyboardKey.KPMultiply + fullName: Voile.Input.KeyboardKey.KPMultiply + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KPMultiply + path: Source/Input/InputSystem.cs + startLine: 192 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: KPMultiply = 332 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.KPSubstract + commentId: F:Voile.Input.KeyboardKey.KPSubstract + id: KPSubstract + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: KPSubstract + nameWithType: KeyboardKey.KPSubstract + fullName: Voile.Input.KeyboardKey.KPSubstract + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KPSubstract + path: Source/Input/InputSystem.cs + startLine: 193 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: KPSubstract = 333 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.KPAdd + commentId: F:Voile.Input.KeyboardKey.KPAdd + id: KPAdd + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: KPAdd + nameWithType: KeyboardKey.KPAdd + fullName: Voile.Input.KeyboardKey.KPAdd + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KPAdd + path: Source/Input/InputSystem.cs + startLine: 194 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: KPAdd = 334 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.KPEnter + commentId: F:Voile.Input.KeyboardKey.KPEnter + id: KPEnter + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: KPEnter + nameWithType: KeyboardKey.KPEnter + fullName: Voile.Input.KeyboardKey.KPEnter + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KPEnter + path: Source/Input/InputSystem.cs + startLine: 195 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: KPEnter = 335 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.KPEqual + commentId: F:Voile.Input.KeyboardKey.KPEqual + id: KPEqual + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: KPEqual + nameWithType: KeyboardKey.KPEqual + fullName: Voile.Input.KeyboardKey.KPEqual + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KPEqual + path: Source/Input/InputSystem.cs + startLine: 196 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: KPEqual = 336 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.LeftShift + commentId: F:Voile.Input.KeyboardKey.LeftShift + id: LeftShift + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: LeftShift + nameWithType: KeyboardKey.LeftShift + fullName: Voile.Input.KeyboardKey.LeftShift + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LeftShift + path: Source/Input/InputSystem.cs + startLine: 197 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: LeftShift = 340 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.LeftControl + commentId: F:Voile.Input.KeyboardKey.LeftControl + id: LeftControl + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: LeftControl + nameWithType: KeyboardKey.LeftControl + fullName: Voile.Input.KeyboardKey.LeftControl + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LeftControl + path: Source/Input/InputSystem.cs + startLine: 198 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: LeftControl = 341 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.LeftAlt + commentId: F:Voile.Input.KeyboardKey.LeftAlt + id: LeftAlt + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: LeftAlt + nameWithType: KeyboardKey.LeftAlt + fullName: Voile.Input.KeyboardKey.LeftAlt + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LeftAlt + path: Source/Input/InputSystem.cs + startLine: 199 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: LeftAlt = 342 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.LeftSuper + commentId: F:Voile.Input.KeyboardKey.LeftSuper + id: LeftSuper + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: LeftSuper + nameWithType: KeyboardKey.LeftSuper + fullName: Voile.Input.KeyboardKey.LeftSuper + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LeftSuper + path: Source/Input/InputSystem.cs + startLine: 200 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: LeftSuper = 343 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.RightShift + commentId: F:Voile.Input.KeyboardKey.RightShift + id: RightShift + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: RightShift + nameWithType: KeyboardKey.RightShift + fullName: Voile.Input.KeyboardKey.RightShift + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RightShift + path: Source/Input/InputSystem.cs + startLine: 201 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: RightShift = 344 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.RightControl + commentId: F:Voile.Input.KeyboardKey.RightControl + id: RightControl + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: RightControl + nameWithType: KeyboardKey.RightControl + fullName: Voile.Input.KeyboardKey.RightControl + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RightControl + path: Source/Input/InputSystem.cs + startLine: 202 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: RightControl = 345 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.RightAlt + commentId: F:Voile.Input.KeyboardKey.RightAlt + id: RightAlt + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: RightAlt + nameWithType: KeyboardKey.RightAlt + fullName: Voile.Input.KeyboardKey.RightAlt + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RightAlt + path: Source/Input/InputSystem.cs + startLine: 203 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: RightAlt = 346 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.RightSuper + commentId: F:Voile.Input.KeyboardKey.RightSuper + id: RightSuper + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: RightSuper + nameWithType: KeyboardKey.RightSuper + fullName: Voile.Input.KeyboardKey.RightSuper + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RightSuper + path: Source/Input/InputSystem.cs + startLine: 204 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: RightSuper = 347 + return: + type: Voile.Input.KeyboardKey +- uid: Voile.Input.KeyboardKey.KBMenu + commentId: F:Voile.Input.KeyboardKey.KBMenu + id: KBMenu + parent: Voile.Input.KeyboardKey + langs: + - csharp + - vb + name: KBMenu + nameWithType: KeyboardKey.KBMenu + fullName: Voile.Input.KeyboardKey.KBMenu + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KBMenu + path: Source/Input/InputSystem.cs + startLine: 205 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: KBMenu = 348 + return: + type: Voile.Input.KeyboardKey +references: +- uid: Voile.Input + commentId: N:Voile.Input + href: Voile.html + name: Voile.Input + nameWithType: Voile.Input + fullName: Voile.Input + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html +- uid: Voile.Input.KeyboardKey + commentId: T:Voile.Input.KeyboardKey + parent: Voile.Input + href: Voile.Input.KeyboardKey.html + name: KeyboardKey + nameWithType: KeyboardKey + fullName: Voile.Input.KeyboardKey diff --git a/Voile/api/Voile.Input.MouseButton.yml b/Voile/api/Voile.Input.MouseButton.yml new file mode 100644 index 0000000..d070f35 --- /dev/null +++ b/Voile/api/Voile.Input.MouseButton.yml @@ -0,0 +1,149 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Input.MouseButton + commentId: T:Voile.Input.MouseButton + id: MouseButton + parent: Voile.Input + children: + - Voile.Input.MouseButton.Left + - Voile.Input.MouseButton.Middle + - Voile.Input.MouseButton.Right + langs: + - csharp + - vb + name: MouseButton + nameWithType: MouseButton + fullName: Voile.Input.MouseButton + type: Enum + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: MouseButton + path: Source/Input/InputSystem.cs + startLine: 208 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: >- + [Flags] + + public enum MouseButton + content.vb: >- + + + Public Enum MouseButton + attributes: + - type: System.FlagsAttribute + ctor: System.FlagsAttribute.#ctor + arguments: [] +- uid: Voile.Input.MouseButton.Left + commentId: F:Voile.Input.MouseButton.Left + id: Left + parent: Voile.Input.MouseButton + langs: + - csharp + - vb + name: Left + nameWithType: MouseButton.Left + fullName: Voile.Input.MouseButton.Left + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Left + path: Source/Input/InputSystem.cs + startLine: 211 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Left = 0 + return: + type: Voile.Input.MouseButton +- uid: Voile.Input.MouseButton.Right + commentId: F:Voile.Input.MouseButton.Right + id: Right + parent: Voile.Input.MouseButton + langs: + - csharp + - vb + name: Right + nameWithType: MouseButton.Right + fullName: Voile.Input.MouseButton.Right + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Right + path: Source/Input/InputSystem.cs + startLine: 212 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Right = 1 + return: + type: Voile.Input.MouseButton +- uid: Voile.Input.MouseButton.Middle + commentId: F:Voile.Input.MouseButton.Middle + id: Middle + parent: Voile.Input.MouseButton + langs: + - csharp + - vb + name: Middle + nameWithType: MouseButton.Middle + fullName: Voile.Input.MouseButton.Middle + type: Field + source: + remote: + path: Voile/Source/Input/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Middle + path: Source/Input/InputSystem.cs + startLine: 213 + assemblies: + - Voile + namespace: Voile.Input + syntax: + content: Middle = 2 + return: + type: Voile.Input.MouseButton +references: +- uid: Voile.Input + commentId: N:Voile.Input + href: Voile.html + name: Voile.Input + nameWithType: Voile.Input + fullName: Voile.Input + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html +- uid: Voile.Input.MouseButton + commentId: T:Voile.Input.MouseButton + parent: Voile.Input + href: Voile.Input.MouseButton.html + name: MouseButton + nameWithType: MouseButton + fullName: Voile.Input.MouseButton diff --git a/Voile/api/Voile.Input.RaylibInputSystem.yml b/Voile/api/Voile.Input.RaylibInputSystem.yml new file mode 100644 index 0000000..2ac5f57 --- /dev/null +++ b/Voile/api/Voile.Input.RaylibInputSystem.yml @@ -0,0 +1,1734 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Input.RaylibInputSystem + commentId: T:Voile.Input.RaylibInputSystem + id: RaylibInputSystem + parent: Voile.Input + children: + - Voile.Input.RaylibInputSystem.GetCharPressed + - Voile.Input.RaylibInputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + - Voile.Input.RaylibInputSystem.GetInputDirection(Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey) + - Voile.Input.RaylibInputSystem.GetMousePosition + - Voile.Input.RaylibInputSystem.GetMouseWheelMovement + - Voile.Input.RaylibInputSystem.HideCursor + - Voile.Input.RaylibInputSystem.IsActionDown(System.String) + - Voile.Input.RaylibInputSystem.IsActionPressed(System.String) + - Voile.Input.RaylibInputSystem.IsActionReleased(System.String) + - Voile.Input.RaylibInputSystem.IsCursorHidden + - Voile.Input.RaylibInputSystem.IsKeyboardKeyDown(Voile.Input.KeyboardKey) + - Voile.Input.RaylibInputSystem.IsMouseButtonDown(Voile.Input.MouseButton) + - Voile.Input.RaylibInputSystem.KeyboardKeyJustPressed(Voile.Input.KeyboardKey) + - Voile.Input.RaylibInputSystem.KeyboardKeyJustReleased(Voile.Input.KeyboardKey) + - Voile.Input.RaylibInputSystem.SetMousePosition(System.Numerics.Vector2) + - Voile.Input.RaylibInputSystem.ShowCursor + langs: + - csharp + - vb + name: RaylibInputSystem + nameWithType: RaylibInputSystem + fullName: Voile.Input.RaylibInputSystem + type: Class + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RaylibInputSystem + path: Source/Input/RaylibInputSystem.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile.Input + summary: An input system implemented using Raylib's API. Used by default together with RaylibRenderSystem. + example: [] + syntax: + content: 'public class RaylibInputSystem : InputSystem, IStartableSystem, IDisposable' + content.vb: Public Class RaylibInputSystem Inherits InputSystem Implements IStartableSystem, IDisposable + inheritance: + - System.Object + - Voile.Input.InputSystem + implements: + - Voile.IStartableSystem + - System.IDisposable + inheritedMembers: + - Voile.Input.InputSystem.InputMappings + - Voile.Input.InputSystem.Start + - Voile.Input.InputSystem.Shutdown + - Voile.Input.InputSystem.Dispose + - Voile.Input.InputSystem.Handled + - Voile.Input.InputSystem.SetAsHandled + - Voile.Input.InputSystem.AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}) + - Voile.Input.InputSystem.TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}@) + - Voile.Input.InputSystem.inputMappings + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Input.RaylibInputSystem.GetCharPressed + commentId: M:Voile.Input.RaylibInputSystem.GetCharPressed + id: GetCharPressed + parent: Voile.Input.RaylibInputSystem + langs: + - csharp + - vb + name: GetCharPressed() + nameWithType: RaylibInputSystem.GetCharPressed() + fullName: Voile.Input.RaylibInputSystem.GetCharPressed() + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetCharPressed + path: Source/Input/RaylibInputSystem.cs + startLine: 10 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override int GetCharPressed() + return: + type: System.Int32 + content.vb: Public Overrides Function GetCharPressed() As Integer + overridden: Voile.Input.InputSystem.GetCharPressed + overload: Voile.Input.RaylibInputSystem.GetCharPressed* +- uid: Voile.Input.RaylibInputSystem.GetInputDirection(Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey) + commentId: M:Voile.Input.RaylibInputSystem.GetInputDirection(Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey) + id: GetInputDirection(Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey) + parent: Voile.Input.RaylibInputSystem + langs: + - csharp + - vb + name: GetInputDirection(KeyboardKey, KeyboardKey, KeyboardKey, KeyboardKey) + nameWithType: RaylibInputSystem.GetInputDirection(KeyboardKey, KeyboardKey, KeyboardKey, KeyboardKey) + fullName: Voile.Input.RaylibInputSystem.GetInputDirection(Voile.Input.KeyboardKey, Voile.Input.KeyboardKey, Voile.Input.KeyboardKey, Voile.Input.KeyboardKey) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetInputDirection + path: Source/Input/RaylibInputSystem.cs + startLine: 15 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override Vector2 GetInputDirection(KeyboardKey leftKey, KeyboardKey rightKey, KeyboardKey upKey, KeyboardKey downKey) + parameters: + - id: leftKey + type: Voile.Input.KeyboardKey + - id: rightKey + type: Voile.Input.KeyboardKey + - id: upKey + type: Voile.Input.KeyboardKey + - id: downKey + type: Voile.Input.KeyboardKey + return: + type: System.Numerics.Vector2 + content.vb: Public Overrides Function GetInputDirection(leftKey As KeyboardKey, rightKey As KeyboardKey, upKey As KeyboardKey, downKey As KeyboardKey) As Vector2 + overridden: Voile.Input.InputSystem.GetInputDirection(Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey) + overload: Voile.Input.RaylibInputSystem.GetInputDirection* +- uid: Voile.Input.RaylibInputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + commentId: M:Voile.Input.RaylibInputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + id: GetInputDirection(System.String,System.String,System.String,System.String) + parent: Voile.Input.RaylibInputSystem + langs: + - csharp + - vb + name: GetInputDirection(string, string, string, string) + nameWithType: RaylibInputSystem.GetInputDirection(string, string, string, string) + fullName: Voile.Input.RaylibInputSystem.GetInputDirection(string, string, string, string) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetInputDirection + path: Source/Input/RaylibInputSystem.cs + startLine: 31 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override Vector2 GetInputDirection(string leftAction, string rightAction, string upAction, string downAction) + parameters: + - id: leftAction + type: System.String + - id: rightAction + type: System.String + - id: upAction + type: System.String + - id: downAction + type: System.String + return: + type: System.Numerics.Vector2 + content.vb: Public Overrides Function GetInputDirection(leftAction As String, rightAction As String, upAction As String, downAction As String) As Vector2 + overridden: Voile.Input.InputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + overload: Voile.Input.RaylibInputSystem.GetInputDirection* + nameWithType.vb: RaylibInputSystem.GetInputDirection(String, String, String, String) + fullName.vb: Voile.Input.RaylibInputSystem.GetInputDirection(String, String, String, String) + name.vb: GetInputDirection(String, String, String, String) +- uid: Voile.Input.RaylibInputSystem.GetMousePosition + commentId: M:Voile.Input.RaylibInputSystem.GetMousePosition + id: GetMousePosition + parent: Voile.Input.RaylibInputSystem + langs: + - csharp + - vb + name: GetMousePosition() + nameWithType: RaylibInputSystem.GetMousePosition() + fullName: Voile.Input.RaylibInputSystem.GetMousePosition() + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetMousePosition + path: Source/Input/RaylibInputSystem.cs + startLine: 48 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override Vector2 GetMousePosition() + return: + type: System.Numerics.Vector2 + content.vb: Public Overrides Function GetMousePosition() As Vector2 + overridden: Voile.Input.InputSystem.GetMousePosition + overload: Voile.Input.RaylibInputSystem.GetMousePosition* +- uid: Voile.Input.RaylibInputSystem.GetMouseWheelMovement + commentId: M:Voile.Input.RaylibInputSystem.GetMouseWheelMovement + id: GetMouseWheelMovement + parent: Voile.Input.RaylibInputSystem + langs: + - csharp + - vb + name: GetMouseWheelMovement() + nameWithType: RaylibInputSystem.GetMouseWheelMovement() + fullName: Voile.Input.RaylibInputSystem.GetMouseWheelMovement() + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetMouseWheelMovement + path: Source/Input/RaylibInputSystem.cs + startLine: 53 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override float GetMouseWheelMovement() + return: + type: System.Single + content.vb: Public Overrides Function GetMouseWheelMovement() As Single + overridden: Voile.Input.InputSystem.GetMouseWheelMovement + overload: Voile.Input.RaylibInputSystem.GetMouseWheelMovement* +- uid: Voile.Input.RaylibInputSystem.HideCursor + commentId: M:Voile.Input.RaylibInputSystem.HideCursor + id: HideCursor + parent: Voile.Input.RaylibInputSystem + langs: + - csharp + - vb + name: HideCursor() + nameWithType: RaylibInputSystem.HideCursor() + fullName: Voile.Input.RaylibInputSystem.HideCursor() + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: HideCursor + path: Source/Input/RaylibInputSystem.cs + startLine: 58 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override void HideCursor() + content.vb: Public Overrides Sub HideCursor() + overridden: Voile.Input.InputSystem.HideCursor + overload: Voile.Input.RaylibInputSystem.HideCursor* +- uid: Voile.Input.RaylibInputSystem.IsActionDown(System.String) + commentId: M:Voile.Input.RaylibInputSystem.IsActionDown(System.String) + id: IsActionDown(System.String) + parent: Voile.Input.RaylibInputSystem + langs: + - csharp + - vb + name: IsActionDown(string) + nameWithType: RaylibInputSystem.IsActionDown(string) + fullName: Voile.Input.RaylibInputSystem.IsActionDown(string) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsActionDown + path: Source/Input/RaylibInputSystem.cs + startLine: 63 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override bool IsActionDown(string action) + parameters: + - id: action + type: System.String + return: + type: System.Boolean + content.vb: Public Overrides Function IsActionDown(action As String) As Boolean + overridden: Voile.Input.InputSystem.IsActionDown(System.String) + overload: Voile.Input.RaylibInputSystem.IsActionDown* + nameWithType.vb: RaylibInputSystem.IsActionDown(String) + fullName.vb: Voile.Input.RaylibInputSystem.IsActionDown(String) + name.vb: IsActionDown(String) +- uid: Voile.Input.RaylibInputSystem.IsActionPressed(System.String) + commentId: M:Voile.Input.RaylibInputSystem.IsActionPressed(System.String) + id: IsActionPressed(System.String) + parent: Voile.Input.RaylibInputSystem + langs: + - csharp + - vb + name: IsActionPressed(string) + nameWithType: RaylibInputSystem.IsActionPressed(string) + fullName: Voile.Input.RaylibInputSystem.IsActionPressed(string) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsActionPressed + path: Source/Input/RaylibInputSystem.cs + startLine: 76 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override bool IsActionPressed(string action) + parameters: + - id: action + type: System.String + return: + type: System.Boolean + content.vb: Public Overrides Function IsActionPressed(action As String) As Boolean + overridden: Voile.Input.InputSystem.IsActionPressed(System.String) + overload: Voile.Input.RaylibInputSystem.IsActionPressed* + nameWithType.vb: RaylibInputSystem.IsActionPressed(String) + fullName.vb: Voile.Input.RaylibInputSystem.IsActionPressed(String) + name.vb: IsActionPressed(String) +- uid: Voile.Input.RaylibInputSystem.IsActionReleased(System.String) + commentId: M:Voile.Input.RaylibInputSystem.IsActionReleased(System.String) + id: IsActionReleased(System.String) + parent: Voile.Input.RaylibInputSystem + langs: + - csharp + - vb + name: IsActionReleased(string) + nameWithType: RaylibInputSystem.IsActionReleased(string) + fullName: Voile.Input.RaylibInputSystem.IsActionReleased(string) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsActionReleased + path: Source/Input/RaylibInputSystem.cs + startLine: 89 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override bool IsActionReleased(string action) + parameters: + - id: action + type: System.String + return: + type: System.Boolean + content.vb: Public Overrides Function IsActionReleased(action As String) As Boolean + overridden: Voile.Input.InputSystem.IsActionReleased(System.String) + overload: Voile.Input.RaylibInputSystem.IsActionReleased* + nameWithType.vb: RaylibInputSystem.IsActionReleased(String) + fullName.vb: Voile.Input.RaylibInputSystem.IsActionReleased(String) + name.vb: IsActionReleased(String) +- uid: Voile.Input.RaylibInputSystem.IsKeyboardKeyDown(Voile.Input.KeyboardKey) + commentId: M:Voile.Input.RaylibInputSystem.IsKeyboardKeyDown(Voile.Input.KeyboardKey) + id: IsKeyboardKeyDown(Voile.Input.KeyboardKey) + parent: Voile.Input.RaylibInputSystem + langs: + - csharp + - vb + name: IsKeyboardKeyDown(KeyboardKey) + nameWithType: RaylibInputSystem.IsKeyboardKeyDown(KeyboardKey) + fullName: Voile.Input.RaylibInputSystem.IsKeyboardKeyDown(Voile.Input.KeyboardKey) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsKeyboardKeyDown + path: Source/Input/RaylibInputSystem.cs + startLine: 102 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override bool IsKeyboardKeyDown(KeyboardKey key) + parameters: + - id: key + type: Voile.Input.KeyboardKey + return: + type: System.Boolean + content.vb: Public Overrides Function IsKeyboardKeyDown(key As KeyboardKey) As Boolean + overridden: Voile.Input.InputSystem.IsKeyboardKeyDown(Voile.Input.KeyboardKey) + overload: Voile.Input.RaylibInputSystem.IsKeyboardKeyDown* +- uid: Voile.Input.RaylibInputSystem.IsMouseButtonDown(Voile.Input.MouseButton) + commentId: M:Voile.Input.RaylibInputSystem.IsMouseButtonDown(Voile.Input.MouseButton) + id: IsMouseButtonDown(Voile.Input.MouseButton) + parent: Voile.Input.RaylibInputSystem + langs: + - csharp + - vb + name: IsMouseButtonDown(MouseButton) + nameWithType: RaylibInputSystem.IsMouseButtonDown(MouseButton) + fullName: Voile.Input.RaylibInputSystem.IsMouseButtonDown(Voile.Input.MouseButton) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsMouseButtonDown + path: Source/Input/RaylibInputSystem.cs + startLine: 108 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override bool IsMouseButtonDown(MouseButton button) + parameters: + - id: button + type: Voile.Input.MouseButton + return: + type: System.Boolean + content.vb: Public Overrides Function IsMouseButtonDown(button As MouseButton) As Boolean + overridden: Voile.Input.InputSystem.IsMouseButtonDown(Voile.Input.MouseButton) + overload: Voile.Input.RaylibInputSystem.IsMouseButtonDown* +- uid: Voile.Input.RaylibInputSystem.KeyboardKeyJustPressed(Voile.Input.KeyboardKey) + commentId: M:Voile.Input.RaylibInputSystem.KeyboardKeyJustPressed(Voile.Input.KeyboardKey) + id: KeyboardKeyJustPressed(Voile.Input.KeyboardKey) + parent: Voile.Input.RaylibInputSystem + langs: + - csharp + - vb + name: KeyboardKeyJustPressed(KeyboardKey) + nameWithType: RaylibInputSystem.KeyboardKeyJustPressed(KeyboardKey) + fullName: Voile.Input.RaylibInputSystem.KeyboardKeyJustPressed(Voile.Input.KeyboardKey) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KeyboardKeyJustPressed + path: Source/Input/RaylibInputSystem.cs + startLine: 113 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override bool KeyboardKeyJustPressed(KeyboardKey key) + parameters: + - id: key + type: Voile.Input.KeyboardKey + return: + type: System.Boolean + content.vb: Public Overrides Function KeyboardKeyJustPressed(key As KeyboardKey) As Boolean + overridden: Voile.Input.InputSystem.KeyboardKeyJustPressed(Voile.Input.KeyboardKey) + overload: Voile.Input.RaylibInputSystem.KeyboardKeyJustPressed* +- uid: Voile.Input.RaylibInputSystem.KeyboardKeyJustReleased(Voile.Input.KeyboardKey) + commentId: M:Voile.Input.RaylibInputSystem.KeyboardKeyJustReleased(Voile.Input.KeyboardKey) + id: KeyboardKeyJustReleased(Voile.Input.KeyboardKey) + parent: Voile.Input.RaylibInputSystem + langs: + - csharp + - vb + name: KeyboardKeyJustReleased(KeyboardKey) + nameWithType: RaylibInputSystem.KeyboardKeyJustReleased(KeyboardKey) + fullName: Voile.Input.RaylibInputSystem.KeyboardKeyJustReleased(Voile.Input.KeyboardKey) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KeyboardKeyJustReleased + path: Source/Input/RaylibInputSystem.cs + startLine: 119 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override bool KeyboardKeyJustReleased(KeyboardKey key) + parameters: + - id: key + type: Voile.Input.KeyboardKey + return: + type: System.Boolean + content.vb: Public Overrides Function KeyboardKeyJustReleased(key As KeyboardKey) As Boolean + overridden: Voile.Input.InputSystem.KeyboardKeyJustReleased(Voile.Input.KeyboardKey) + overload: Voile.Input.RaylibInputSystem.KeyboardKeyJustReleased* +- uid: Voile.Input.RaylibInputSystem.SetMousePosition(System.Numerics.Vector2) + commentId: M:Voile.Input.RaylibInputSystem.SetMousePosition(System.Numerics.Vector2) + id: SetMousePosition(System.Numerics.Vector2) + parent: Voile.Input.RaylibInputSystem + langs: + - csharp + - vb + name: SetMousePosition(Vector2) + nameWithType: RaylibInputSystem.SetMousePosition(Vector2) + fullName: Voile.Input.RaylibInputSystem.SetMousePosition(System.Numerics.Vector2) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetMousePosition + path: Source/Input/RaylibInputSystem.cs + startLine: 124 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override void SetMousePosition(Vector2 position) + parameters: + - id: position + type: System.Numerics.Vector2 + content.vb: Public Overrides Sub SetMousePosition(position As Vector2) + overridden: Voile.Input.InputSystem.SetMousePosition(System.Numerics.Vector2) + overload: Voile.Input.RaylibInputSystem.SetMousePosition* +- uid: Voile.Input.RaylibInputSystem.ShowCursor + commentId: M:Voile.Input.RaylibInputSystem.ShowCursor + id: ShowCursor + parent: Voile.Input.RaylibInputSystem + langs: + - csharp + - vb + name: ShowCursor() + nameWithType: RaylibInputSystem.ShowCursor() + fullName: Voile.Input.RaylibInputSystem.ShowCursor() + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ShowCursor + path: Source/Input/RaylibInputSystem.cs + startLine: 128 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override void ShowCursor() + content.vb: Public Overrides Sub ShowCursor() + overridden: Voile.Input.InputSystem.ShowCursor + overload: Voile.Input.RaylibInputSystem.ShowCursor* +- uid: Voile.Input.RaylibInputSystem.IsCursorHidden + commentId: M:Voile.Input.RaylibInputSystem.IsCursorHidden + id: IsCursorHidden + parent: Voile.Input.RaylibInputSystem + langs: + - csharp + - vb + name: IsCursorHidden() + nameWithType: RaylibInputSystem.IsCursorHidden() + fullName: Voile.Input.RaylibInputSystem.IsCursorHidden() + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsCursorHidden + path: Source/Input/RaylibInputSystem.cs + startLine: 129 + assemblies: + - Voile + namespace: Voile.Input + example: [] + syntax: + content: public override bool IsCursorHidden() + return: + type: System.Boolean + content.vb: Public Overrides Function IsCursorHidden() As Boolean + overridden: Voile.Input.InputSystem.IsCursorHidden + overload: Voile.Input.RaylibInputSystem.IsCursorHidden* +references: +- uid: Voile.Input + commentId: N:Voile.Input + href: Voile.html + name: Voile.Input + nameWithType: Voile.Input + fullName: Voile.Input + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.Input.InputSystem + commentId: T:Voile.Input.InputSystem + parent: Voile.Input + href: Voile.Input.InputSystem.html + name: InputSystem + nameWithType: InputSystem + fullName: Voile.Input.InputSystem +- uid: Voile.IStartableSystem + commentId: T:Voile.IStartableSystem + parent: Voile + href: Voile.IStartableSystem.html + name: IStartableSystem + nameWithType: IStartableSystem + fullName: Voile.IStartableSystem +- uid: System.IDisposable + commentId: T:System.IDisposable + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable + name: IDisposable + nameWithType: IDisposable + fullName: System.IDisposable +- uid: Voile.Input.InputSystem.InputMappings + commentId: P:Voile.Input.InputSystem.InputMappings + parent: Voile.Input.InputSystem + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_InputMappings + name: InputMappings + nameWithType: InputSystem.InputMappings + fullName: Voile.Input.InputSystem.InputMappings +- uid: Voile.Input.InputSystem.Start + commentId: M:Voile.Input.InputSystem.Start + parent: Voile.Input.InputSystem + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_Start + name: Start() + nameWithType: InputSystem.Start() + fullName: Voile.Input.InputSystem.Start() + spec.csharp: + - uid: Voile.Input.InputSystem.Start + name: Start + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_Start + - name: ( + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.Start + name: Start + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_Start + - name: ( + - name: ) +- uid: Voile.Input.InputSystem.Shutdown + commentId: M:Voile.Input.InputSystem.Shutdown + parent: Voile.Input.InputSystem + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_Shutdown + name: Shutdown() + nameWithType: InputSystem.Shutdown() + fullName: Voile.Input.InputSystem.Shutdown() + spec.csharp: + - uid: Voile.Input.InputSystem.Shutdown + name: Shutdown + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_Shutdown + - name: ( + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.Shutdown + name: Shutdown + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_Shutdown + - name: ( + - name: ) +- uid: Voile.Input.InputSystem.Dispose + commentId: M:Voile.Input.InputSystem.Dispose + parent: Voile.Input.InputSystem + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_Dispose + name: Dispose() + nameWithType: InputSystem.Dispose() + fullName: Voile.Input.InputSystem.Dispose() + spec.csharp: + - uid: Voile.Input.InputSystem.Dispose + name: Dispose + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_Dispose + - name: ( + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.Dispose + name: Dispose + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_Dispose + - name: ( + - name: ) +- uid: Voile.Input.InputSystem.Handled + commentId: P:Voile.Input.InputSystem.Handled + parent: Voile.Input.InputSystem + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_Handled + name: Handled + nameWithType: InputSystem.Handled + fullName: Voile.Input.InputSystem.Handled +- uid: Voile.Input.InputSystem.SetAsHandled + commentId: M:Voile.Input.InputSystem.SetAsHandled + parent: Voile.Input.InputSystem + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_SetAsHandled + name: SetAsHandled() + nameWithType: InputSystem.SetAsHandled() + fullName: Voile.Input.InputSystem.SetAsHandled() + spec.csharp: + - uid: Voile.Input.InputSystem.SetAsHandled + name: SetAsHandled + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_SetAsHandled + - name: ( + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.SetAsHandled + name: SetAsHandled + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_SetAsHandled + - name: ( + - name: ) +- uid: Voile.Input.InputSystem.AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}) + commentId: M:Voile.Input.InputSystem.AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}) + parent: Voile.Input.InputSystem + isExternal: true + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_AddInputMapping_System_String_System_Collections_Generic_IEnumerable_Voile_Input_InputAction__ + name: AddInputMapping(string, IEnumerable) + nameWithType: InputSystem.AddInputMapping(string, IEnumerable) + fullName: Voile.Input.InputSystem.AddInputMapping(string, System.Collections.Generic.IEnumerable) + nameWithType.vb: InputSystem.AddInputMapping(String, IEnumerable(Of InputAction)) + fullName.vb: Voile.Input.InputSystem.AddInputMapping(String, System.Collections.Generic.IEnumerable(Of Voile.Input.InputAction)) + name.vb: AddInputMapping(String, IEnumerable(Of InputAction)) + spec.csharp: + - uid: Voile.Input.InputSystem.AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}) + name: AddInputMapping + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_AddInputMapping_System_String_System_Collections_Generic_IEnumerable_Voile_Input_InputAction__ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: < + - uid: Voile.Input.InputAction + name: InputAction + href: Voile.Input.InputAction.html + - name: '>' + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}) + name: AddInputMapping + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_AddInputMapping_System_String_System_Collections_Generic_IEnumerable_Voile_Input_InputAction__ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: ( + - name: Of + - name: " " + - uid: Voile.Input.InputAction + name: InputAction + href: Voile.Input.InputAction.html + - name: ) + - name: ) +- uid: Voile.Input.InputSystem.TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}@) + commentId: M:Voile.Input.InputSystem.TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}@) + parent: Voile.Input.InputSystem + isExternal: true + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_TryGetInputMappings_System_String_System_Collections_Generic_IEnumerable_Voile_Input_InputAction___ + name: TryGetInputMappings(string, out IEnumerable) + nameWithType: InputSystem.TryGetInputMappings(string, out IEnumerable) + fullName: Voile.Input.InputSystem.TryGetInputMappings(string, out System.Collections.Generic.IEnumerable) + nameWithType.vb: InputSystem.TryGetInputMappings(String, IEnumerable(Of InputAction)) + fullName.vb: Voile.Input.InputSystem.TryGetInputMappings(String, System.Collections.Generic.IEnumerable(Of Voile.Input.InputAction)) + name.vb: TryGetInputMappings(String, IEnumerable(Of InputAction)) + spec.csharp: + - uid: Voile.Input.InputSystem.TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}@) + name: TryGetInputMappings + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_TryGetInputMappings_System_String_System_Collections_Generic_IEnumerable_Voile_Input_InputAction___ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: < + - uid: Voile.Input.InputAction + name: InputAction + href: Voile.Input.InputAction.html + - name: '>' + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.Input.InputAction}@) + name: TryGetInputMappings + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_TryGetInputMappings_System_String_System_Collections_Generic_IEnumerable_Voile_Input_InputAction___ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: ( + - name: Of + - name: " " + - uid: Voile.Input.InputAction + name: InputAction + href: Voile.Input.InputAction.html + - name: ) + - name: ) +- uid: Voile.Input.InputSystem.inputMappings + commentId: F:Voile.Input.InputSystem.inputMappings + parent: Voile.Input.InputSystem + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_inputMappings + name: inputMappings + nameWithType: InputSystem.inputMappings + fullName: Voile.Input.InputSystem.inputMappings +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.Input.InputSystem.GetCharPressed + commentId: M:Voile.Input.InputSystem.GetCharPressed + parent: Voile.Input.InputSystem + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetCharPressed + name: GetCharPressed() + nameWithType: InputSystem.GetCharPressed() + fullName: Voile.Input.InputSystem.GetCharPressed() + spec.csharp: + - uid: Voile.Input.InputSystem.GetCharPressed + name: GetCharPressed + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetCharPressed + - name: ( + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.GetCharPressed + name: GetCharPressed + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetCharPressed + - name: ( + - name: ) +- uid: Voile.Input.RaylibInputSystem.GetCharPressed* + commentId: Overload:Voile.Input.RaylibInputSystem.GetCharPressed + href: Voile.Input.RaylibInputSystem.html#Voile_Input_RaylibInputSystem_GetCharPressed + name: GetCharPressed + nameWithType: RaylibInputSystem.GetCharPressed + fullName: Voile.Input.RaylibInputSystem.GetCharPressed +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: Voile.Input.InputSystem.GetInputDirection(Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey) + commentId: M:Voile.Input.InputSystem.GetInputDirection(Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey) + parent: Voile.Input.InputSystem + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetInputDirection_Voile_Input_KeyboardKey_Voile_Input_KeyboardKey_Voile_Input_KeyboardKey_Voile_Input_KeyboardKey_ + name: GetInputDirection(KeyboardKey, KeyboardKey, KeyboardKey, KeyboardKey) + nameWithType: InputSystem.GetInputDirection(KeyboardKey, KeyboardKey, KeyboardKey, KeyboardKey) + fullName: Voile.Input.InputSystem.GetInputDirection(Voile.Input.KeyboardKey, Voile.Input.KeyboardKey, Voile.Input.KeyboardKey, Voile.Input.KeyboardKey) + spec.csharp: + - uid: Voile.Input.InputSystem.GetInputDirection(Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey) + name: GetInputDirection + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetInputDirection_Voile_Input_KeyboardKey_Voile_Input_KeyboardKey_Voile_Input_KeyboardKey_Voile_Input_KeyboardKey_ + - name: ( + - uid: Voile.Input.KeyboardKey + name: KeyboardKey + href: Voile.Input.KeyboardKey.html + - name: ',' + - name: " " + - uid: Voile.Input.KeyboardKey + name: KeyboardKey + href: Voile.Input.KeyboardKey.html + - name: ',' + - name: " " + - uid: Voile.Input.KeyboardKey + name: KeyboardKey + href: Voile.Input.KeyboardKey.html + - name: ',' + - name: " " + - uid: Voile.Input.KeyboardKey + name: KeyboardKey + href: Voile.Input.KeyboardKey.html + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.GetInputDirection(Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey,Voile.Input.KeyboardKey) + name: GetInputDirection + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetInputDirection_Voile_Input_KeyboardKey_Voile_Input_KeyboardKey_Voile_Input_KeyboardKey_Voile_Input_KeyboardKey_ + - name: ( + - uid: Voile.Input.KeyboardKey + name: KeyboardKey + href: Voile.Input.KeyboardKey.html + - name: ',' + - name: " " + - uid: Voile.Input.KeyboardKey + name: KeyboardKey + href: Voile.Input.KeyboardKey.html + - name: ',' + - name: " " + - uid: Voile.Input.KeyboardKey + name: KeyboardKey + href: Voile.Input.KeyboardKey.html + - name: ',' + - name: " " + - uid: Voile.Input.KeyboardKey + name: KeyboardKey + href: Voile.Input.KeyboardKey.html + - name: ) +- uid: Voile.Input.RaylibInputSystem.GetInputDirection* + commentId: Overload:Voile.Input.RaylibInputSystem.GetInputDirection + href: Voile.Input.RaylibInputSystem.html#Voile_Input_RaylibInputSystem_GetInputDirection_Voile_Input_KeyboardKey_Voile_Input_KeyboardKey_Voile_Input_KeyboardKey_Voile_Input_KeyboardKey_ + name: GetInputDirection + nameWithType: RaylibInputSystem.GetInputDirection + fullName: Voile.Input.RaylibInputSystem.GetInputDirection +- uid: Voile.Input.KeyboardKey + commentId: T:Voile.Input.KeyboardKey + parent: Voile.Input + href: Voile.Input.KeyboardKey.html + name: KeyboardKey + nameWithType: KeyboardKey + fullName: Voile.Input.KeyboardKey +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: Voile.Input.InputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + commentId: M:Voile.Input.InputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + parent: Voile.Input.InputSystem + isExternal: true + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetInputDirection_System_String_System_String_System_String_System_String_ + name: GetInputDirection(string, string, string, string) + nameWithType: InputSystem.GetInputDirection(string, string, string, string) + fullName: Voile.Input.InputSystem.GetInputDirection(string, string, string, string) + nameWithType.vb: InputSystem.GetInputDirection(String, String, String, String) + fullName.vb: Voile.Input.InputSystem.GetInputDirection(String, String, String, String) + name.vb: GetInputDirection(String, String, String, String) + spec.csharp: + - uid: Voile.Input.InputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + name: GetInputDirection + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetInputDirection_System_String_System_String_System_String_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + name: GetInputDirection + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetInputDirection_System_String_System_String_System_String_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.Input.InputSystem.GetMousePosition + commentId: M:Voile.Input.InputSystem.GetMousePosition + parent: Voile.Input.InputSystem + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetMousePosition + name: GetMousePosition() + nameWithType: InputSystem.GetMousePosition() + fullName: Voile.Input.InputSystem.GetMousePosition() + spec.csharp: + - uid: Voile.Input.InputSystem.GetMousePosition + name: GetMousePosition + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetMousePosition + - name: ( + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.GetMousePosition + name: GetMousePosition + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetMousePosition + - name: ( + - name: ) +- uid: Voile.Input.RaylibInputSystem.GetMousePosition* + commentId: Overload:Voile.Input.RaylibInputSystem.GetMousePosition + href: Voile.Input.RaylibInputSystem.html#Voile_Input_RaylibInputSystem_GetMousePosition + name: GetMousePosition + nameWithType: RaylibInputSystem.GetMousePosition + fullName: Voile.Input.RaylibInputSystem.GetMousePosition +- uid: Voile.Input.InputSystem.GetMouseWheelMovement + commentId: M:Voile.Input.InputSystem.GetMouseWheelMovement + parent: Voile.Input.InputSystem + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetMouseWheelMovement + name: GetMouseWheelMovement() + nameWithType: InputSystem.GetMouseWheelMovement() + fullName: Voile.Input.InputSystem.GetMouseWheelMovement() + spec.csharp: + - uid: Voile.Input.InputSystem.GetMouseWheelMovement + name: GetMouseWheelMovement + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetMouseWheelMovement + - name: ( + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.GetMouseWheelMovement + name: GetMouseWheelMovement + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_GetMouseWheelMovement + - name: ( + - name: ) +- uid: Voile.Input.RaylibInputSystem.GetMouseWheelMovement* + commentId: Overload:Voile.Input.RaylibInputSystem.GetMouseWheelMovement + href: Voile.Input.RaylibInputSystem.html#Voile_Input_RaylibInputSystem_GetMouseWheelMovement + name: GetMouseWheelMovement + nameWithType: RaylibInputSystem.GetMouseWheelMovement + fullName: Voile.Input.RaylibInputSystem.GetMouseWheelMovement +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: Voile.Input.InputSystem.HideCursor + commentId: M:Voile.Input.InputSystem.HideCursor + parent: Voile.Input.InputSystem + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_HideCursor + name: HideCursor() + nameWithType: InputSystem.HideCursor() + fullName: Voile.Input.InputSystem.HideCursor() + spec.csharp: + - uid: Voile.Input.InputSystem.HideCursor + name: HideCursor + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_HideCursor + - name: ( + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.HideCursor + name: HideCursor + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_HideCursor + - name: ( + - name: ) +- uid: Voile.Input.RaylibInputSystem.HideCursor* + commentId: Overload:Voile.Input.RaylibInputSystem.HideCursor + href: Voile.Input.RaylibInputSystem.html#Voile_Input_RaylibInputSystem_HideCursor + name: HideCursor + nameWithType: RaylibInputSystem.HideCursor + fullName: Voile.Input.RaylibInputSystem.HideCursor +- uid: Voile.Input.InputSystem.IsActionDown(System.String) + commentId: M:Voile.Input.InputSystem.IsActionDown(System.String) + parent: Voile.Input.InputSystem + isExternal: true + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsActionDown_System_String_ + name: IsActionDown(string) + nameWithType: InputSystem.IsActionDown(string) + fullName: Voile.Input.InputSystem.IsActionDown(string) + nameWithType.vb: InputSystem.IsActionDown(String) + fullName.vb: Voile.Input.InputSystem.IsActionDown(String) + name.vb: IsActionDown(String) + spec.csharp: + - uid: Voile.Input.InputSystem.IsActionDown(System.String) + name: IsActionDown + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsActionDown_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.IsActionDown(System.String) + name: IsActionDown + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsActionDown_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.Input.RaylibInputSystem.IsActionDown* + commentId: Overload:Voile.Input.RaylibInputSystem.IsActionDown + href: Voile.Input.RaylibInputSystem.html#Voile_Input_RaylibInputSystem_IsActionDown_System_String_ + name: IsActionDown + nameWithType: RaylibInputSystem.IsActionDown + fullName: Voile.Input.RaylibInputSystem.IsActionDown +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: Voile.Input.InputSystem.IsActionPressed(System.String) + commentId: M:Voile.Input.InputSystem.IsActionPressed(System.String) + parent: Voile.Input.InputSystem + isExternal: true + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsActionPressed_System_String_ + name: IsActionPressed(string) + nameWithType: InputSystem.IsActionPressed(string) + fullName: Voile.Input.InputSystem.IsActionPressed(string) + nameWithType.vb: InputSystem.IsActionPressed(String) + fullName.vb: Voile.Input.InputSystem.IsActionPressed(String) + name.vb: IsActionPressed(String) + spec.csharp: + - uid: Voile.Input.InputSystem.IsActionPressed(System.String) + name: IsActionPressed + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsActionPressed_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.IsActionPressed(System.String) + name: IsActionPressed + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsActionPressed_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.Input.RaylibInputSystem.IsActionPressed* + commentId: Overload:Voile.Input.RaylibInputSystem.IsActionPressed + href: Voile.Input.RaylibInputSystem.html#Voile_Input_RaylibInputSystem_IsActionPressed_System_String_ + name: IsActionPressed + nameWithType: RaylibInputSystem.IsActionPressed + fullName: Voile.Input.RaylibInputSystem.IsActionPressed +- uid: Voile.Input.InputSystem.IsActionReleased(System.String) + commentId: M:Voile.Input.InputSystem.IsActionReleased(System.String) + parent: Voile.Input.InputSystem + isExternal: true + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsActionReleased_System_String_ + name: IsActionReleased(string) + nameWithType: InputSystem.IsActionReleased(string) + fullName: Voile.Input.InputSystem.IsActionReleased(string) + nameWithType.vb: InputSystem.IsActionReleased(String) + fullName.vb: Voile.Input.InputSystem.IsActionReleased(String) + name.vb: IsActionReleased(String) + spec.csharp: + - uid: Voile.Input.InputSystem.IsActionReleased(System.String) + name: IsActionReleased + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsActionReleased_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.IsActionReleased(System.String) + name: IsActionReleased + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsActionReleased_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.Input.RaylibInputSystem.IsActionReleased* + commentId: Overload:Voile.Input.RaylibInputSystem.IsActionReleased + href: Voile.Input.RaylibInputSystem.html#Voile_Input_RaylibInputSystem_IsActionReleased_System_String_ + name: IsActionReleased + nameWithType: RaylibInputSystem.IsActionReleased + fullName: Voile.Input.RaylibInputSystem.IsActionReleased +- uid: Voile.Input.InputSystem.IsKeyboardKeyDown(Voile.Input.KeyboardKey) + commentId: M:Voile.Input.InputSystem.IsKeyboardKeyDown(Voile.Input.KeyboardKey) + parent: Voile.Input.InputSystem + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsKeyboardKeyDown_Voile_Input_KeyboardKey_ + name: IsKeyboardKeyDown(KeyboardKey) + nameWithType: InputSystem.IsKeyboardKeyDown(KeyboardKey) + fullName: Voile.Input.InputSystem.IsKeyboardKeyDown(Voile.Input.KeyboardKey) + spec.csharp: + - uid: Voile.Input.InputSystem.IsKeyboardKeyDown(Voile.Input.KeyboardKey) + name: IsKeyboardKeyDown + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsKeyboardKeyDown_Voile_Input_KeyboardKey_ + - name: ( + - uid: Voile.Input.KeyboardKey + name: KeyboardKey + href: Voile.Input.KeyboardKey.html + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.IsKeyboardKeyDown(Voile.Input.KeyboardKey) + name: IsKeyboardKeyDown + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsKeyboardKeyDown_Voile_Input_KeyboardKey_ + - name: ( + - uid: Voile.Input.KeyboardKey + name: KeyboardKey + href: Voile.Input.KeyboardKey.html + - name: ) +- uid: Voile.Input.RaylibInputSystem.IsKeyboardKeyDown* + commentId: Overload:Voile.Input.RaylibInputSystem.IsKeyboardKeyDown + href: Voile.Input.RaylibInputSystem.html#Voile_Input_RaylibInputSystem_IsKeyboardKeyDown_Voile_Input_KeyboardKey_ + name: IsKeyboardKeyDown + nameWithType: RaylibInputSystem.IsKeyboardKeyDown + fullName: Voile.Input.RaylibInputSystem.IsKeyboardKeyDown +- uid: Voile.Input.InputSystem.IsMouseButtonDown(Voile.Input.MouseButton) + commentId: M:Voile.Input.InputSystem.IsMouseButtonDown(Voile.Input.MouseButton) + parent: Voile.Input.InputSystem + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsMouseButtonDown_Voile_Input_MouseButton_ + name: IsMouseButtonDown(MouseButton) + nameWithType: InputSystem.IsMouseButtonDown(MouseButton) + fullName: Voile.Input.InputSystem.IsMouseButtonDown(Voile.Input.MouseButton) + spec.csharp: + - uid: Voile.Input.InputSystem.IsMouseButtonDown(Voile.Input.MouseButton) + name: IsMouseButtonDown + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsMouseButtonDown_Voile_Input_MouseButton_ + - name: ( + - uid: Voile.Input.MouseButton + name: MouseButton + href: Voile.Input.MouseButton.html + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.IsMouseButtonDown(Voile.Input.MouseButton) + name: IsMouseButtonDown + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsMouseButtonDown_Voile_Input_MouseButton_ + - name: ( + - uid: Voile.Input.MouseButton + name: MouseButton + href: Voile.Input.MouseButton.html + - name: ) +- uid: Voile.Input.RaylibInputSystem.IsMouseButtonDown* + commentId: Overload:Voile.Input.RaylibInputSystem.IsMouseButtonDown + href: Voile.Input.RaylibInputSystem.html#Voile_Input_RaylibInputSystem_IsMouseButtonDown_Voile_Input_MouseButton_ + name: IsMouseButtonDown + nameWithType: RaylibInputSystem.IsMouseButtonDown + fullName: Voile.Input.RaylibInputSystem.IsMouseButtonDown +- uid: Voile.Input.MouseButton + commentId: T:Voile.Input.MouseButton + parent: Voile.Input + href: Voile.Input.MouseButton.html + name: MouseButton + nameWithType: MouseButton + fullName: Voile.Input.MouseButton +- uid: Voile.Input.InputSystem.KeyboardKeyJustPressed(Voile.Input.KeyboardKey) + commentId: M:Voile.Input.InputSystem.KeyboardKeyJustPressed(Voile.Input.KeyboardKey) + parent: Voile.Input.InputSystem + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_KeyboardKeyJustPressed_Voile_Input_KeyboardKey_ + name: KeyboardKeyJustPressed(KeyboardKey) + nameWithType: InputSystem.KeyboardKeyJustPressed(KeyboardKey) + fullName: Voile.Input.InputSystem.KeyboardKeyJustPressed(Voile.Input.KeyboardKey) + spec.csharp: + - uid: Voile.Input.InputSystem.KeyboardKeyJustPressed(Voile.Input.KeyboardKey) + name: KeyboardKeyJustPressed + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_KeyboardKeyJustPressed_Voile_Input_KeyboardKey_ + - name: ( + - uid: Voile.Input.KeyboardKey + name: KeyboardKey + href: Voile.Input.KeyboardKey.html + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.KeyboardKeyJustPressed(Voile.Input.KeyboardKey) + name: KeyboardKeyJustPressed + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_KeyboardKeyJustPressed_Voile_Input_KeyboardKey_ + - name: ( + - uid: Voile.Input.KeyboardKey + name: KeyboardKey + href: Voile.Input.KeyboardKey.html + - name: ) +- uid: Voile.Input.RaylibInputSystem.KeyboardKeyJustPressed* + commentId: Overload:Voile.Input.RaylibInputSystem.KeyboardKeyJustPressed + href: Voile.Input.RaylibInputSystem.html#Voile_Input_RaylibInputSystem_KeyboardKeyJustPressed_Voile_Input_KeyboardKey_ + name: KeyboardKeyJustPressed + nameWithType: RaylibInputSystem.KeyboardKeyJustPressed + fullName: Voile.Input.RaylibInputSystem.KeyboardKeyJustPressed +- uid: Voile.Input.InputSystem.KeyboardKeyJustReleased(Voile.Input.KeyboardKey) + commentId: M:Voile.Input.InputSystem.KeyboardKeyJustReleased(Voile.Input.KeyboardKey) + parent: Voile.Input.InputSystem + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_KeyboardKeyJustReleased_Voile_Input_KeyboardKey_ + name: KeyboardKeyJustReleased(KeyboardKey) + nameWithType: InputSystem.KeyboardKeyJustReleased(KeyboardKey) + fullName: Voile.Input.InputSystem.KeyboardKeyJustReleased(Voile.Input.KeyboardKey) + spec.csharp: + - uid: Voile.Input.InputSystem.KeyboardKeyJustReleased(Voile.Input.KeyboardKey) + name: KeyboardKeyJustReleased + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_KeyboardKeyJustReleased_Voile_Input_KeyboardKey_ + - name: ( + - uid: Voile.Input.KeyboardKey + name: KeyboardKey + href: Voile.Input.KeyboardKey.html + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.KeyboardKeyJustReleased(Voile.Input.KeyboardKey) + name: KeyboardKeyJustReleased + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_KeyboardKeyJustReleased_Voile_Input_KeyboardKey_ + - name: ( + - uid: Voile.Input.KeyboardKey + name: KeyboardKey + href: Voile.Input.KeyboardKey.html + - name: ) +- uid: Voile.Input.RaylibInputSystem.KeyboardKeyJustReleased* + commentId: Overload:Voile.Input.RaylibInputSystem.KeyboardKeyJustReleased + href: Voile.Input.RaylibInputSystem.html#Voile_Input_RaylibInputSystem_KeyboardKeyJustReleased_Voile_Input_KeyboardKey_ + name: KeyboardKeyJustReleased + nameWithType: RaylibInputSystem.KeyboardKeyJustReleased + fullName: Voile.Input.RaylibInputSystem.KeyboardKeyJustReleased +- uid: Voile.Input.InputSystem.SetMousePosition(System.Numerics.Vector2) + commentId: M:Voile.Input.InputSystem.SetMousePosition(System.Numerics.Vector2) + parent: Voile.Input.InputSystem + isExternal: true + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_SetMousePosition_System_Numerics_Vector2_ + name: SetMousePosition(Vector2) + nameWithType: InputSystem.SetMousePosition(Vector2) + fullName: Voile.Input.InputSystem.SetMousePosition(System.Numerics.Vector2) + spec.csharp: + - uid: Voile.Input.InputSystem.SetMousePosition(System.Numerics.Vector2) + name: SetMousePosition + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_SetMousePosition_System_Numerics_Vector2_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.SetMousePosition(System.Numerics.Vector2) + name: SetMousePosition + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_SetMousePosition_System_Numerics_Vector2_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ) +- uid: Voile.Input.RaylibInputSystem.SetMousePosition* + commentId: Overload:Voile.Input.RaylibInputSystem.SetMousePosition + href: Voile.Input.RaylibInputSystem.html#Voile_Input_RaylibInputSystem_SetMousePosition_System_Numerics_Vector2_ + name: SetMousePosition + nameWithType: RaylibInputSystem.SetMousePosition + fullName: Voile.Input.RaylibInputSystem.SetMousePosition +- uid: Voile.Input.InputSystem.ShowCursor + commentId: M:Voile.Input.InputSystem.ShowCursor + parent: Voile.Input.InputSystem + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_ShowCursor + name: ShowCursor() + nameWithType: InputSystem.ShowCursor() + fullName: Voile.Input.InputSystem.ShowCursor() + spec.csharp: + - uid: Voile.Input.InputSystem.ShowCursor + name: ShowCursor + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_ShowCursor + - name: ( + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.ShowCursor + name: ShowCursor + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_ShowCursor + - name: ( + - name: ) +- uid: Voile.Input.RaylibInputSystem.ShowCursor* + commentId: Overload:Voile.Input.RaylibInputSystem.ShowCursor + href: Voile.Input.RaylibInputSystem.html#Voile_Input_RaylibInputSystem_ShowCursor + name: ShowCursor + nameWithType: RaylibInputSystem.ShowCursor + fullName: Voile.Input.RaylibInputSystem.ShowCursor +- uid: Voile.Input.InputSystem.IsCursorHidden + commentId: M:Voile.Input.InputSystem.IsCursorHidden + parent: Voile.Input.InputSystem + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsCursorHidden + name: IsCursorHidden() + nameWithType: InputSystem.IsCursorHidden() + fullName: Voile.Input.InputSystem.IsCursorHidden() + spec.csharp: + - uid: Voile.Input.InputSystem.IsCursorHidden + name: IsCursorHidden + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsCursorHidden + - name: ( + - name: ) + spec.vb: + - uid: Voile.Input.InputSystem.IsCursorHidden + name: IsCursorHidden + href: Voile.Input.InputSystem.html#Voile_Input_InputSystem_IsCursorHidden + - name: ( + - name: ) +- uid: Voile.Input.RaylibInputSystem.IsCursorHidden* + commentId: Overload:Voile.Input.RaylibInputSystem.IsCursorHidden + href: Voile.Input.RaylibInputSystem.html#Voile_Input_RaylibInputSystem_IsCursorHidden + name: IsCursorHidden + nameWithType: RaylibInputSystem.IsCursorHidden + fullName: Voile.Input.RaylibInputSystem.IsCursorHidden diff --git a/Voile/api/Voile.Input.yml b/Voile/api/Voile.Input.yml new file mode 100644 index 0000000..99d8227 --- /dev/null +++ b/Voile/api/Voile.Input.yml @@ -0,0 +1,84 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Input + commentId: N:Voile.Input + id: Voile.Input + children: + - Voile.Input.InputAction + - Voile.Input.InputSystem + - Voile.Input.KeyInputAction + - Voile.Input.KeyboardKey + - Voile.Input.MouseButton + - Voile.Input.RaylibInputSystem + langs: + - csharp + - vb + name: Voile.Input + nameWithType: Voile.Input + fullName: Voile.Input + type: Namespace + assemblies: + - Voile +references: +- uid: Voile.Input.InputAction + commentId: T:Voile.Input.InputAction + parent: Voile.Input + href: Voile.Input.InputAction.html + name: InputAction + nameWithType: InputAction + fullName: Voile.Input.InputAction +- uid: Voile.Input.KeyInputAction + commentId: T:Voile.Input.KeyInputAction + href: Voile.Input.KeyInputAction.html + name: KeyInputAction + nameWithType: KeyInputAction + fullName: Voile.Input.KeyInputAction +- uid: Voile.Input.InputSystem + commentId: T:Voile.Input.InputSystem + parent: Voile.Input + href: Voile.Input.InputSystem.html + name: InputSystem + nameWithType: InputSystem + fullName: Voile.Input.InputSystem +- uid: Voile.Input.KeyboardKey + commentId: T:Voile.Input.KeyboardKey + parent: Voile.Input + href: Voile.Input.KeyboardKey.html + name: KeyboardKey + nameWithType: KeyboardKey + fullName: Voile.Input.KeyboardKey +- uid: Voile.Input.MouseButton + commentId: T:Voile.Input.MouseButton + parent: Voile.Input + href: Voile.Input.MouseButton.html + name: MouseButton + nameWithType: MouseButton + fullName: Voile.Input.MouseButton +- uid: Voile.Input.RaylibInputSystem + commentId: T:Voile.Input.RaylibInputSystem + href: Voile.Input.RaylibInputSystem.html + name: RaylibInputSystem + nameWithType: RaylibInputSystem + fullName: Voile.Input.RaylibInputSystem +- uid: Voile.Input + commentId: N:Voile.Input + href: Voile.html + name: Voile.Input + nameWithType: Voile.Input + fullName: Voile.Input + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html diff --git a/Voile/api/Voile.InputAction.yml b/Voile/api/Voile.InputAction.yml new file mode 100644 index 0000000..7e0d65e --- /dev/null +++ b/Voile/api/Voile.InputAction.yml @@ -0,0 +1,416 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.InputAction + commentId: T:Voile.InputAction + id: InputAction + parent: Voile + children: + - Voile.InputAction.IsDown(Voile.InputSystem) + - Voile.InputAction.IsPressed(Voile.InputSystem) + - Voile.InputAction.IsReleased(Voile.InputSystem) + langs: + - csharp + - vb + name: InputAction + nameWithType: InputAction + fullName: Voile.InputAction + type: Class + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: InputAction + path: Source/Input/InputAction.cs + startLine: 2 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract class InputAction + content.vb: Public MustInherit Class InputAction + inheritance: + - System.Object + derivedClasses: + - Voile.KeyInputAction + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.InputAction.IsDown(Voile.InputSystem) + commentId: M:Voile.InputAction.IsDown(Voile.InputSystem) + id: IsDown(Voile.InputSystem) + parent: Voile.InputAction + langs: + - csharp + - vb + name: IsDown(InputSystem) + nameWithType: InputAction.IsDown(InputSystem) + fullName: Voile.InputAction.IsDown(Voile.InputSystem) + type: Method + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsDown + path: Source/Input/InputAction.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract bool IsDown(InputSystem inputHandler) + parameters: + - id: inputHandler + type: Voile.InputSystem + return: + type: System.Boolean + content.vb: Public MustOverride Function IsDown(inputHandler As InputSystem) As Boolean + overload: Voile.InputAction.IsDown* +- uid: Voile.InputAction.IsPressed(Voile.InputSystem) + commentId: M:Voile.InputAction.IsPressed(Voile.InputSystem) + id: IsPressed(Voile.InputSystem) + parent: Voile.InputAction + langs: + - csharp + - vb + name: IsPressed(InputSystem) + nameWithType: InputAction.IsPressed(InputSystem) + fullName: Voile.InputAction.IsPressed(Voile.InputSystem) + type: Method + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsPressed + path: Source/Input/InputAction.cs + startLine: 5 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract bool IsPressed(InputSystem inputHandler) + parameters: + - id: inputHandler + type: Voile.InputSystem + return: + type: System.Boolean + content.vb: Public MustOverride Function IsPressed(inputHandler As InputSystem) As Boolean + overload: Voile.InputAction.IsPressed* +- uid: Voile.InputAction.IsReleased(Voile.InputSystem) + commentId: M:Voile.InputAction.IsReleased(Voile.InputSystem) + id: IsReleased(Voile.InputSystem) + parent: Voile.InputAction + langs: + - csharp + - vb + name: IsReleased(InputSystem) + nameWithType: InputAction.IsReleased(InputSystem) + fullName: Voile.InputAction.IsReleased(Voile.InputSystem) + type: Method + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsReleased + path: Source/Input/InputAction.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract bool IsReleased(InputSystem inputHandler) + parameters: + - id: inputHandler + type: Voile.InputSystem + return: + type: System.Boolean + content.vb: Public MustOverride Function IsReleased(inputHandler As InputSystem) As Boolean + overload: Voile.InputAction.IsReleased* +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.InputAction.IsDown* + commentId: Overload:Voile.InputAction.IsDown + href: Voile.InputAction.html#Voile_InputAction_IsDown_Voile_InputSystem_ + name: IsDown + nameWithType: InputAction.IsDown + fullName: Voile.InputAction.IsDown +- uid: Voile.InputSystem + commentId: T:Voile.InputSystem + parent: Voile + href: Voile.InputSystem.html + name: InputSystem + nameWithType: InputSystem + fullName: Voile.InputSystem +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: Voile.InputAction.IsPressed* + commentId: Overload:Voile.InputAction.IsPressed + href: Voile.InputAction.html#Voile_InputAction_IsPressed_Voile_InputSystem_ + name: IsPressed + nameWithType: InputAction.IsPressed + fullName: Voile.InputAction.IsPressed +- uid: Voile.InputAction.IsReleased* + commentId: Overload:Voile.InputAction.IsReleased + href: Voile.InputAction.html#Voile_InputAction_IsReleased_Voile_InputSystem_ + name: IsReleased + nameWithType: InputAction.IsReleased + fullName: Voile.InputAction.IsReleased diff --git a/Voile/api/Voile.InputSystem.yml b/Voile/api/Voile.InputSystem.yml new file mode 100644 index 0000000..3f25772 --- /dev/null +++ b/Voile/api/Voile.InputSystem.yml @@ -0,0 +1,1655 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.InputSystem + commentId: T:Voile.InputSystem + id: InputSystem + parent: Voile + children: + - Voile.InputSystem.AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.InputAction}) + - Voile.InputSystem.Dispose + - Voile.InputSystem.GetCharPressed + - Voile.InputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + - Voile.InputSystem.GetInputDirection(Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey) + - Voile.InputSystem.GetMousePosition + - Voile.InputSystem.GetMouseWheelMovement + - Voile.InputSystem.Handled + - Voile.InputSystem.HideCursor + - Voile.InputSystem.InputMappings + - Voile.InputSystem.IsActionDown(System.String) + - Voile.InputSystem.IsActionPressed(System.String) + - Voile.InputSystem.IsActionReleased(System.String) + - Voile.InputSystem.IsCursorHidden + - Voile.InputSystem.IsKeyboardKeyDown(Voile.KeyboardKey) + - Voile.InputSystem.IsMouseButtonDown(Voile.MouseButton) + - Voile.InputSystem.KeyboardKeyJustPressed(Voile.KeyboardKey) + - Voile.InputSystem.KeyboardKeyJustReleased(Voile.KeyboardKey) + - Voile.InputSystem.SetAsHandled + - Voile.InputSystem.SetMousePosition(System.Numerics.Vector2) + - Voile.InputSystem.ShowCursor + - Voile.InputSystem.Shutdown + - Voile.InputSystem.Start + - Voile.InputSystem.TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.InputAction}@) + - Voile.InputSystem.inputMappings + langs: + - csharp + - vb + name: InputSystem + nameWithType: InputSystem + fullName: Voile.InputSystem + type: Class + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: InputSystem + path: Source/Systems/InputSystem.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile + summary: A system providing means for collecting user input, as well as defining custom list. + example: [] + syntax: + content: 'public abstract class InputSystem : IStartableSystem, IDisposable' + content.vb: Public MustInherit Class InputSystem Implements IStartableSystem, IDisposable + inheritance: + - System.Object + derivedClasses: + - Voile.RaylibInputSystem + implements: + - IStartableSystem + - System.IDisposable + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.InputSystem.InputMappings + commentId: P:Voile.InputSystem.InputMappings + id: InputMappings + parent: Voile.InputSystem + langs: + - csharp + - vb + name: InputMappings + nameWithType: InputSystem.InputMappings + fullName: Voile.InputSystem.InputMappings + type: Property + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: InputMappings + path: Source/Systems/InputSystem.cs + startLine: 14 + assemblies: + - Voile + namespace: Voile + summary: The list of all available input mappings, custom and built-in. + example: [] + syntax: + content: public static IReadOnlyDictionary> InputMappings { get; } + parameters: [] + return: + type: System.Collections.Generic.IReadOnlyDictionary{System.String,System.Collections.Generic.List{Voile.InputAction}} + content.vb: Public Shared ReadOnly Property InputMappings As IReadOnlyDictionary(Of String, List(Of InputAction)) + overload: Voile.InputSystem.InputMappings* +- uid: Voile.InputSystem.Start + commentId: M:Voile.InputSystem.Start + id: Start + parent: Voile.InputSystem + langs: + - csharp + - vb + name: Start() + nameWithType: InputSystem.Start() + fullName: Voile.InputSystem.Start() + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Start + path: Source/Systems/InputSystem.cs + startLine: 16 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public void Start() + content.vb: Public Sub Start() + overload: Voile.InputSystem.Start* + implements: + - IStartableSystem.Start +- uid: Voile.InputSystem.Shutdown + commentId: M:Voile.InputSystem.Shutdown + id: Shutdown + parent: Voile.InputSystem + langs: + - csharp + - vb + name: Shutdown() + nameWithType: InputSystem.Shutdown() + fullName: Voile.InputSystem.Shutdown() + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Shutdown + path: Source/Systems/InputSystem.cs + startLine: 22 + assemblies: + - Voile + namespace: Voile + syntax: + content: public void Shutdown() + content.vb: Public Sub Shutdown() + overload: Voile.InputSystem.Shutdown* +- uid: Voile.InputSystem.Dispose + commentId: M:Voile.InputSystem.Dispose + id: Dispose + parent: Voile.InputSystem + langs: + - csharp + - vb + name: Dispose() + nameWithType: InputSystem.Dispose() + fullName: Voile.InputSystem.Dispose() + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Dispose + path: Source/Systems/InputSystem.cs + startLine: 24 + assemblies: + - Voile + namespace: Voile + summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + example: [] + syntax: + content: public void Dispose() + content.vb: Public Sub Dispose() + overload: Voile.InputSystem.Dispose* + implements: + - System.IDisposable.Dispose +- uid: Voile.InputSystem.Handled + commentId: P:Voile.InputSystem.Handled + id: Handled + parent: Voile.InputSystem + langs: + - csharp + - vb + name: Handled + nameWithType: InputSystem.Handled + fullName: Voile.InputSystem.Handled + type: Property + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Handled + path: Source/Systems/InputSystem.cs + startLine: 26 + assemblies: + - Voile + namespace: Voile + syntax: + content: public bool Handled { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property Handled As Boolean + overload: Voile.InputSystem.Handled* +- uid: Voile.InputSystem.IsKeyboardKeyDown(Voile.KeyboardKey) + commentId: M:Voile.InputSystem.IsKeyboardKeyDown(Voile.KeyboardKey) + id: IsKeyboardKeyDown(Voile.KeyboardKey) + parent: Voile.InputSystem + langs: + - csharp + - vb + name: IsKeyboardKeyDown(KeyboardKey) + nameWithType: InputSystem.IsKeyboardKeyDown(KeyboardKey) + fullName: Voile.InputSystem.IsKeyboardKeyDown(Voile.KeyboardKey) + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsKeyboardKeyDown + path: Source/Systems/InputSystem.cs + startLine: 27 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract bool IsKeyboardKeyDown(KeyboardKey key) + parameters: + - id: key + type: Voile.KeyboardKey + return: + type: System.Boolean + content.vb: Public MustOverride Function IsKeyboardKeyDown(key As KeyboardKey) As Boolean + overload: Voile.InputSystem.IsKeyboardKeyDown* +- uid: Voile.InputSystem.KeyboardKeyJustPressed(Voile.KeyboardKey) + commentId: M:Voile.InputSystem.KeyboardKeyJustPressed(Voile.KeyboardKey) + id: KeyboardKeyJustPressed(Voile.KeyboardKey) + parent: Voile.InputSystem + langs: + - csharp + - vb + name: KeyboardKeyJustPressed(KeyboardKey) + nameWithType: InputSystem.KeyboardKeyJustPressed(KeyboardKey) + fullName: Voile.InputSystem.KeyboardKeyJustPressed(Voile.KeyboardKey) + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KeyboardKeyJustPressed + path: Source/Systems/InputSystem.cs + startLine: 28 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract bool KeyboardKeyJustPressed(KeyboardKey key) + parameters: + - id: key + type: Voile.KeyboardKey + return: + type: System.Boolean + content.vb: Public MustOverride Function KeyboardKeyJustPressed(key As KeyboardKey) As Boolean + overload: Voile.InputSystem.KeyboardKeyJustPressed* +- uid: Voile.InputSystem.KeyboardKeyJustReleased(Voile.KeyboardKey) + commentId: M:Voile.InputSystem.KeyboardKeyJustReleased(Voile.KeyboardKey) + id: KeyboardKeyJustReleased(Voile.KeyboardKey) + parent: Voile.InputSystem + langs: + - csharp + - vb + name: KeyboardKeyJustReleased(KeyboardKey) + nameWithType: InputSystem.KeyboardKeyJustReleased(KeyboardKey) + fullName: Voile.InputSystem.KeyboardKeyJustReleased(Voile.KeyboardKey) + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KeyboardKeyJustReleased + path: Source/Systems/InputSystem.cs + startLine: 29 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract bool KeyboardKeyJustReleased(KeyboardKey key) + parameters: + - id: key + type: Voile.KeyboardKey + return: + type: System.Boolean + content.vb: Public MustOverride Function KeyboardKeyJustReleased(key As KeyboardKey) As Boolean + overload: Voile.InputSystem.KeyboardKeyJustReleased* +- uid: Voile.InputSystem.GetInputDirection(Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey) + commentId: M:Voile.InputSystem.GetInputDirection(Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey) + id: GetInputDirection(Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey) + parent: Voile.InputSystem + langs: + - csharp + - vb + name: GetInputDirection(KeyboardKey, KeyboardKey, KeyboardKey, KeyboardKey) + nameWithType: InputSystem.GetInputDirection(KeyboardKey, KeyboardKey, KeyboardKey, KeyboardKey) + fullName: Voile.InputSystem.GetInputDirection(Voile.KeyboardKey, Voile.KeyboardKey, Voile.KeyboardKey, Voile.KeyboardKey) + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetInputDirection + path: Source/Systems/InputSystem.cs + startLine: 30 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract Vector2 GetInputDirection(KeyboardKey leftKey, KeyboardKey rightKey, KeyboardKey upKey, KeyboardKey downKey) + parameters: + - id: leftKey + type: Voile.KeyboardKey + - id: rightKey + type: Voile.KeyboardKey + - id: upKey + type: Voile.KeyboardKey + - id: downKey + type: Voile.KeyboardKey + return: + type: System.Numerics.Vector2 + content.vb: Public MustOverride Function GetInputDirection(leftKey As KeyboardKey, rightKey As KeyboardKey, upKey As KeyboardKey, downKey As KeyboardKey) As Vector2 + overload: Voile.InputSystem.GetInputDirection* +- uid: Voile.InputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + commentId: M:Voile.InputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + id: GetInputDirection(System.String,System.String,System.String,System.String) + parent: Voile.InputSystem + langs: + - csharp + - vb + name: GetInputDirection(string, string, string, string) + nameWithType: InputSystem.GetInputDirection(string, string, string, string) + fullName: Voile.InputSystem.GetInputDirection(string, string, string, string) + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetInputDirection + path: Source/Systems/InputSystem.cs + startLine: 31 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract Vector2 GetInputDirection(string leftAction, string rightAction, string upAction, string downAction) + parameters: + - id: leftAction + type: System.String + - id: rightAction + type: System.String + - id: upAction + type: System.String + - id: downAction + type: System.String + return: + type: System.Numerics.Vector2 + content.vb: Public MustOverride Function GetInputDirection(leftAction As String, rightAction As String, upAction As String, downAction As String) As Vector2 + overload: Voile.InputSystem.GetInputDirection* + nameWithType.vb: InputSystem.GetInputDirection(String, String, String, String) + fullName.vb: Voile.InputSystem.GetInputDirection(String, String, String, String) + name.vb: GetInputDirection(String, String, String, String) +- uid: Voile.InputSystem.GetCharPressed + commentId: M:Voile.InputSystem.GetCharPressed + id: GetCharPressed + parent: Voile.InputSystem + langs: + - csharp + - vb + name: GetCharPressed() + nameWithType: InputSystem.GetCharPressed() + fullName: Voile.InputSystem.GetCharPressed() + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetCharPressed + path: Source/Systems/InputSystem.cs + startLine: 32 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract int GetCharPressed() + return: + type: System.Int32 + content.vb: Public MustOverride Function GetCharPressed() As Integer + overload: Voile.InputSystem.GetCharPressed* +- uid: Voile.InputSystem.IsActionDown(System.String) + commentId: M:Voile.InputSystem.IsActionDown(System.String) + id: IsActionDown(System.String) + parent: Voile.InputSystem + langs: + - csharp + - vb + name: IsActionDown(string) + nameWithType: InputSystem.IsActionDown(string) + fullName: Voile.InputSystem.IsActionDown(string) + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsActionDown + path: Source/Systems/InputSystem.cs + startLine: 34 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract bool IsActionDown(string action) + parameters: + - id: action + type: System.String + return: + type: System.Boolean + content.vb: Public MustOverride Function IsActionDown(action As String) As Boolean + overload: Voile.InputSystem.IsActionDown* + nameWithType.vb: InputSystem.IsActionDown(String) + fullName.vb: Voile.InputSystem.IsActionDown(String) + name.vb: IsActionDown(String) +- uid: Voile.InputSystem.IsActionPressed(System.String) + commentId: M:Voile.InputSystem.IsActionPressed(System.String) + id: IsActionPressed(System.String) + parent: Voile.InputSystem + langs: + - csharp + - vb + name: IsActionPressed(string) + nameWithType: InputSystem.IsActionPressed(string) + fullName: Voile.InputSystem.IsActionPressed(string) + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsActionPressed + path: Source/Systems/InputSystem.cs + startLine: 35 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract bool IsActionPressed(string action) + parameters: + - id: action + type: System.String + return: + type: System.Boolean + content.vb: Public MustOverride Function IsActionPressed(action As String) As Boolean + overload: Voile.InputSystem.IsActionPressed* + nameWithType.vb: InputSystem.IsActionPressed(String) + fullName.vb: Voile.InputSystem.IsActionPressed(String) + name.vb: IsActionPressed(String) +- uid: Voile.InputSystem.IsActionReleased(System.String) + commentId: M:Voile.InputSystem.IsActionReleased(System.String) + id: IsActionReleased(System.String) + parent: Voile.InputSystem + langs: + - csharp + - vb + name: IsActionReleased(string) + nameWithType: InputSystem.IsActionReleased(string) + fullName: Voile.InputSystem.IsActionReleased(string) + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsActionReleased + path: Source/Systems/InputSystem.cs + startLine: 36 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract bool IsActionReleased(string action) + parameters: + - id: action + type: System.String + return: + type: System.Boolean + content.vb: Public MustOverride Function IsActionReleased(action As String) As Boolean + overload: Voile.InputSystem.IsActionReleased* + nameWithType.vb: InputSystem.IsActionReleased(String) + fullName.vb: Voile.InputSystem.IsActionReleased(String) + name.vb: IsActionReleased(String) +- uid: Voile.InputSystem.IsMouseButtonDown(Voile.MouseButton) + commentId: M:Voile.InputSystem.IsMouseButtonDown(Voile.MouseButton) + id: IsMouseButtonDown(Voile.MouseButton) + parent: Voile.InputSystem + langs: + - csharp + - vb + name: IsMouseButtonDown(MouseButton) + nameWithType: InputSystem.IsMouseButtonDown(MouseButton) + fullName: Voile.InputSystem.IsMouseButtonDown(Voile.MouseButton) + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsMouseButtonDown + path: Source/Systems/InputSystem.cs + startLine: 38 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract bool IsMouseButtonDown(MouseButton button) + parameters: + - id: button + type: Voile.MouseButton + return: + type: System.Boolean + content.vb: Public MustOverride Function IsMouseButtonDown(button As MouseButton) As Boolean + overload: Voile.InputSystem.IsMouseButtonDown* +- uid: Voile.InputSystem.GetMouseWheelMovement + commentId: M:Voile.InputSystem.GetMouseWheelMovement + id: GetMouseWheelMovement + parent: Voile.InputSystem + langs: + - csharp + - vb + name: GetMouseWheelMovement() + nameWithType: InputSystem.GetMouseWheelMovement() + fullName: Voile.InputSystem.GetMouseWheelMovement() + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetMouseWheelMovement + path: Source/Systems/InputSystem.cs + startLine: 39 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract float GetMouseWheelMovement() + return: + type: System.Single + content.vb: Public MustOverride Function GetMouseWheelMovement() As Single + overload: Voile.InputSystem.GetMouseWheelMovement* +- uid: Voile.InputSystem.SetMousePosition(System.Numerics.Vector2) + commentId: M:Voile.InputSystem.SetMousePosition(System.Numerics.Vector2) + id: SetMousePosition(System.Numerics.Vector2) + parent: Voile.InputSystem + langs: + - csharp + - vb + name: SetMousePosition(Vector2) + nameWithType: InputSystem.SetMousePosition(Vector2) + fullName: Voile.InputSystem.SetMousePosition(System.Numerics.Vector2) + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetMousePosition + path: Source/Systems/InputSystem.cs + startLine: 40 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract void SetMousePosition(Vector2 position) + parameters: + - id: position + type: System.Numerics.Vector2 + content.vb: Public MustOverride Sub SetMousePosition(position As Vector2) + overload: Voile.InputSystem.SetMousePosition* +- uid: Voile.InputSystem.GetMousePosition + commentId: M:Voile.InputSystem.GetMousePosition + id: GetMousePosition + parent: Voile.InputSystem + langs: + - csharp + - vb + name: GetMousePosition() + nameWithType: InputSystem.GetMousePosition() + fullName: Voile.InputSystem.GetMousePosition() + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetMousePosition + path: Source/Systems/InputSystem.cs + startLine: 41 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract Vector2 GetMousePosition() + return: + type: System.Numerics.Vector2 + content.vb: Public MustOverride Function GetMousePosition() As Vector2 + overload: Voile.InputSystem.GetMousePosition* +- uid: Voile.InputSystem.HideCursor + commentId: M:Voile.InputSystem.HideCursor + id: HideCursor + parent: Voile.InputSystem + langs: + - csharp + - vb + name: HideCursor() + nameWithType: InputSystem.HideCursor() + fullName: Voile.InputSystem.HideCursor() + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: HideCursor + path: Source/Systems/InputSystem.cs + startLine: 42 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract void HideCursor() + content.vb: Public MustOverride Sub HideCursor() + overload: Voile.InputSystem.HideCursor* +- uid: Voile.InputSystem.ShowCursor + commentId: M:Voile.InputSystem.ShowCursor + id: ShowCursor + parent: Voile.InputSystem + langs: + - csharp + - vb + name: ShowCursor() + nameWithType: InputSystem.ShowCursor() + fullName: Voile.InputSystem.ShowCursor() + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ShowCursor + path: Source/Systems/InputSystem.cs + startLine: 43 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract void ShowCursor() + content.vb: Public MustOverride Sub ShowCursor() + overload: Voile.InputSystem.ShowCursor* +- uid: Voile.InputSystem.IsCursorHidden + commentId: M:Voile.InputSystem.IsCursorHidden + id: IsCursorHidden + parent: Voile.InputSystem + langs: + - csharp + - vb + name: IsCursorHidden() + nameWithType: InputSystem.IsCursorHidden() + fullName: Voile.InputSystem.IsCursorHidden() + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsCursorHidden + path: Source/Systems/InputSystem.cs + startLine: 44 + assemblies: + - Voile + namespace: Voile + syntax: + content: public abstract bool IsCursorHidden() + return: + type: System.Boolean + content.vb: Public MustOverride Function IsCursorHidden() As Boolean + overload: Voile.InputSystem.IsCursorHidden* +- uid: Voile.InputSystem.SetAsHandled + commentId: M:Voile.InputSystem.SetAsHandled + id: SetAsHandled + parent: Voile.InputSystem + langs: + - csharp + - vb + name: SetAsHandled() + nameWithType: InputSystem.SetAsHandled() + fullName: Voile.InputSystem.SetAsHandled() + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetAsHandled + path: Source/Systems/InputSystem.cs + startLine: 46 + assemblies: + - Voile + namespace: Voile + syntax: + content: public void SetAsHandled() + content.vb: Public Sub SetAsHandled() + overload: Voile.InputSystem.SetAsHandled* +- uid: Voile.InputSystem.AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.InputAction}) + commentId: M:Voile.InputSystem.AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.InputAction}) + id: AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.InputAction}) + parent: Voile.InputSystem + langs: + - csharp + - vb + name: AddInputMapping(string, IEnumerable) + nameWithType: InputSystem.AddInputMapping(string, IEnumerable) + fullName: Voile.InputSystem.AddInputMapping(string, System.Collections.Generic.IEnumerable) + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AddInputMapping + path: Source/Systems/InputSystem.cs + startLine: 48 + assemblies: + - Voile + namespace: Voile + syntax: + content: public void AddInputMapping(string actionName, IEnumerable inputActions) + parameters: + - id: actionName + type: System.String + - id: inputActions + type: System.Collections.Generic.IEnumerable{Voile.InputAction} + content.vb: Public Sub AddInputMapping(actionName As String, inputActions As IEnumerable(Of InputAction)) + overload: Voile.InputSystem.AddInputMapping* + nameWithType.vb: InputSystem.AddInputMapping(String, IEnumerable(Of InputAction)) + fullName.vb: Voile.InputSystem.AddInputMapping(String, System.Collections.Generic.IEnumerable(Of Voile.InputAction)) + name.vb: AddInputMapping(String, IEnumerable(Of InputAction)) +- uid: Voile.InputSystem.TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.InputAction}@) + commentId: M:Voile.InputSystem.TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.InputAction}@) + id: TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.InputAction}@) + parent: Voile.InputSystem + langs: + - csharp + - vb + name: TryGetInputMappings(string, out IEnumerable?) + nameWithType: InputSystem.TryGetInputMappings(string, out IEnumerable?) + fullName: Voile.InputSystem.TryGetInputMappings(string, out System.Collections.Generic.IEnumerable?) + type: Method + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: TryGetInputMappings + path: Source/Systems/InputSystem.cs + startLine: 73 + assemblies: + - Voile + namespace: Voile + syntax: + content: protected bool TryGetInputMappings(string forAction, out IEnumerable? inputActions) + parameters: + - id: forAction + type: System.String + - id: inputActions + type: System.Collections.Generic.IEnumerable{Voile.InputAction} + return: + type: System.Boolean + content.vb: Protected Function TryGetInputMappings(forAction As String, inputActions As IEnumerable(Of InputAction)) As Boolean + overload: Voile.InputSystem.TryGetInputMappings* + nameWithType.vb: InputSystem.TryGetInputMappings(String, IEnumerable(Of InputAction)) + fullName.vb: Voile.InputSystem.TryGetInputMappings(String, System.Collections.Generic.IEnumerable(Of Voile.InputAction)) + name.vb: TryGetInputMappings(String, IEnumerable(Of InputAction)) +- uid: Voile.InputSystem.inputMappings + commentId: F:Voile.InputSystem.inputMappings + id: inputMappings + parent: Voile.InputSystem + langs: + - csharp + - vb + name: inputMappings + nameWithType: InputSystem.inputMappings + fullName: Voile.InputSystem.inputMappings + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: inputMappings + path: Source/Systems/InputSystem.cs + startLine: 89 + assemblies: + - Voile + namespace: Voile + syntax: + content: protected static Dictionary> inputMappings + return: + type: System.Collections.Generic.Dictionary{System.String,System.Collections.Generic.List{Voile.InputAction}} + content.vb: Protected Shared inputMappings As Dictionary(Of String, List(Of InputAction)) +references: +- uid: Voile.InputAction + commentId: T:Voile.InputAction + parent: Voile + href: Voile.InputAction.html + name: InputAction + nameWithType: InputAction + fullName: Voile.InputAction +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: IStartableSystem + commentId: T:IStartableSystem + href: IStartableSystem.html + name: IStartableSystem + nameWithType: IStartableSystem + fullName: IStartableSystem +- uid: System.IDisposable + commentId: T:System.IDisposable + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable + name: IDisposable + nameWithType: IDisposable + fullName: System.IDisposable +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.InputSystem.InputMappings* + commentId: Overload:Voile.InputSystem.InputMappings + href: Voile.InputSystem.html#Voile_InputSystem_InputMappings + name: InputMappings + nameWithType: InputSystem.InputMappings + fullName: Voile.InputSystem.InputMappings +- uid: System.Collections.Generic.IReadOnlyDictionary{System.String,System.Collections.Generic.List{Voile.InputAction}} + commentId: T:System.Collections.Generic.IReadOnlyDictionary{System.String,System.Collections.Generic.List{Voile.InputAction}} + parent: System.Collections.Generic + definition: System.Collections.Generic.IReadOnlyDictionary`2 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 + name: IReadOnlyDictionary> + nameWithType: IReadOnlyDictionary> + fullName: System.Collections.Generic.IReadOnlyDictionary> + nameWithType.vb: IReadOnlyDictionary(Of String, List(Of InputAction)) + fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of String, System.Collections.Generic.List(Of Voile.InputAction)) + name.vb: IReadOnlyDictionary(Of String, List(Of InputAction)) + spec.csharp: + - uid: System.Collections.Generic.IReadOnlyDictionary`2 + name: IReadOnlyDictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: Voile.InputAction + name: InputAction + href: Voile.InputAction.html + - name: '>' + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IReadOnlyDictionary`2 + name: IReadOnlyDictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: Voile.InputAction + name: InputAction + href: Voile.InputAction.html + - name: ) + - name: ) +- uid: System.Collections.Generic.IReadOnlyDictionary`2 + commentId: T:System.Collections.Generic.IReadOnlyDictionary`2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 + name: IReadOnlyDictionary + nameWithType: IReadOnlyDictionary + fullName: System.Collections.Generic.IReadOnlyDictionary + nameWithType.vb: IReadOnlyDictionary(Of TKey, TValue) + fullName.vb: System.Collections.Generic.IReadOnlyDictionary(Of TKey, TValue) + name.vb: IReadOnlyDictionary(Of TKey, TValue) + spec.csharp: + - uid: System.Collections.Generic.IReadOnlyDictionary`2 + name: IReadOnlyDictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 + - name: < + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IReadOnlyDictionary`2 + name: IReadOnlyDictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2 + - name: ( + - name: Of + - name: " " + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: Voile.InputSystem.Start* + commentId: Overload:Voile.InputSystem.Start + href: Voile.InputSystem.html#Voile_InputSystem_Start + name: Start + nameWithType: InputSystem.Start + fullName: Voile.InputSystem.Start +- uid: IStartableSystem.Start + commentId: M:IStartableSystem.Start + parent: IStartableSystem + href: IStartableSystem.html#IStartableSystem_Start + name: Start() + nameWithType: IStartableSystem.Start() + fullName: IStartableSystem.Start() + spec.csharp: + - uid: IStartableSystem.Start + name: Start + href: IStartableSystem.html#IStartableSystem_Start + - name: ( + - name: ) + spec.vb: + - uid: IStartableSystem.Start + name: Start + href: IStartableSystem.html#IStartableSystem_Start + - name: ( + - name: ) +- uid: Voile.InputSystem.Shutdown* + commentId: Overload:Voile.InputSystem.Shutdown + href: Voile.InputSystem.html#Voile_InputSystem_Shutdown + name: Shutdown + nameWithType: InputSystem.Shutdown + fullName: Voile.InputSystem.Shutdown +- uid: Voile.InputSystem.Dispose* + commentId: Overload:Voile.InputSystem.Dispose + href: Voile.InputSystem.html#Voile_InputSystem_Dispose + name: Dispose + nameWithType: InputSystem.Dispose + fullName: Voile.InputSystem.Dispose +- uid: System.IDisposable.Dispose + commentId: M:System.IDisposable.Dispose + parent: System.IDisposable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + name: Dispose() + nameWithType: IDisposable.Dispose() + fullName: System.IDisposable.Dispose() + spec.csharp: + - uid: System.IDisposable.Dispose + name: Dispose + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + - name: ( + - name: ) + spec.vb: + - uid: System.IDisposable.Dispose + name: Dispose + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + - name: ( + - name: ) +- uid: Voile.InputSystem.Handled* + commentId: Overload:Voile.InputSystem.Handled + href: Voile.InputSystem.html#Voile_InputSystem_Handled + name: Handled + nameWithType: InputSystem.Handled + fullName: Voile.InputSystem.Handled +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: Voile.InputSystem.IsKeyboardKeyDown* + commentId: Overload:Voile.InputSystem.IsKeyboardKeyDown + href: Voile.InputSystem.html#Voile_InputSystem_IsKeyboardKeyDown_Voile_KeyboardKey_ + name: IsKeyboardKeyDown + nameWithType: InputSystem.IsKeyboardKeyDown + fullName: Voile.InputSystem.IsKeyboardKeyDown +- uid: Voile.KeyboardKey + commentId: T:Voile.KeyboardKey + parent: Voile + href: Voile.KeyboardKey.html + name: KeyboardKey + nameWithType: KeyboardKey + fullName: Voile.KeyboardKey +- uid: Voile.InputSystem.KeyboardKeyJustPressed* + commentId: Overload:Voile.InputSystem.KeyboardKeyJustPressed + href: Voile.InputSystem.html#Voile_InputSystem_KeyboardKeyJustPressed_Voile_KeyboardKey_ + name: KeyboardKeyJustPressed + nameWithType: InputSystem.KeyboardKeyJustPressed + fullName: Voile.InputSystem.KeyboardKeyJustPressed +- uid: Voile.InputSystem.KeyboardKeyJustReleased* + commentId: Overload:Voile.InputSystem.KeyboardKeyJustReleased + href: Voile.InputSystem.html#Voile_InputSystem_KeyboardKeyJustReleased_Voile_KeyboardKey_ + name: KeyboardKeyJustReleased + nameWithType: InputSystem.KeyboardKeyJustReleased + fullName: Voile.InputSystem.KeyboardKeyJustReleased +- uid: Voile.InputSystem.GetInputDirection* + commentId: Overload:Voile.InputSystem.GetInputDirection + href: Voile.InputSystem.html#Voile_InputSystem_GetInputDirection_Voile_KeyboardKey_Voile_KeyboardKey_Voile_KeyboardKey_Voile_KeyboardKey_ + name: GetInputDirection + nameWithType: InputSystem.GetInputDirection + fullName: Voile.InputSystem.GetInputDirection +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.InputSystem.GetCharPressed* + commentId: Overload:Voile.InputSystem.GetCharPressed + href: Voile.InputSystem.html#Voile_InputSystem_GetCharPressed + name: GetCharPressed + nameWithType: InputSystem.GetCharPressed + fullName: Voile.InputSystem.GetCharPressed +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: Voile.InputSystem.IsActionDown* + commentId: Overload:Voile.InputSystem.IsActionDown + href: Voile.InputSystem.html#Voile_InputSystem_IsActionDown_System_String_ + name: IsActionDown + nameWithType: InputSystem.IsActionDown + fullName: Voile.InputSystem.IsActionDown +- uid: Voile.InputSystem.IsActionPressed* + commentId: Overload:Voile.InputSystem.IsActionPressed + href: Voile.InputSystem.html#Voile_InputSystem_IsActionPressed_System_String_ + name: IsActionPressed + nameWithType: InputSystem.IsActionPressed + fullName: Voile.InputSystem.IsActionPressed +- uid: Voile.InputSystem.IsActionReleased* + commentId: Overload:Voile.InputSystem.IsActionReleased + href: Voile.InputSystem.html#Voile_InputSystem_IsActionReleased_System_String_ + name: IsActionReleased + nameWithType: InputSystem.IsActionReleased + fullName: Voile.InputSystem.IsActionReleased +- uid: Voile.InputSystem.IsMouseButtonDown* + commentId: Overload:Voile.InputSystem.IsMouseButtonDown + href: Voile.InputSystem.html#Voile_InputSystem_IsMouseButtonDown_Voile_MouseButton_ + name: IsMouseButtonDown + nameWithType: InputSystem.IsMouseButtonDown + fullName: Voile.InputSystem.IsMouseButtonDown +- uid: Voile.MouseButton + commentId: T:Voile.MouseButton + parent: Voile + href: Voile.MouseButton.html + name: MouseButton + nameWithType: MouseButton + fullName: Voile.MouseButton +- uid: Voile.InputSystem.GetMouseWheelMovement* + commentId: Overload:Voile.InputSystem.GetMouseWheelMovement + href: Voile.InputSystem.html#Voile_InputSystem_GetMouseWheelMovement + name: GetMouseWheelMovement + nameWithType: InputSystem.GetMouseWheelMovement + fullName: Voile.InputSystem.GetMouseWheelMovement +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: Voile.InputSystem.SetMousePosition* + commentId: Overload:Voile.InputSystem.SetMousePosition + href: Voile.InputSystem.html#Voile_InputSystem_SetMousePosition_System_Numerics_Vector2_ + name: SetMousePosition + nameWithType: InputSystem.SetMousePosition + fullName: Voile.InputSystem.SetMousePosition +- uid: Voile.InputSystem.GetMousePosition* + commentId: Overload:Voile.InputSystem.GetMousePosition + href: Voile.InputSystem.html#Voile_InputSystem_GetMousePosition + name: GetMousePosition + nameWithType: InputSystem.GetMousePosition + fullName: Voile.InputSystem.GetMousePosition +- uid: Voile.InputSystem.HideCursor* + commentId: Overload:Voile.InputSystem.HideCursor + href: Voile.InputSystem.html#Voile_InputSystem_HideCursor + name: HideCursor + nameWithType: InputSystem.HideCursor + fullName: Voile.InputSystem.HideCursor +- uid: Voile.InputSystem.ShowCursor* + commentId: Overload:Voile.InputSystem.ShowCursor + href: Voile.InputSystem.html#Voile_InputSystem_ShowCursor + name: ShowCursor + nameWithType: InputSystem.ShowCursor + fullName: Voile.InputSystem.ShowCursor +- uid: Voile.InputSystem.IsCursorHidden* + commentId: Overload:Voile.InputSystem.IsCursorHidden + href: Voile.InputSystem.html#Voile_InputSystem_IsCursorHidden + name: IsCursorHidden + nameWithType: InputSystem.IsCursorHidden + fullName: Voile.InputSystem.IsCursorHidden +- uid: Voile.InputSystem.SetAsHandled* + commentId: Overload:Voile.InputSystem.SetAsHandled + href: Voile.InputSystem.html#Voile_InputSystem_SetAsHandled + name: SetAsHandled + nameWithType: InputSystem.SetAsHandled + fullName: Voile.InputSystem.SetAsHandled +- uid: Voile.InputSystem.AddInputMapping* + commentId: Overload:Voile.InputSystem.AddInputMapping + href: Voile.InputSystem.html#Voile_InputSystem_AddInputMapping_System_String_System_Collections_Generic_IEnumerable_Voile_InputAction__ + name: AddInputMapping + nameWithType: InputSystem.AddInputMapping + fullName: Voile.InputSystem.AddInputMapping +- uid: System.Collections.Generic.IEnumerable{Voile.InputAction} + commentId: T:System.Collections.Generic.IEnumerable{Voile.InputAction} + parent: System.Collections.Generic + definition: System.Collections.Generic.IEnumerable`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + name: IEnumerable + nameWithType: IEnumerable + fullName: System.Collections.Generic.IEnumerable + nameWithType.vb: IEnumerable(Of InputAction) + fullName.vb: System.Collections.Generic.IEnumerable(Of Voile.InputAction) + name.vb: IEnumerable(Of InputAction) + spec.csharp: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: < + - uid: Voile.InputAction + name: InputAction + href: Voile.InputAction.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: ( + - name: Of + - name: " " + - uid: Voile.InputAction + name: InputAction + href: Voile.InputAction.html + - name: ) +- uid: System.Collections.Generic.IEnumerable`1 + commentId: T:System.Collections.Generic.IEnumerable`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + name: IEnumerable + nameWithType: IEnumerable + fullName: System.Collections.Generic.IEnumerable + nameWithType.vb: IEnumerable(Of T) + fullName.vb: System.Collections.Generic.IEnumerable(Of T) + name.vb: IEnumerable(Of T) + spec.csharp: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: Voile.InputSystem.TryGetInputMappings* + commentId: Overload:Voile.InputSystem.TryGetInputMappings + href: Voile.InputSystem.html#Voile_InputSystem_TryGetInputMappings_System_String_System_Collections_Generic_IEnumerable_Voile_InputAction___ + name: TryGetInputMappings + nameWithType: InputSystem.TryGetInputMappings + fullName: Voile.InputSystem.TryGetInputMappings +- uid: System.Collections.Generic.Dictionary{System.String,System.Collections.Generic.List{Voile.InputAction}} + commentId: T:System.Collections.Generic.Dictionary{System.String,System.Collections.Generic.List{Voile.InputAction}} + parent: System.Collections.Generic + definition: System.Collections.Generic.Dictionary`2 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + name: Dictionary> + nameWithType: Dictionary> + fullName: System.Collections.Generic.Dictionary> + nameWithType.vb: Dictionary(Of String, List(Of InputAction)) + fullName.vb: System.Collections.Generic.Dictionary(Of String, System.Collections.Generic.List(Of Voile.InputAction)) + name.vb: Dictionary(Of String, List(Of InputAction)) + spec.csharp: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: Voile.InputAction + name: InputAction + href: Voile.InputAction.html + - name: '>' + - name: '>' + spec.vb: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: Voile.InputAction + name: InputAction + href: Voile.InputAction.html + - name: ) + - name: ) +- uid: System.Collections.Generic.Dictionary`2 + commentId: T:System.Collections.Generic.Dictionary`2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + name: Dictionary + nameWithType: Dictionary + fullName: System.Collections.Generic.Dictionary + nameWithType.vb: Dictionary(Of TKey, TValue) + fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue) + name.vb: Dictionary(Of TKey, TValue) + spec.csharp: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: < + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: '>' + spec.vb: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: ( + - name: Of + - name: " " + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: ) diff --git a/Voile/api/Voile.KeyInputAction.yml b/Voile/api/Voile.KeyInputAction.yml new file mode 100644 index 0000000..900acd5 --- /dev/null +++ b/Voile/api/Voile.KeyInputAction.yml @@ -0,0 +1,588 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.KeyInputAction + commentId: T:Voile.KeyInputAction + id: KeyInputAction + parent: Voile + children: + - Voile.KeyInputAction.#ctor(Voile.KeyboardKey) + - Voile.KeyInputAction.IsDown(Voile.InputSystem) + - Voile.KeyInputAction.IsPressed(Voile.InputSystem) + - Voile.KeyInputAction.IsReleased(Voile.InputSystem) + - Voile.KeyInputAction.Key + langs: + - csharp + - vb + name: KeyInputAction + nameWithType: KeyInputAction + fullName: Voile.KeyInputAction + type: Class + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KeyInputAction + path: Source/Input/InputAction.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile + syntax: + content: 'public class KeyInputAction : InputAction' + content.vb: Public Class KeyInputAction Inherits InputAction + inheritance: + - System.Object + - Voile.InputAction + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.KeyInputAction.Key + commentId: P:Voile.KeyInputAction.Key + id: Key + parent: Voile.KeyInputAction + langs: + - csharp + - vb + name: Key + nameWithType: KeyInputAction.Key + fullName: Voile.KeyInputAction.Key + type: Property + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Key + path: Source/Input/InputAction.cs + startLine: 11 + assemblies: + - Voile + namespace: Voile + syntax: + content: public KeyboardKey Key { get; } + parameters: [] + return: + type: Voile.KeyboardKey + content.vb: Public ReadOnly Property Key As KeyboardKey + overload: Voile.KeyInputAction.Key* +- uid: Voile.KeyInputAction.#ctor(Voile.KeyboardKey) + commentId: M:Voile.KeyInputAction.#ctor(Voile.KeyboardKey) + id: '#ctor(Voile.KeyboardKey)' + parent: Voile.KeyInputAction + langs: + - csharp + - vb + name: KeyInputAction(KeyboardKey) + nameWithType: KeyInputAction.KeyInputAction(KeyboardKey) + fullName: Voile.KeyInputAction.KeyInputAction(Voile.KeyboardKey) + type: Constructor + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/Input/InputAction.cs + startLine: 13 + assemblies: + - Voile + namespace: Voile + syntax: + content: public KeyInputAction(KeyboardKey keyboardKey) + parameters: + - id: keyboardKey + type: Voile.KeyboardKey + content.vb: Public Sub New(keyboardKey As KeyboardKey) + overload: Voile.KeyInputAction.#ctor* + nameWithType.vb: KeyInputAction.New(KeyboardKey) + fullName.vb: Voile.KeyInputAction.New(Voile.KeyboardKey) + name.vb: New(KeyboardKey) +- uid: Voile.KeyInputAction.IsDown(Voile.InputSystem) + commentId: M:Voile.KeyInputAction.IsDown(Voile.InputSystem) + id: IsDown(Voile.InputSystem) + parent: Voile.KeyInputAction + langs: + - csharp + - vb + name: IsDown(InputSystem) + nameWithType: KeyInputAction.IsDown(InputSystem) + fullName: Voile.KeyInputAction.IsDown(Voile.InputSystem) + type: Method + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsDown + path: Source/Input/InputAction.cs + startLine: 17 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override bool IsDown(InputSystem inputHandler) + parameters: + - id: inputHandler + type: Voile.InputSystem + return: + type: System.Boolean + content.vb: Public Overrides Function IsDown(inputHandler As InputSystem) As Boolean + overridden: Voile.InputAction.IsDown(Voile.InputSystem) + overload: Voile.KeyInputAction.IsDown* +- uid: Voile.KeyInputAction.IsPressed(Voile.InputSystem) + commentId: M:Voile.KeyInputAction.IsPressed(Voile.InputSystem) + id: IsPressed(Voile.InputSystem) + parent: Voile.KeyInputAction + langs: + - csharp + - vb + name: IsPressed(InputSystem) + nameWithType: KeyInputAction.IsPressed(InputSystem) + fullName: Voile.KeyInputAction.IsPressed(Voile.InputSystem) + type: Method + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsPressed + path: Source/Input/InputAction.cs + startLine: 22 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override bool IsPressed(InputSystem inputHandler) + parameters: + - id: inputHandler + type: Voile.InputSystem + return: + type: System.Boolean + content.vb: Public Overrides Function IsPressed(inputHandler As InputSystem) As Boolean + overridden: Voile.InputAction.IsPressed(Voile.InputSystem) + overload: Voile.KeyInputAction.IsPressed* +- uid: Voile.KeyInputAction.IsReleased(Voile.InputSystem) + commentId: M:Voile.KeyInputAction.IsReleased(Voile.InputSystem) + id: IsReleased(Voile.InputSystem) + parent: Voile.KeyInputAction + langs: + - csharp + - vb + name: IsReleased(InputSystem) + nameWithType: KeyInputAction.IsReleased(InputSystem) + fullName: Voile.KeyInputAction.IsReleased(Voile.InputSystem) + type: Method + source: + remote: + path: Voile/Source/Input/InputAction.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsReleased + path: Source/Input/InputAction.cs + startLine: 27 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override bool IsReleased(InputSystem inputHandler) + parameters: + - id: inputHandler + type: Voile.InputSystem + return: + type: System.Boolean + content.vb: Public Overrides Function IsReleased(inputHandler As InputSystem) As Boolean + overridden: Voile.InputAction.IsReleased(Voile.InputSystem) + overload: Voile.KeyInputAction.IsReleased* +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.InputAction + commentId: T:Voile.InputAction + parent: Voile + href: Voile.InputAction.html + name: InputAction + nameWithType: InputAction + fullName: Voile.InputAction +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.KeyInputAction.Key* + commentId: Overload:Voile.KeyInputAction.Key + href: Voile.KeyInputAction.html#Voile_KeyInputAction_Key + name: Key + nameWithType: KeyInputAction.Key + fullName: Voile.KeyInputAction.Key +- uid: Voile.KeyboardKey + commentId: T:Voile.KeyboardKey + parent: Voile + href: Voile.KeyboardKey.html + name: KeyboardKey + nameWithType: KeyboardKey + fullName: Voile.KeyboardKey +- uid: Voile.KeyInputAction.#ctor* + commentId: Overload:Voile.KeyInputAction.#ctor + href: Voile.KeyInputAction.html#Voile_KeyInputAction__ctor_Voile_KeyboardKey_ + name: KeyInputAction + nameWithType: KeyInputAction.KeyInputAction + fullName: Voile.KeyInputAction.KeyInputAction + nameWithType.vb: KeyInputAction.New + fullName.vb: Voile.KeyInputAction.New + name.vb: New +- uid: Voile.InputAction.IsDown(Voile.InputSystem) + commentId: M:Voile.InputAction.IsDown(Voile.InputSystem) + parent: Voile.InputAction + href: Voile.InputAction.html#Voile_InputAction_IsDown_Voile_InputSystem_ + name: IsDown(InputSystem) + nameWithType: InputAction.IsDown(InputSystem) + fullName: Voile.InputAction.IsDown(Voile.InputSystem) + spec.csharp: + - uid: Voile.InputAction.IsDown(Voile.InputSystem) + name: IsDown + href: Voile.InputAction.html#Voile_InputAction_IsDown_Voile_InputSystem_ + - name: ( + - uid: Voile.InputSystem + name: InputSystem + href: Voile.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.InputAction.IsDown(Voile.InputSystem) + name: IsDown + href: Voile.InputAction.html#Voile_InputAction_IsDown_Voile_InputSystem_ + - name: ( + - uid: Voile.InputSystem + name: InputSystem + href: Voile.InputSystem.html + - name: ) +- uid: Voile.KeyInputAction.IsDown* + commentId: Overload:Voile.KeyInputAction.IsDown + href: Voile.KeyInputAction.html#Voile_KeyInputAction_IsDown_Voile_InputSystem_ + name: IsDown + nameWithType: KeyInputAction.IsDown + fullName: Voile.KeyInputAction.IsDown +- uid: Voile.InputSystem + commentId: T:Voile.InputSystem + parent: Voile + href: Voile.InputSystem.html + name: InputSystem + nameWithType: InputSystem + fullName: Voile.InputSystem +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: Voile.InputAction.IsPressed(Voile.InputSystem) + commentId: M:Voile.InputAction.IsPressed(Voile.InputSystem) + parent: Voile.InputAction + href: Voile.InputAction.html#Voile_InputAction_IsPressed_Voile_InputSystem_ + name: IsPressed(InputSystem) + nameWithType: InputAction.IsPressed(InputSystem) + fullName: Voile.InputAction.IsPressed(Voile.InputSystem) + spec.csharp: + - uid: Voile.InputAction.IsPressed(Voile.InputSystem) + name: IsPressed + href: Voile.InputAction.html#Voile_InputAction_IsPressed_Voile_InputSystem_ + - name: ( + - uid: Voile.InputSystem + name: InputSystem + href: Voile.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.InputAction.IsPressed(Voile.InputSystem) + name: IsPressed + href: Voile.InputAction.html#Voile_InputAction_IsPressed_Voile_InputSystem_ + - name: ( + - uid: Voile.InputSystem + name: InputSystem + href: Voile.InputSystem.html + - name: ) +- uid: Voile.KeyInputAction.IsPressed* + commentId: Overload:Voile.KeyInputAction.IsPressed + href: Voile.KeyInputAction.html#Voile_KeyInputAction_IsPressed_Voile_InputSystem_ + name: IsPressed + nameWithType: KeyInputAction.IsPressed + fullName: Voile.KeyInputAction.IsPressed +- uid: Voile.InputAction.IsReleased(Voile.InputSystem) + commentId: M:Voile.InputAction.IsReleased(Voile.InputSystem) + parent: Voile.InputAction + href: Voile.InputAction.html#Voile_InputAction_IsReleased_Voile_InputSystem_ + name: IsReleased(InputSystem) + nameWithType: InputAction.IsReleased(InputSystem) + fullName: Voile.InputAction.IsReleased(Voile.InputSystem) + spec.csharp: + - uid: Voile.InputAction.IsReleased(Voile.InputSystem) + name: IsReleased + href: Voile.InputAction.html#Voile_InputAction_IsReleased_Voile_InputSystem_ + - name: ( + - uid: Voile.InputSystem + name: InputSystem + href: Voile.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.InputAction.IsReleased(Voile.InputSystem) + name: IsReleased + href: Voile.InputAction.html#Voile_InputAction_IsReleased_Voile_InputSystem_ + - name: ( + - uid: Voile.InputSystem + name: InputSystem + href: Voile.InputSystem.html + - name: ) +- uid: Voile.KeyInputAction.IsReleased* + commentId: Overload:Voile.KeyInputAction.IsReleased + href: Voile.KeyInputAction.html#Voile_KeyInputAction_IsReleased_Voile_InputSystem_ + name: IsReleased + nameWithType: KeyInputAction.IsReleased + fullName: Voile.KeyInputAction.IsReleased diff --git a/Voile/api/Voile.KeyboardKey.yml b/Voile/api/Voile.KeyboardKey.yml new file mode 100644 index 0000000..bc66c0c --- /dev/null +++ b/Voile/api/Voile.KeyboardKey.yml @@ -0,0 +1,3012 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.KeyboardKey + commentId: T:Voile.KeyboardKey + id: KeyboardKey + parent: Voile + children: + - Voile.KeyboardKey.A + - Voile.KeyboardKey.Apostrophe + - Voile.KeyboardKey.B + - Voile.KeyboardKey.Back + - Voile.KeyboardKey.Backslash + - Voile.KeyboardKey.Backspace + - Voile.KeyboardKey.C + - Voile.KeyboardKey.CapsLock + - Voile.KeyboardKey.Comma + - Voile.KeyboardKey.D + - Voile.KeyboardKey.Delete + - Voile.KeyboardKey.Down + - Voile.KeyboardKey.E + - Voile.KeyboardKey.Eight + - Voile.KeyboardKey.End + - Voile.KeyboardKey.Enter + - Voile.KeyboardKey.Equal + - Voile.KeyboardKey.Escape + - Voile.KeyboardKey.F + - Voile.KeyboardKey.F1 + - Voile.KeyboardKey.F10 + - Voile.KeyboardKey.F11 + - Voile.KeyboardKey.F12 + - Voile.KeyboardKey.F2 + - Voile.KeyboardKey.F3 + - Voile.KeyboardKey.F4 + - Voile.KeyboardKey.F5 + - Voile.KeyboardKey.F6 + - Voile.KeyboardKey.F7 + - Voile.KeyboardKey.F8 + - Voile.KeyboardKey.F9 + - Voile.KeyboardKey.Five + - Voile.KeyboardKey.Four + - Voile.KeyboardKey.G + - Voile.KeyboardKey.Grave + - Voile.KeyboardKey.H + - Voile.KeyboardKey.Home + - Voile.KeyboardKey.I + - Voile.KeyboardKey.Insert + - Voile.KeyboardKey.J + - Voile.KeyboardKey.K + - Voile.KeyboardKey.KBMenu + - Voile.KeyboardKey.KP0 + - Voile.KeyboardKey.KP1 + - Voile.KeyboardKey.KP2 + - Voile.KeyboardKey.KP3 + - Voile.KeyboardKey.KP4 + - Voile.KeyboardKey.KP5 + - Voile.KeyboardKey.KP6 + - Voile.KeyboardKey.KP7 + - Voile.KeyboardKey.KP8 + - Voile.KeyboardKey.KP9 + - Voile.KeyboardKey.KPAdd + - Voile.KeyboardKey.KPDecimal + - Voile.KeyboardKey.KPDivide + - Voile.KeyboardKey.KPEnter + - Voile.KeyboardKey.KPEqual + - Voile.KeyboardKey.KPMultiply + - Voile.KeyboardKey.KPSubstract + - Voile.KeyboardKey.L + - Voile.KeyboardKey.Left + - Voile.KeyboardKey.LeftAlt + - Voile.KeyboardKey.LeftBracket + - Voile.KeyboardKey.LeftControl + - Voile.KeyboardKey.LeftShift + - Voile.KeyboardKey.LeftSuper + - Voile.KeyboardKey.M + - Voile.KeyboardKey.Menu + - Voile.KeyboardKey.Minus + - Voile.KeyboardKey.N + - Voile.KeyboardKey.Nine + - Voile.KeyboardKey.Null + - Voile.KeyboardKey.NumLock + - Voile.KeyboardKey.O + - Voile.KeyboardKey.One + - Voile.KeyboardKey.P + - Voile.KeyboardKey.PageDown + - Voile.KeyboardKey.PageUp + - Voile.KeyboardKey.Pause + - Voile.KeyboardKey.Period + - Voile.KeyboardKey.PrintScreen + - Voile.KeyboardKey.Q + - Voile.KeyboardKey.R + - Voile.KeyboardKey.Right + - Voile.KeyboardKey.RightAlt + - Voile.KeyboardKey.RightBracket + - Voile.KeyboardKey.RightControl + - Voile.KeyboardKey.RightShift + - Voile.KeyboardKey.RightSuper + - Voile.KeyboardKey.S + - Voile.KeyboardKey.ScrollLock + - Voile.KeyboardKey.Semicolon + - Voile.KeyboardKey.Seven + - Voile.KeyboardKey.Six + - Voile.KeyboardKey.Slash + - Voile.KeyboardKey.Spacebar + - Voile.KeyboardKey.T + - Voile.KeyboardKey.Tab + - Voile.KeyboardKey.Three + - Voile.KeyboardKey.Two + - Voile.KeyboardKey.U + - Voile.KeyboardKey.Up + - Voile.KeyboardKey.V + - Voile.KeyboardKey.VolumeDown + - Voile.KeyboardKey.VolumeUp + - Voile.KeyboardKey.W + - Voile.KeyboardKey.X + - Voile.KeyboardKey.Y + - Voile.KeyboardKey.Z + - Voile.KeyboardKey.Zero + langs: + - csharp + - vb + name: KeyboardKey + nameWithType: KeyboardKey + fullName: Voile.KeyboardKey + type: Enum + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KeyboardKey + path: Source/Systems/InputSystem.cs + startLine: 94 + assemblies: + - Voile + namespace: Voile + syntax: + content: public enum KeyboardKey + content.vb: Public Enum KeyboardKey +- uid: Voile.KeyboardKey.Null + commentId: F:Voile.KeyboardKey.Null + id: "Null" + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: "Null" + nameWithType: KeyboardKey.Null + fullName: Voile.KeyboardKey.Null + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: "Null" + path: Source/Systems/InputSystem.cs + startLine: 96 + assemblies: + - Voile + namespace: Voile + syntax: + content: Null = 0 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Back + commentId: F:Voile.KeyboardKey.Back + id: Back + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Back + nameWithType: KeyboardKey.Back + fullName: Voile.KeyboardKey.Back + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Back + path: Source/Systems/InputSystem.cs + startLine: 97 + assemblies: + - Voile + namespace: Voile + syntax: + content: Back = 4 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.VolumeUp + commentId: F:Voile.KeyboardKey.VolumeUp + id: VolumeUp + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: VolumeUp + nameWithType: KeyboardKey.VolumeUp + fullName: Voile.KeyboardKey.VolumeUp + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: VolumeUp + path: Source/Systems/InputSystem.cs + startLine: 98 + assemblies: + - Voile + namespace: Voile + syntax: + content: VolumeUp = 24 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.VolumeDown + commentId: F:Voile.KeyboardKey.VolumeDown + id: VolumeDown + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: VolumeDown + nameWithType: KeyboardKey.VolumeDown + fullName: Voile.KeyboardKey.VolumeDown + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: VolumeDown + path: Source/Systems/InputSystem.cs + startLine: 99 + assemblies: + - Voile + namespace: Voile + syntax: + content: VolumeDown = 25 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Spacebar + commentId: F:Voile.KeyboardKey.Spacebar + id: Spacebar + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Spacebar + nameWithType: KeyboardKey.Spacebar + fullName: Voile.KeyboardKey.Spacebar + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Spacebar + path: Source/Systems/InputSystem.cs + startLine: 100 + assemblies: + - Voile + namespace: Voile + syntax: + content: Spacebar = 32 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Apostrophe + commentId: F:Voile.KeyboardKey.Apostrophe + id: Apostrophe + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Apostrophe + nameWithType: KeyboardKey.Apostrophe + fullName: Voile.KeyboardKey.Apostrophe + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Apostrophe + path: Source/Systems/InputSystem.cs + startLine: 101 + assemblies: + - Voile + namespace: Voile + syntax: + content: Apostrophe = 39 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Comma + commentId: F:Voile.KeyboardKey.Comma + id: Comma + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Comma + nameWithType: KeyboardKey.Comma + fullName: Voile.KeyboardKey.Comma + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Comma + path: Source/Systems/InputSystem.cs + startLine: 102 + assemblies: + - Voile + namespace: Voile + syntax: + content: Comma = 44 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Minus + commentId: F:Voile.KeyboardKey.Minus + id: Minus + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Minus + nameWithType: KeyboardKey.Minus + fullName: Voile.KeyboardKey.Minus + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Minus + path: Source/Systems/InputSystem.cs + startLine: 103 + assemblies: + - Voile + namespace: Voile + syntax: + content: Minus = 45 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Period + commentId: F:Voile.KeyboardKey.Period + id: Period + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Period + nameWithType: KeyboardKey.Period + fullName: Voile.KeyboardKey.Period + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Period + path: Source/Systems/InputSystem.cs + startLine: 104 + assemblies: + - Voile + namespace: Voile + syntax: + content: Period = 46 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Slash + commentId: F:Voile.KeyboardKey.Slash + id: Slash + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Slash + nameWithType: KeyboardKey.Slash + fullName: Voile.KeyboardKey.Slash + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Slash + path: Source/Systems/InputSystem.cs + startLine: 105 + assemblies: + - Voile + namespace: Voile + syntax: + content: Slash = 47 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Zero + commentId: F:Voile.KeyboardKey.Zero + id: Zero + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Zero + nameWithType: KeyboardKey.Zero + fullName: Voile.KeyboardKey.Zero + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Zero + path: Source/Systems/InputSystem.cs + startLine: 106 + assemblies: + - Voile + namespace: Voile + syntax: + content: Zero = 48 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.One + commentId: F:Voile.KeyboardKey.One + id: One + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: One + nameWithType: KeyboardKey.One + fullName: Voile.KeyboardKey.One + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: One + path: Source/Systems/InputSystem.cs + startLine: 107 + assemblies: + - Voile + namespace: Voile + syntax: + content: One = 49 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Two + commentId: F:Voile.KeyboardKey.Two + id: Two + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Two + nameWithType: KeyboardKey.Two + fullName: Voile.KeyboardKey.Two + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Two + path: Source/Systems/InputSystem.cs + startLine: 108 + assemblies: + - Voile + namespace: Voile + syntax: + content: Two = 50 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Three + commentId: F:Voile.KeyboardKey.Three + id: Three + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Three + nameWithType: KeyboardKey.Three + fullName: Voile.KeyboardKey.Three + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Three + path: Source/Systems/InputSystem.cs + startLine: 109 + assemblies: + - Voile + namespace: Voile + syntax: + content: Three = 51 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Four + commentId: F:Voile.KeyboardKey.Four + id: Four + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Four + nameWithType: KeyboardKey.Four + fullName: Voile.KeyboardKey.Four + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Four + path: Source/Systems/InputSystem.cs + startLine: 110 + assemblies: + - Voile + namespace: Voile + syntax: + content: Four = 52 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Five + commentId: F:Voile.KeyboardKey.Five + id: Five + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Five + nameWithType: KeyboardKey.Five + fullName: Voile.KeyboardKey.Five + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Five + path: Source/Systems/InputSystem.cs + startLine: 111 + assemblies: + - Voile + namespace: Voile + syntax: + content: Five = 53 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Six + commentId: F:Voile.KeyboardKey.Six + id: Six + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Six + nameWithType: KeyboardKey.Six + fullName: Voile.KeyboardKey.Six + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Six + path: Source/Systems/InputSystem.cs + startLine: 112 + assemblies: + - Voile + namespace: Voile + syntax: + content: Six = 54 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Seven + commentId: F:Voile.KeyboardKey.Seven + id: Seven + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Seven + nameWithType: KeyboardKey.Seven + fullName: Voile.KeyboardKey.Seven + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Seven + path: Source/Systems/InputSystem.cs + startLine: 113 + assemblies: + - Voile + namespace: Voile + syntax: + content: Seven = 55 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Eight + commentId: F:Voile.KeyboardKey.Eight + id: Eight + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Eight + nameWithType: KeyboardKey.Eight + fullName: Voile.KeyboardKey.Eight + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Eight + path: Source/Systems/InputSystem.cs + startLine: 114 + assemblies: + - Voile + namespace: Voile + syntax: + content: Eight = 56 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Nine + commentId: F:Voile.KeyboardKey.Nine + id: Nine + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Nine + nameWithType: KeyboardKey.Nine + fullName: Voile.KeyboardKey.Nine + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Nine + path: Source/Systems/InputSystem.cs + startLine: 115 + assemblies: + - Voile + namespace: Voile + syntax: + content: Nine = 57 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Semicolon + commentId: F:Voile.KeyboardKey.Semicolon + id: Semicolon + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Semicolon + nameWithType: KeyboardKey.Semicolon + fullName: Voile.KeyboardKey.Semicolon + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Semicolon + path: Source/Systems/InputSystem.cs + startLine: 116 + assemblies: + - Voile + namespace: Voile + syntax: + content: Semicolon = 59 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Equal + commentId: F:Voile.KeyboardKey.Equal + id: Equal + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Equal + nameWithType: KeyboardKey.Equal + fullName: Voile.KeyboardKey.Equal + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Equal + path: Source/Systems/InputSystem.cs + startLine: 117 + assemblies: + - Voile + namespace: Voile + syntax: + content: Equal = 61 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.A + commentId: F:Voile.KeyboardKey.A + id: A + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: A + nameWithType: KeyboardKey.A + fullName: Voile.KeyboardKey.A + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: A + path: Source/Systems/InputSystem.cs + startLine: 118 + assemblies: + - Voile + namespace: Voile + syntax: + content: A = 65 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.B + commentId: F:Voile.KeyboardKey.B + id: B + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: B + nameWithType: KeyboardKey.B + fullName: Voile.KeyboardKey.B + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: B + path: Source/Systems/InputSystem.cs + startLine: 119 + assemblies: + - Voile + namespace: Voile + syntax: + content: B = 66 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.C + commentId: F:Voile.KeyboardKey.C + id: C + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: C + nameWithType: KeyboardKey.C + fullName: Voile.KeyboardKey.C + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: C + path: Source/Systems/InputSystem.cs + startLine: 120 + assemblies: + - Voile + namespace: Voile + syntax: + content: C = 67 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.D + commentId: F:Voile.KeyboardKey.D + id: D + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: D + nameWithType: KeyboardKey.D + fullName: Voile.KeyboardKey.D + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: D + path: Source/Systems/InputSystem.cs + startLine: 121 + assemblies: + - Voile + namespace: Voile + syntax: + content: D = 68 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.E + commentId: F:Voile.KeyboardKey.E + id: E + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: E + nameWithType: KeyboardKey.E + fullName: Voile.KeyboardKey.E + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: E + path: Source/Systems/InputSystem.cs + startLine: 122 + assemblies: + - Voile + namespace: Voile + syntax: + content: E = 69 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.F + commentId: F:Voile.KeyboardKey.F + id: F + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: F + nameWithType: KeyboardKey.F + fullName: Voile.KeyboardKey.F + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F + path: Source/Systems/InputSystem.cs + startLine: 123 + assemblies: + - Voile + namespace: Voile + syntax: + content: F = 70 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.G + commentId: F:Voile.KeyboardKey.G + id: G + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: G + nameWithType: KeyboardKey.G + fullName: Voile.KeyboardKey.G + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: G + path: Source/Systems/InputSystem.cs + startLine: 124 + assemblies: + - Voile + namespace: Voile + syntax: + content: G = 71 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.H + commentId: F:Voile.KeyboardKey.H + id: H + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: H + nameWithType: KeyboardKey.H + fullName: Voile.KeyboardKey.H + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: H + path: Source/Systems/InputSystem.cs + startLine: 125 + assemblies: + - Voile + namespace: Voile + syntax: + content: H = 72 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.I + commentId: F:Voile.KeyboardKey.I + id: I + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: I + nameWithType: KeyboardKey.I + fullName: Voile.KeyboardKey.I + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: I + path: Source/Systems/InputSystem.cs + startLine: 126 + assemblies: + - Voile + namespace: Voile + syntax: + content: I = 73 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.J + commentId: F:Voile.KeyboardKey.J + id: J + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: J + nameWithType: KeyboardKey.J + fullName: Voile.KeyboardKey.J + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: J + path: Source/Systems/InputSystem.cs + startLine: 127 + assemblies: + - Voile + namespace: Voile + syntax: + content: J = 74 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.K + commentId: F:Voile.KeyboardKey.K + id: K + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: K + nameWithType: KeyboardKey.K + fullName: Voile.KeyboardKey.K + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: K + path: Source/Systems/InputSystem.cs + startLine: 128 + assemblies: + - Voile + namespace: Voile + syntax: + content: K = 75 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.L + commentId: F:Voile.KeyboardKey.L + id: L + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: L + nameWithType: KeyboardKey.L + fullName: Voile.KeyboardKey.L + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: L + path: Source/Systems/InputSystem.cs + startLine: 129 + assemblies: + - Voile + namespace: Voile + syntax: + content: L = 76 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.M + commentId: F:Voile.KeyboardKey.M + id: M + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: M + nameWithType: KeyboardKey.M + fullName: Voile.KeyboardKey.M + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: M + path: Source/Systems/InputSystem.cs + startLine: 130 + assemblies: + - Voile + namespace: Voile + syntax: + content: M = 77 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.N + commentId: F:Voile.KeyboardKey.N + id: N + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: N + nameWithType: KeyboardKey.N + fullName: Voile.KeyboardKey.N + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: N + path: Source/Systems/InputSystem.cs + startLine: 131 + assemblies: + - Voile + namespace: Voile + syntax: + content: N = 78 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.O + commentId: F:Voile.KeyboardKey.O + id: O + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: O + nameWithType: KeyboardKey.O + fullName: Voile.KeyboardKey.O + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: O + path: Source/Systems/InputSystem.cs + startLine: 132 + assemblies: + - Voile + namespace: Voile + syntax: + content: O = 79 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.P + commentId: F:Voile.KeyboardKey.P + id: P + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: P + nameWithType: KeyboardKey.P + fullName: Voile.KeyboardKey.P + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: P + path: Source/Systems/InputSystem.cs + startLine: 133 + assemblies: + - Voile + namespace: Voile + syntax: + content: P = 80 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Q + commentId: F:Voile.KeyboardKey.Q + id: Q + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Q + nameWithType: KeyboardKey.Q + fullName: Voile.KeyboardKey.Q + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Q + path: Source/Systems/InputSystem.cs + startLine: 134 + assemblies: + - Voile + namespace: Voile + syntax: + content: Q = 81 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.R + commentId: F:Voile.KeyboardKey.R + id: R + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: R + nameWithType: KeyboardKey.R + fullName: Voile.KeyboardKey.R + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: R + path: Source/Systems/InputSystem.cs + startLine: 135 + assemblies: + - Voile + namespace: Voile + syntax: + content: R = 82 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Menu + commentId: F:Voile.KeyboardKey.Menu + id: Menu + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Menu + nameWithType: KeyboardKey.Menu + fullName: Voile.KeyboardKey.Menu + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Menu + path: Source/Systems/InputSystem.cs + startLine: 136 + assemblies: + - Voile + namespace: Voile + syntax: + content: Menu = 82 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.S + commentId: F:Voile.KeyboardKey.S + id: S + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: S + nameWithType: KeyboardKey.S + fullName: Voile.KeyboardKey.S + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: S + path: Source/Systems/InputSystem.cs + startLine: 137 + assemblies: + - Voile + namespace: Voile + syntax: + content: S = 83 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.T + commentId: F:Voile.KeyboardKey.T + id: T + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: T + nameWithType: KeyboardKey.T + fullName: Voile.KeyboardKey.T + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: T + path: Source/Systems/InputSystem.cs + startLine: 138 + assemblies: + - Voile + namespace: Voile + syntax: + content: T = 84 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.U + commentId: F:Voile.KeyboardKey.U + id: U + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: U + nameWithType: KeyboardKey.U + fullName: Voile.KeyboardKey.U + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: U + path: Source/Systems/InputSystem.cs + startLine: 139 + assemblies: + - Voile + namespace: Voile + syntax: + content: U = 85 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.V + commentId: F:Voile.KeyboardKey.V + id: V + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: V + nameWithType: KeyboardKey.V + fullName: Voile.KeyboardKey.V + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: V + path: Source/Systems/InputSystem.cs + startLine: 140 + assemblies: + - Voile + namespace: Voile + syntax: + content: V = 86 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.W + commentId: F:Voile.KeyboardKey.W + id: W + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: W + nameWithType: KeyboardKey.W + fullName: Voile.KeyboardKey.W + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: W + path: Source/Systems/InputSystem.cs + startLine: 141 + assemblies: + - Voile + namespace: Voile + syntax: + content: W = 87 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.X + commentId: F:Voile.KeyboardKey.X + id: X + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: X + nameWithType: KeyboardKey.X + fullName: Voile.KeyboardKey.X + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: X + path: Source/Systems/InputSystem.cs + startLine: 142 + assemblies: + - Voile + namespace: Voile + syntax: + content: X = 88 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Y + commentId: F:Voile.KeyboardKey.Y + id: Y + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Y + nameWithType: KeyboardKey.Y + fullName: Voile.KeyboardKey.Y + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Y + path: Source/Systems/InputSystem.cs + startLine: 143 + assemblies: + - Voile + namespace: Voile + syntax: + content: Y = 89 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Z + commentId: F:Voile.KeyboardKey.Z + id: Z + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Z + nameWithType: KeyboardKey.Z + fullName: Voile.KeyboardKey.Z + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Z + path: Source/Systems/InputSystem.cs + startLine: 144 + assemblies: + - Voile + namespace: Voile + syntax: + content: Z = 90 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.LeftBracket + commentId: F:Voile.KeyboardKey.LeftBracket + id: LeftBracket + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: LeftBracket + nameWithType: KeyboardKey.LeftBracket + fullName: Voile.KeyboardKey.LeftBracket + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LeftBracket + path: Source/Systems/InputSystem.cs + startLine: 145 + assemblies: + - Voile + namespace: Voile + syntax: + content: LeftBracket = 91 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Backslash + commentId: F:Voile.KeyboardKey.Backslash + id: Backslash + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Backslash + nameWithType: KeyboardKey.Backslash + fullName: Voile.KeyboardKey.Backslash + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Backslash + path: Source/Systems/InputSystem.cs + startLine: 146 + assemblies: + - Voile + namespace: Voile + syntax: + content: Backslash = 92 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.RightBracket + commentId: F:Voile.KeyboardKey.RightBracket + id: RightBracket + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: RightBracket + nameWithType: KeyboardKey.RightBracket + fullName: Voile.KeyboardKey.RightBracket + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RightBracket + path: Source/Systems/InputSystem.cs + startLine: 147 + assemblies: + - Voile + namespace: Voile + syntax: + content: RightBracket = 93 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Grave + commentId: F:Voile.KeyboardKey.Grave + id: Grave + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Grave + nameWithType: KeyboardKey.Grave + fullName: Voile.KeyboardKey.Grave + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Grave + path: Source/Systems/InputSystem.cs + startLine: 148 + assemblies: + - Voile + namespace: Voile + syntax: + content: Grave = 96 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Escape + commentId: F:Voile.KeyboardKey.Escape + id: Escape + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Escape + nameWithType: KeyboardKey.Escape + fullName: Voile.KeyboardKey.Escape + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Escape + path: Source/Systems/InputSystem.cs + startLine: 149 + assemblies: + - Voile + namespace: Voile + syntax: + content: Escape = 256 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Enter + commentId: F:Voile.KeyboardKey.Enter + id: Enter + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Enter + nameWithType: KeyboardKey.Enter + fullName: Voile.KeyboardKey.Enter + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Enter + path: Source/Systems/InputSystem.cs + startLine: 150 + assemblies: + - Voile + namespace: Voile + syntax: + content: Enter = 257 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Tab + commentId: F:Voile.KeyboardKey.Tab + id: Tab + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Tab + nameWithType: KeyboardKey.Tab + fullName: Voile.KeyboardKey.Tab + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Tab + path: Source/Systems/InputSystem.cs + startLine: 151 + assemblies: + - Voile + namespace: Voile + syntax: + content: Tab = 258 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Backspace + commentId: F:Voile.KeyboardKey.Backspace + id: Backspace + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Backspace + nameWithType: KeyboardKey.Backspace + fullName: Voile.KeyboardKey.Backspace + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Backspace + path: Source/Systems/InputSystem.cs + startLine: 152 + assemblies: + - Voile + namespace: Voile + syntax: + content: Backspace = 259 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Insert + commentId: F:Voile.KeyboardKey.Insert + id: Insert + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Insert + nameWithType: KeyboardKey.Insert + fullName: Voile.KeyboardKey.Insert + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Insert + path: Source/Systems/InputSystem.cs + startLine: 153 + assemblies: + - Voile + namespace: Voile + syntax: + content: Insert = 260 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Delete + commentId: F:Voile.KeyboardKey.Delete + id: Delete + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Delete + nameWithType: KeyboardKey.Delete + fullName: Voile.KeyboardKey.Delete + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Delete + path: Source/Systems/InputSystem.cs + startLine: 154 + assemblies: + - Voile + namespace: Voile + syntax: + content: Delete = 261 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Right + commentId: F:Voile.KeyboardKey.Right + id: Right + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Right + nameWithType: KeyboardKey.Right + fullName: Voile.KeyboardKey.Right + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Right + path: Source/Systems/InputSystem.cs + startLine: 155 + assemblies: + - Voile + namespace: Voile + syntax: + content: Right = 262 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Left + commentId: F:Voile.KeyboardKey.Left + id: Left + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Left + nameWithType: KeyboardKey.Left + fullName: Voile.KeyboardKey.Left + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Left + path: Source/Systems/InputSystem.cs + startLine: 156 + assemblies: + - Voile + namespace: Voile + syntax: + content: Left = 263 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Down + commentId: F:Voile.KeyboardKey.Down + id: Down + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Down + nameWithType: KeyboardKey.Down + fullName: Voile.KeyboardKey.Down + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Down + path: Source/Systems/InputSystem.cs + startLine: 157 + assemblies: + - Voile + namespace: Voile + syntax: + content: Down = 264 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Up + commentId: F:Voile.KeyboardKey.Up + id: Up + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Up + nameWithType: KeyboardKey.Up + fullName: Voile.KeyboardKey.Up + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Up + path: Source/Systems/InputSystem.cs + startLine: 158 + assemblies: + - Voile + namespace: Voile + syntax: + content: Up = 265 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.PageUp + commentId: F:Voile.KeyboardKey.PageUp + id: PageUp + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: PageUp + nameWithType: KeyboardKey.PageUp + fullName: Voile.KeyboardKey.PageUp + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: PageUp + path: Source/Systems/InputSystem.cs + startLine: 159 + assemblies: + - Voile + namespace: Voile + syntax: + content: PageUp = 266 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.PageDown + commentId: F:Voile.KeyboardKey.PageDown + id: PageDown + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: PageDown + nameWithType: KeyboardKey.PageDown + fullName: Voile.KeyboardKey.PageDown + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: PageDown + path: Source/Systems/InputSystem.cs + startLine: 160 + assemblies: + - Voile + namespace: Voile + syntax: + content: PageDown = 267 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Home + commentId: F:Voile.KeyboardKey.Home + id: Home + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Home + nameWithType: KeyboardKey.Home + fullName: Voile.KeyboardKey.Home + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Home + path: Source/Systems/InputSystem.cs + startLine: 161 + assemblies: + - Voile + namespace: Voile + syntax: + content: Home = 268 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.End + commentId: F:Voile.KeyboardKey.End + id: End + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: End + nameWithType: KeyboardKey.End + fullName: Voile.KeyboardKey.End + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: End + path: Source/Systems/InputSystem.cs + startLine: 162 + assemblies: + - Voile + namespace: Voile + syntax: + content: End = 269 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.CapsLock + commentId: F:Voile.KeyboardKey.CapsLock + id: CapsLock + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: CapsLock + nameWithType: KeyboardKey.CapsLock + fullName: Voile.KeyboardKey.CapsLock + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CapsLock + path: Source/Systems/InputSystem.cs + startLine: 163 + assemblies: + - Voile + namespace: Voile + syntax: + content: CapsLock = 280 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.ScrollLock + commentId: F:Voile.KeyboardKey.ScrollLock + id: ScrollLock + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: ScrollLock + nameWithType: KeyboardKey.ScrollLock + fullName: Voile.KeyboardKey.ScrollLock + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ScrollLock + path: Source/Systems/InputSystem.cs + startLine: 164 + assemblies: + - Voile + namespace: Voile + syntax: + content: ScrollLock = 281 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.NumLock + commentId: F:Voile.KeyboardKey.NumLock + id: NumLock + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: NumLock + nameWithType: KeyboardKey.NumLock + fullName: Voile.KeyboardKey.NumLock + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: NumLock + path: Source/Systems/InputSystem.cs + startLine: 165 + assemblies: + - Voile + namespace: Voile + syntax: + content: NumLock = 282 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.PrintScreen + commentId: F:Voile.KeyboardKey.PrintScreen + id: PrintScreen + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: PrintScreen + nameWithType: KeyboardKey.PrintScreen + fullName: Voile.KeyboardKey.PrintScreen + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: PrintScreen + path: Source/Systems/InputSystem.cs + startLine: 166 + assemblies: + - Voile + namespace: Voile + syntax: + content: PrintScreen = 283 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.Pause + commentId: F:Voile.KeyboardKey.Pause + id: Pause + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: Pause + nameWithType: KeyboardKey.Pause + fullName: Voile.KeyboardKey.Pause + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Pause + path: Source/Systems/InputSystem.cs + startLine: 167 + assemblies: + - Voile + namespace: Voile + syntax: + content: Pause = 284 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.F1 + commentId: F:Voile.KeyboardKey.F1 + id: F1 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: F1 + nameWithType: KeyboardKey.F1 + fullName: Voile.KeyboardKey.F1 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F1 + path: Source/Systems/InputSystem.cs + startLine: 168 + assemblies: + - Voile + namespace: Voile + syntax: + content: F1 = 290 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.F2 + commentId: F:Voile.KeyboardKey.F2 + id: F2 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: F2 + nameWithType: KeyboardKey.F2 + fullName: Voile.KeyboardKey.F2 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F2 + path: Source/Systems/InputSystem.cs + startLine: 169 + assemblies: + - Voile + namespace: Voile + syntax: + content: F2 = 291 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.F3 + commentId: F:Voile.KeyboardKey.F3 + id: F3 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: F3 + nameWithType: KeyboardKey.F3 + fullName: Voile.KeyboardKey.F3 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F3 + path: Source/Systems/InputSystem.cs + startLine: 170 + assemblies: + - Voile + namespace: Voile + syntax: + content: F3 = 292 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.F4 + commentId: F:Voile.KeyboardKey.F4 + id: F4 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: F4 + nameWithType: KeyboardKey.F4 + fullName: Voile.KeyboardKey.F4 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F4 + path: Source/Systems/InputSystem.cs + startLine: 171 + assemblies: + - Voile + namespace: Voile + syntax: + content: F4 = 293 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.F5 + commentId: F:Voile.KeyboardKey.F5 + id: F5 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: F5 + nameWithType: KeyboardKey.F5 + fullName: Voile.KeyboardKey.F5 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F5 + path: Source/Systems/InputSystem.cs + startLine: 172 + assemblies: + - Voile + namespace: Voile + syntax: + content: F5 = 294 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.F6 + commentId: F:Voile.KeyboardKey.F6 + id: F6 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: F6 + nameWithType: KeyboardKey.F6 + fullName: Voile.KeyboardKey.F6 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F6 + path: Source/Systems/InputSystem.cs + startLine: 173 + assemblies: + - Voile + namespace: Voile + syntax: + content: F6 = 295 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.F7 + commentId: F:Voile.KeyboardKey.F7 + id: F7 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: F7 + nameWithType: KeyboardKey.F7 + fullName: Voile.KeyboardKey.F7 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F7 + path: Source/Systems/InputSystem.cs + startLine: 174 + assemblies: + - Voile + namespace: Voile + syntax: + content: F7 = 296 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.F8 + commentId: F:Voile.KeyboardKey.F8 + id: F8 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: F8 + nameWithType: KeyboardKey.F8 + fullName: Voile.KeyboardKey.F8 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F8 + path: Source/Systems/InputSystem.cs + startLine: 175 + assemblies: + - Voile + namespace: Voile + syntax: + content: F8 = 297 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.F9 + commentId: F:Voile.KeyboardKey.F9 + id: F9 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: F9 + nameWithType: KeyboardKey.F9 + fullName: Voile.KeyboardKey.F9 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F9 + path: Source/Systems/InputSystem.cs + startLine: 176 + assemblies: + - Voile + namespace: Voile + syntax: + content: F9 = 298 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.F10 + commentId: F:Voile.KeyboardKey.F10 + id: F10 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: F10 + nameWithType: KeyboardKey.F10 + fullName: Voile.KeyboardKey.F10 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F10 + path: Source/Systems/InputSystem.cs + startLine: 177 + assemblies: + - Voile + namespace: Voile + syntax: + content: F10 = 299 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.F11 + commentId: F:Voile.KeyboardKey.F11 + id: F11 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: F11 + nameWithType: KeyboardKey.F11 + fullName: Voile.KeyboardKey.F11 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F11 + path: Source/Systems/InputSystem.cs + startLine: 178 + assemblies: + - Voile + namespace: Voile + syntax: + content: F11 = 300 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.F12 + commentId: F:Voile.KeyboardKey.F12 + id: F12 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: F12 + nameWithType: KeyboardKey.F12 + fullName: Voile.KeyboardKey.F12 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: F12 + path: Source/Systems/InputSystem.cs + startLine: 179 + assemblies: + - Voile + namespace: Voile + syntax: + content: F12 = 301 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.KP0 + commentId: F:Voile.KeyboardKey.KP0 + id: KP0 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: KP0 + nameWithType: KeyboardKey.KP0 + fullName: Voile.KeyboardKey.KP0 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP0 + path: Source/Systems/InputSystem.cs + startLine: 180 + assemblies: + - Voile + namespace: Voile + syntax: + content: KP0 = 320 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.KP1 + commentId: F:Voile.KeyboardKey.KP1 + id: KP1 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: KP1 + nameWithType: KeyboardKey.KP1 + fullName: Voile.KeyboardKey.KP1 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP1 + path: Source/Systems/InputSystem.cs + startLine: 181 + assemblies: + - Voile + namespace: Voile + syntax: + content: KP1 = 321 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.KP2 + commentId: F:Voile.KeyboardKey.KP2 + id: KP2 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: KP2 + nameWithType: KeyboardKey.KP2 + fullName: Voile.KeyboardKey.KP2 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP2 + path: Source/Systems/InputSystem.cs + startLine: 182 + assemblies: + - Voile + namespace: Voile + syntax: + content: KP2 = 322 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.KP3 + commentId: F:Voile.KeyboardKey.KP3 + id: KP3 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: KP3 + nameWithType: KeyboardKey.KP3 + fullName: Voile.KeyboardKey.KP3 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP3 + path: Source/Systems/InputSystem.cs + startLine: 183 + assemblies: + - Voile + namespace: Voile + syntax: + content: KP3 = 323 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.KP4 + commentId: F:Voile.KeyboardKey.KP4 + id: KP4 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: KP4 + nameWithType: KeyboardKey.KP4 + fullName: Voile.KeyboardKey.KP4 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP4 + path: Source/Systems/InputSystem.cs + startLine: 184 + assemblies: + - Voile + namespace: Voile + syntax: + content: KP4 = 324 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.KP5 + commentId: F:Voile.KeyboardKey.KP5 + id: KP5 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: KP5 + nameWithType: KeyboardKey.KP5 + fullName: Voile.KeyboardKey.KP5 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP5 + path: Source/Systems/InputSystem.cs + startLine: 185 + assemblies: + - Voile + namespace: Voile + syntax: + content: KP5 = 325 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.KP6 + commentId: F:Voile.KeyboardKey.KP6 + id: KP6 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: KP6 + nameWithType: KeyboardKey.KP6 + fullName: Voile.KeyboardKey.KP6 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP6 + path: Source/Systems/InputSystem.cs + startLine: 186 + assemblies: + - Voile + namespace: Voile + syntax: + content: KP6 = 326 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.KP7 + commentId: F:Voile.KeyboardKey.KP7 + id: KP7 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: KP7 + nameWithType: KeyboardKey.KP7 + fullName: Voile.KeyboardKey.KP7 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP7 + path: Source/Systems/InputSystem.cs + startLine: 187 + assemblies: + - Voile + namespace: Voile + syntax: + content: KP7 = 327 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.KP8 + commentId: F:Voile.KeyboardKey.KP8 + id: KP8 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: KP8 + nameWithType: KeyboardKey.KP8 + fullName: Voile.KeyboardKey.KP8 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP8 + path: Source/Systems/InputSystem.cs + startLine: 188 + assemblies: + - Voile + namespace: Voile + syntax: + content: KP8 = 328 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.KP9 + commentId: F:Voile.KeyboardKey.KP9 + id: KP9 + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: KP9 + nameWithType: KeyboardKey.KP9 + fullName: Voile.KeyboardKey.KP9 + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KP9 + path: Source/Systems/InputSystem.cs + startLine: 189 + assemblies: + - Voile + namespace: Voile + syntax: + content: KP9 = 329 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.KPDecimal + commentId: F:Voile.KeyboardKey.KPDecimal + id: KPDecimal + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: KPDecimal + nameWithType: KeyboardKey.KPDecimal + fullName: Voile.KeyboardKey.KPDecimal + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KPDecimal + path: Source/Systems/InputSystem.cs + startLine: 190 + assemblies: + - Voile + namespace: Voile + syntax: + content: KPDecimal = 330 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.KPDivide + commentId: F:Voile.KeyboardKey.KPDivide + id: KPDivide + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: KPDivide + nameWithType: KeyboardKey.KPDivide + fullName: Voile.KeyboardKey.KPDivide + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KPDivide + path: Source/Systems/InputSystem.cs + startLine: 191 + assemblies: + - Voile + namespace: Voile + syntax: + content: KPDivide = 331 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.KPMultiply + commentId: F:Voile.KeyboardKey.KPMultiply + id: KPMultiply + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: KPMultiply + nameWithType: KeyboardKey.KPMultiply + fullName: Voile.KeyboardKey.KPMultiply + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KPMultiply + path: Source/Systems/InputSystem.cs + startLine: 192 + assemblies: + - Voile + namespace: Voile + syntax: + content: KPMultiply = 332 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.KPSubstract + commentId: F:Voile.KeyboardKey.KPSubstract + id: KPSubstract + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: KPSubstract + nameWithType: KeyboardKey.KPSubstract + fullName: Voile.KeyboardKey.KPSubstract + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KPSubstract + path: Source/Systems/InputSystem.cs + startLine: 193 + assemblies: + - Voile + namespace: Voile + syntax: + content: KPSubstract = 333 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.KPAdd + commentId: F:Voile.KeyboardKey.KPAdd + id: KPAdd + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: KPAdd + nameWithType: KeyboardKey.KPAdd + fullName: Voile.KeyboardKey.KPAdd + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KPAdd + path: Source/Systems/InputSystem.cs + startLine: 194 + assemblies: + - Voile + namespace: Voile + syntax: + content: KPAdd = 334 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.KPEnter + commentId: F:Voile.KeyboardKey.KPEnter + id: KPEnter + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: KPEnter + nameWithType: KeyboardKey.KPEnter + fullName: Voile.KeyboardKey.KPEnter + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KPEnter + path: Source/Systems/InputSystem.cs + startLine: 195 + assemblies: + - Voile + namespace: Voile + syntax: + content: KPEnter = 335 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.KPEqual + commentId: F:Voile.KeyboardKey.KPEqual + id: KPEqual + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: KPEqual + nameWithType: KeyboardKey.KPEqual + fullName: Voile.KeyboardKey.KPEqual + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KPEqual + path: Source/Systems/InputSystem.cs + startLine: 196 + assemblies: + - Voile + namespace: Voile + syntax: + content: KPEqual = 336 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.LeftShift + commentId: F:Voile.KeyboardKey.LeftShift + id: LeftShift + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: LeftShift + nameWithType: KeyboardKey.LeftShift + fullName: Voile.KeyboardKey.LeftShift + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LeftShift + path: Source/Systems/InputSystem.cs + startLine: 197 + assemblies: + - Voile + namespace: Voile + syntax: + content: LeftShift = 340 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.LeftControl + commentId: F:Voile.KeyboardKey.LeftControl + id: LeftControl + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: LeftControl + nameWithType: KeyboardKey.LeftControl + fullName: Voile.KeyboardKey.LeftControl + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LeftControl + path: Source/Systems/InputSystem.cs + startLine: 198 + assemblies: + - Voile + namespace: Voile + syntax: + content: LeftControl = 341 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.LeftAlt + commentId: F:Voile.KeyboardKey.LeftAlt + id: LeftAlt + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: LeftAlt + nameWithType: KeyboardKey.LeftAlt + fullName: Voile.KeyboardKey.LeftAlt + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LeftAlt + path: Source/Systems/InputSystem.cs + startLine: 199 + assemblies: + - Voile + namespace: Voile + syntax: + content: LeftAlt = 342 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.LeftSuper + commentId: F:Voile.KeyboardKey.LeftSuper + id: LeftSuper + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: LeftSuper + nameWithType: KeyboardKey.LeftSuper + fullName: Voile.KeyboardKey.LeftSuper + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LeftSuper + path: Source/Systems/InputSystem.cs + startLine: 200 + assemblies: + - Voile + namespace: Voile + syntax: + content: LeftSuper = 343 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.RightShift + commentId: F:Voile.KeyboardKey.RightShift + id: RightShift + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: RightShift + nameWithType: KeyboardKey.RightShift + fullName: Voile.KeyboardKey.RightShift + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RightShift + path: Source/Systems/InputSystem.cs + startLine: 201 + assemblies: + - Voile + namespace: Voile + syntax: + content: RightShift = 344 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.RightControl + commentId: F:Voile.KeyboardKey.RightControl + id: RightControl + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: RightControl + nameWithType: KeyboardKey.RightControl + fullName: Voile.KeyboardKey.RightControl + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RightControl + path: Source/Systems/InputSystem.cs + startLine: 202 + assemblies: + - Voile + namespace: Voile + syntax: + content: RightControl = 345 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.RightAlt + commentId: F:Voile.KeyboardKey.RightAlt + id: RightAlt + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: RightAlt + nameWithType: KeyboardKey.RightAlt + fullName: Voile.KeyboardKey.RightAlt + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RightAlt + path: Source/Systems/InputSystem.cs + startLine: 203 + assemblies: + - Voile + namespace: Voile + syntax: + content: RightAlt = 346 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.RightSuper + commentId: F:Voile.KeyboardKey.RightSuper + id: RightSuper + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: RightSuper + nameWithType: KeyboardKey.RightSuper + fullName: Voile.KeyboardKey.RightSuper + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RightSuper + path: Source/Systems/InputSystem.cs + startLine: 204 + assemblies: + - Voile + namespace: Voile + syntax: + content: RightSuper = 347 + return: + type: Voile.KeyboardKey +- uid: Voile.KeyboardKey.KBMenu + commentId: F:Voile.KeyboardKey.KBMenu + id: KBMenu + parent: Voile.KeyboardKey + langs: + - csharp + - vb + name: KBMenu + nameWithType: KeyboardKey.KBMenu + fullName: Voile.KeyboardKey.KBMenu + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KBMenu + path: Source/Systems/InputSystem.cs + startLine: 205 + assemblies: + - Voile + namespace: Voile + syntax: + content: KBMenu = 348 + return: + type: Voile.KeyboardKey +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.KeyboardKey + commentId: T:Voile.KeyboardKey + parent: Voile + href: Voile.KeyboardKey.html + name: KeyboardKey + nameWithType: KeyboardKey + fullName: Voile.KeyboardKey diff --git a/Voile/api/Voile.MathUtils.yml b/Voile/api/Voile.MathUtils.yml new file mode 100644 index 0000000..aca1592 --- /dev/null +++ b/Voile/api/Voile.MathUtils.yml @@ -0,0 +1,558 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.MathUtils + commentId: T:Voile.MathUtils + id: MathUtils + parent: Voile + children: + - Voile.MathUtils.EaseOutBack(System.Single) + - Voile.MathUtils.EaseOutElastic(System.Single) + - Voile.MathUtils.Lerp(System.Single,System.Single,System.Double) + - Voile.MathUtils.LerpColor(Voile.Color,Voile.Color,System.Double) + - Voile.MathUtils.RandomVector2(System.Numerics.Vector2,System.Numerics.Vector2) + langs: + - csharp + - vb + name: MathUtils + nameWithType: MathUtils + fullName: Voile.MathUtils + type: Class + source: + remote: + path: Voile/Source/Utils/MathUtils.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: MathUtils + path: Source/Utils/MathUtils.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static class MathUtils + content.vb: Public Module MathUtils + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.MathUtils.Lerp(System.Single,System.Single,System.Double) + commentId: M:Voile.MathUtils.Lerp(System.Single,System.Single,System.Double) + id: Lerp(System.Single,System.Single,System.Double) + parent: Voile.MathUtils + langs: + - csharp + - vb + name: Lerp(float, float, double) + nameWithType: MathUtils.Lerp(float, float, double) + fullName: Voile.MathUtils.Lerp(float, float, double) + type: Method + source: + remote: + path: Voile/Source/Utils/MathUtils.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Lerp + path: Source/Utils/MathUtils.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static float Lerp(float a, float b, double t) + parameters: + - id: a + type: System.Single + - id: b + type: System.Single + - id: t + type: System.Double + return: + type: System.Single + content.vb: Public Shared Function Lerp(a As Single, b As Single, t As Double) As Single + overload: Voile.MathUtils.Lerp* + nameWithType.vb: MathUtils.Lerp(Single, Single, Double) + fullName.vb: Voile.MathUtils.Lerp(Single, Single, Double) + name.vb: Lerp(Single, Single, Double) +- uid: Voile.MathUtils.LerpColor(Voile.Color,Voile.Color,System.Double) + commentId: M:Voile.MathUtils.LerpColor(Voile.Color,Voile.Color,System.Double) + id: LerpColor(Voile.Color,Voile.Color,System.Double) + parent: Voile.MathUtils + langs: + - csharp + - vb + name: LerpColor(Color, Color, double) + nameWithType: MathUtils.LerpColor(Color, Color, double) + fullName: Voile.MathUtils.LerpColor(Voile.Color, Voile.Color, double) + type: Method + source: + remote: + path: Voile/Source/Utils/MathUtils.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LerpColor + path: Source/Utils/MathUtils.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Color LerpColor(Color colorA, Color colorB, double t) + parameters: + - id: colorA + type: Voile.Color + - id: colorB + type: Voile.Color + - id: t + type: System.Double + return: + type: Voile.Color + content.vb: Public Shared Function LerpColor(colorA As Color, colorB As Color, t As Double) As Color + overload: Voile.MathUtils.LerpColor* + nameWithType.vb: MathUtils.LerpColor(Color, Color, Double) + fullName.vb: Voile.MathUtils.LerpColor(Voile.Color, Voile.Color, Double) + name.vb: LerpColor(Color, Color, Double) +- uid: Voile.MathUtils.RandomVector2(System.Numerics.Vector2,System.Numerics.Vector2) + commentId: M:Voile.MathUtils.RandomVector2(System.Numerics.Vector2,System.Numerics.Vector2) + id: RandomVector2(System.Numerics.Vector2,System.Numerics.Vector2) + parent: Voile.MathUtils + langs: + - csharp + - vb + name: RandomVector2(Vector2, Vector2) + nameWithType: MathUtils.RandomVector2(Vector2, Vector2) + fullName: Voile.MathUtils.RandomVector2(System.Numerics.Vector2, System.Numerics.Vector2) + type: Method + source: + remote: + path: Voile/Source/Utils/MathUtils.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RandomVector2 + path: Source/Utils/MathUtils.cs + startLine: 18 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Vector2 RandomVector2(Vector2 min, Vector2 max) + parameters: + - id: min + type: System.Numerics.Vector2 + - id: max + type: System.Numerics.Vector2 + return: + type: System.Numerics.Vector2 + content.vb: Public Shared Function RandomVector2(min As Vector2, max As Vector2) As Vector2 + overload: Voile.MathUtils.RandomVector2* +- uid: Voile.MathUtils.EaseOutBack(System.Single) + commentId: M:Voile.MathUtils.EaseOutBack(System.Single) + id: EaseOutBack(System.Single) + parent: Voile.MathUtils + langs: + - csharp + - vb + name: EaseOutBack(float) + nameWithType: MathUtils.EaseOutBack(float) + fullName: Voile.MathUtils.EaseOutBack(float) + type: Method + source: + remote: + path: Voile/Source/Utils/MathUtils.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: EaseOutBack + path: Source/Utils/MathUtils.cs + startLine: 26 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static float EaseOutBack(float x) + parameters: + - id: x + type: System.Single + return: + type: System.Single + content.vb: Public Shared Function EaseOutBack(x As Single) As Single + overload: Voile.MathUtils.EaseOutBack* + nameWithType.vb: MathUtils.EaseOutBack(Single) + fullName.vb: Voile.MathUtils.EaseOutBack(Single) + name.vb: EaseOutBack(Single) +- uid: Voile.MathUtils.EaseOutElastic(System.Single) + commentId: M:Voile.MathUtils.EaseOutElastic(System.Single) + id: EaseOutElastic(System.Single) + parent: Voile.MathUtils + langs: + - csharp + - vb + name: EaseOutElastic(float) + nameWithType: MathUtils.EaseOutElastic(float) + fullName: Voile.MathUtils.EaseOutElastic(float) + type: Method + source: + remote: + path: Voile/Source/Utils/MathUtils.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: EaseOutElastic + path: Source/Utils/MathUtils.cs + startLine: 34 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static float EaseOutElastic(float x) + parameters: + - id: x + type: System.Single + return: + type: System.Single + content.vb: Public Shared Function EaseOutElastic(x As Single) As Single + overload: Voile.MathUtils.EaseOutElastic* + nameWithType.vb: MathUtils.EaseOutElastic(Single) + fullName.vb: Voile.MathUtils.EaseOutElastic(Single) + name.vb: EaseOutElastic(Single) +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.MathUtils.Lerp* + commentId: Overload:Voile.MathUtils.Lerp + href: Voile.MathUtils.html#Voile_MathUtils_Lerp_System_Single_System_Single_System_Double_ + name: Lerp + nameWithType: MathUtils.Lerp + fullName: Voile.MathUtils.Lerp +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: System.Double + commentId: T:System.Double + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + name: double + nameWithType: double + fullName: double + nameWithType.vb: Double + fullName.vb: Double + name.vb: Double +- uid: Voile.MathUtils.LerpColor* + commentId: Overload:Voile.MathUtils.LerpColor + href: Voile.MathUtils.html#Voile_MathUtils_LerpColor_Voile_Color_Voile_Color_System_Double_ + name: LerpColor + nameWithType: MathUtils.LerpColor + fullName: Voile.MathUtils.LerpColor +- uid: Voile.Color + commentId: T:Voile.Color + parent: Voile + href: Voile.Color.html + name: Color + nameWithType: Color + fullName: Voile.Color +- uid: Voile.MathUtils.RandomVector2* + commentId: Overload:Voile.MathUtils.RandomVector2 + href: Voile.MathUtils.html#Voile_MathUtils_RandomVector2_System_Numerics_Vector2_System_Numerics_Vector2_ + name: RandomVector2 + nameWithType: MathUtils.RandomVector2 + fullName: Voile.MathUtils.RandomVector2 +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: Voile.MathUtils.EaseOutBack* + commentId: Overload:Voile.MathUtils.EaseOutBack + href: Voile.MathUtils.html#Voile_MathUtils_EaseOutBack_System_Single_ + name: EaseOutBack + nameWithType: MathUtils.EaseOutBack + fullName: Voile.MathUtils.EaseOutBack +- uid: Voile.MathUtils.EaseOutElastic* + commentId: Overload:Voile.MathUtils.EaseOutElastic + href: Voile.MathUtils.html#Voile_MathUtils_EaseOutElastic_System_Single_ + name: EaseOutElastic + nameWithType: MathUtils.EaseOutElastic + fullName: Voile.MathUtils.EaseOutElastic diff --git a/Voile/api/Voile.MouseButton.yml b/Voile/api/Voile.MouseButton.yml new file mode 100644 index 0000000..a455ec8 --- /dev/null +++ b/Voile/api/Voile.MouseButton.yml @@ -0,0 +1,133 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.MouseButton + commentId: T:Voile.MouseButton + id: MouseButton + parent: Voile + children: + - Voile.MouseButton.Left + - Voile.MouseButton.Middle + - Voile.MouseButton.Right + langs: + - csharp + - vb + name: MouseButton + nameWithType: MouseButton + fullName: Voile.MouseButton + type: Enum + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: MouseButton + path: Source/Systems/InputSystem.cs + startLine: 208 + assemblies: + - Voile + namespace: Voile + syntax: + content: >- + [Flags] + + public enum MouseButton + content.vb: >- + + + Public Enum MouseButton + attributes: + - type: System.FlagsAttribute + ctor: System.FlagsAttribute.#ctor + arguments: [] +- uid: Voile.MouseButton.Left + commentId: F:Voile.MouseButton.Left + id: Left + parent: Voile.MouseButton + langs: + - csharp + - vb + name: Left + nameWithType: MouseButton.Left + fullName: Voile.MouseButton.Left + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Left + path: Source/Systems/InputSystem.cs + startLine: 211 + assemblies: + - Voile + namespace: Voile + syntax: + content: Left = 0 + return: + type: Voile.MouseButton +- uid: Voile.MouseButton.Right + commentId: F:Voile.MouseButton.Right + id: Right + parent: Voile.MouseButton + langs: + - csharp + - vb + name: Right + nameWithType: MouseButton.Right + fullName: Voile.MouseButton.Right + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Right + path: Source/Systems/InputSystem.cs + startLine: 212 + assemblies: + - Voile + namespace: Voile + syntax: + content: Right = 1 + return: + type: Voile.MouseButton +- uid: Voile.MouseButton.Middle + commentId: F:Voile.MouseButton.Middle + id: Middle + parent: Voile.MouseButton + langs: + - csharp + - vb + name: Middle + nameWithType: MouseButton.Middle + fullName: Voile.MouseButton.Middle + type: Field + source: + remote: + path: Voile/Source/Systems/InputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Middle + path: Source/Systems/InputSystem.cs + startLine: 213 + assemblies: + - Voile + namespace: Voile + syntax: + content: Middle = 2 + return: + type: Voile.MouseButton +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.MouseButton + commentId: T:Voile.MouseButton + parent: Voile + href: Voile.MouseButton.html + name: MouseButton + nameWithType: MouseButton + fullName: Voile.MouseButton diff --git a/Voile/api/Voile.RaylibInputSystem.yml b/Voile/api/Voile.RaylibInputSystem.yml new file mode 100644 index 0000000..2c116b6 --- /dev/null +++ b/Voile/api/Voile.RaylibInputSystem.yml @@ -0,0 +1,1711 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.RaylibInputSystem + commentId: T:Voile.RaylibInputSystem + id: RaylibInputSystem + parent: Voile + children: + - Voile.RaylibInputSystem.GetCharPressed + - Voile.RaylibInputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + - Voile.RaylibInputSystem.GetInputDirection(Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey) + - Voile.RaylibInputSystem.GetMousePosition + - Voile.RaylibInputSystem.GetMouseWheelMovement + - Voile.RaylibInputSystem.HideCursor + - Voile.RaylibInputSystem.IsActionDown(System.String) + - Voile.RaylibInputSystem.IsActionPressed(System.String) + - Voile.RaylibInputSystem.IsActionReleased(System.String) + - Voile.RaylibInputSystem.IsCursorHidden + - Voile.RaylibInputSystem.IsKeyboardKeyDown(Voile.KeyboardKey) + - Voile.RaylibInputSystem.IsMouseButtonDown(Voile.MouseButton) + - Voile.RaylibInputSystem.KeyboardKeyJustPressed(Voile.KeyboardKey) + - Voile.RaylibInputSystem.KeyboardKeyJustReleased(Voile.KeyboardKey) + - Voile.RaylibInputSystem.SetMousePosition(System.Numerics.Vector2) + - Voile.RaylibInputSystem.ShowCursor + langs: + - csharp + - vb + name: RaylibInputSystem + nameWithType: RaylibInputSystem + fullName: Voile.RaylibInputSystem + type: Class + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RaylibInputSystem + path: Source/Input/RaylibInputSystem.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile + summary: An input system implemented using Raylib's API. Used by default together with RaylibRenderer. + example: [] + syntax: + content: 'public class RaylibInputSystem : InputSystem, IStartableSystem, IDisposable' + content.vb: Public Class RaylibInputSystem Inherits InputSystem Implements IStartableSystem, IDisposable + inheritance: + - System.Object + - Voile.InputSystem + implements: + - IStartableSystem + - System.IDisposable + inheritedMembers: + - Voile.InputSystem.InputMappings + - Voile.InputSystem.Start + - Voile.InputSystem.Shutdown + - Voile.InputSystem.Dispose + - Voile.InputSystem.Handled + - Voile.InputSystem.SetAsHandled + - Voile.InputSystem.AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.InputAction}) + - Voile.InputSystem.TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.InputAction}@) + - Voile.InputSystem.inputMappings + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.RaylibInputSystem.GetCharPressed + commentId: M:Voile.RaylibInputSystem.GetCharPressed + id: GetCharPressed + parent: Voile.RaylibInputSystem + langs: + - csharp + - vb + name: GetCharPressed() + nameWithType: RaylibInputSystem.GetCharPressed() + fullName: Voile.RaylibInputSystem.GetCharPressed() + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetCharPressed + path: Source/Input/RaylibInputSystem.cs + startLine: 10 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override int GetCharPressed() + return: + type: System.Int32 + content.vb: Public Overrides Function GetCharPressed() As Integer + overridden: Voile.InputSystem.GetCharPressed + overload: Voile.RaylibInputSystem.GetCharPressed* +- uid: Voile.RaylibInputSystem.GetInputDirection(Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey) + commentId: M:Voile.RaylibInputSystem.GetInputDirection(Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey) + id: GetInputDirection(Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey) + parent: Voile.RaylibInputSystem + langs: + - csharp + - vb + name: GetInputDirection(KeyboardKey, KeyboardKey, KeyboardKey, KeyboardKey) + nameWithType: RaylibInputSystem.GetInputDirection(KeyboardKey, KeyboardKey, KeyboardKey, KeyboardKey) + fullName: Voile.RaylibInputSystem.GetInputDirection(Voile.KeyboardKey, Voile.KeyboardKey, Voile.KeyboardKey, Voile.KeyboardKey) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetInputDirection + path: Source/Input/RaylibInputSystem.cs + startLine: 15 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override Vector2 GetInputDirection(KeyboardKey leftKey, KeyboardKey rightKey, KeyboardKey upKey, KeyboardKey downKey) + parameters: + - id: leftKey + type: Voile.KeyboardKey + - id: rightKey + type: Voile.KeyboardKey + - id: upKey + type: Voile.KeyboardKey + - id: downKey + type: Voile.KeyboardKey + return: + type: System.Numerics.Vector2 + content.vb: Public Overrides Function GetInputDirection(leftKey As KeyboardKey, rightKey As KeyboardKey, upKey As KeyboardKey, downKey As KeyboardKey) As Vector2 + overridden: Voile.InputSystem.GetInputDirection(Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey) + overload: Voile.RaylibInputSystem.GetInputDirection* +- uid: Voile.RaylibInputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + commentId: M:Voile.RaylibInputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + id: GetInputDirection(System.String,System.String,System.String,System.String) + parent: Voile.RaylibInputSystem + langs: + - csharp + - vb + name: GetInputDirection(string, string, string, string) + nameWithType: RaylibInputSystem.GetInputDirection(string, string, string, string) + fullName: Voile.RaylibInputSystem.GetInputDirection(string, string, string, string) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetInputDirection + path: Source/Input/RaylibInputSystem.cs + startLine: 31 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override Vector2 GetInputDirection(string leftAction, string rightAction, string upAction, string downAction) + parameters: + - id: leftAction + type: System.String + - id: rightAction + type: System.String + - id: upAction + type: System.String + - id: downAction + type: System.String + return: + type: System.Numerics.Vector2 + content.vb: Public Overrides Function GetInputDirection(leftAction As String, rightAction As String, upAction As String, downAction As String) As Vector2 + overridden: Voile.InputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + overload: Voile.RaylibInputSystem.GetInputDirection* + nameWithType.vb: RaylibInputSystem.GetInputDirection(String, String, String, String) + fullName.vb: Voile.RaylibInputSystem.GetInputDirection(String, String, String, String) + name.vb: GetInputDirection(String, String, String, String) +- uid: Voile.RaylibInputSystem.GetMousePosition + commentId: M:Voile.RaylibInputSystem.GetMousePosition + id: GetMousePosition + parent: Voile.RaylibInputSystem + langs: + - csharp + - vb + name: GetMousePosition() + nameWithType: RaylibInputSystem.GetMousePosition() + fullName: Voile.RaylibInputSystem.GetMousePosition() + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetMousePosition + path: Source/Input/RaylibInputSystem.cs + startLine: 48 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override Vector2 GetMousePosition() + return: + type: System.Numerics.Vector2 + content.vb: Public Overrides Function GetMousePosition() As Vector2 + overridden: Voile.InputSystem.GetMousePosition + overload: Voile.RaylibInputSystem.GetMousePosition* +- uid: Voile.RaylibInputSystem.GetMouseWheelMovement + commentId: M:Voile.RaylibInputSystem.GetMouseWheelMovement + id: GetMouseWheelMovement + parent: Voile.RaylibInputSystem + langs: + - csharp + - vb + name: GetMouseWheelMovement() + nameWithType: RaylibInputSystem.GetMouseWheelMovement() + fullName: Voile.RaylibInputSystem.GetMouseWheelMovement() + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetMouseWheelMovement + path: Source/Input/RaylibInputSystem.cs + startLine: 53 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override float GetMouseWheelMovement() + return: + type: System.Single + content.vb: Public Overrides Function GetMouseWheelMovement() As Single + overridden: Voile.InputSystem.GetMouseWheelMovement + overload: Voile.RaylibInputSystem.GetMouseWheelMovement* +- uid: Voile.RaylibInputSystem.HideCursor + commentId: M:Voile.RaylibInputSystem.HideCursor + id: HideCursor + parent: Voile.RaylibInputSystem + langs: + - csharp + - vb + name: HideCursor() + nameWithType: RaylibInputSystem.HideCursor() + fullName: Voile.RaylibInputSystem.HideCursor() + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: HideCursor + path: Source/Input/RaylibInputSystem.cs + startLine: 58 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override void HideCursor() + content.vb: Public Overrides Sub HideCursor() + overridden: Voile.InputSystem.HideCursor + overload: Voile.RaylibInputSystem.HideCursor* +- uid: Voile.RaylibInputSystem.IsActionDown(System.String) + commentId: M:Voile.RaylibInputSystem.IsActionDown(System.String) + id: IsActionDown(System.String) + parent: Voile.RaylibInputSystem + langs: + - csharp + - vb + name: IsActionDown(string) + nameWithType: RaylibInputSystem.IsActionDown(string) + fullName: Voile.RaylibInputSystem.IsActionDown(string) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsActionDown + path: Source/Input/RaylibInputSystem.cs + startLine: 63 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override bool IsActionDown(string action) + parameters: + - id: action + type: System.String + return: + type: System.Boolean + content.vb: Public Overrides Function IsActionDown(action As String) As Boolean + overridden: Voile.InputSystem.IsActionDown(System.String) + overload: Voile.RaylibInputSystem.IsActionDown* + nameWithType.vb: RaylibInputSystem.IsActionDown(String) + fullName.vb: Voile.RaylibInputSystem.IsActionDown(String) + name.vb: IsActionDown(String) +- uid: Voile.RaylibInputSystem.IsActionPressed(System.String) + commentId: M:Voile.RaylibInputSystem.IsActionPressed(System.String) + id: IsActionPressed(System.String) + parent: Voile.RaylibInputSystem + langs: + - csharp + - vb + name: IsActionPressed(string) + nameWithType: RaylibInputSystem.IsActionPressed(string) + fullName: Voile.RaylibInputSystem.IsActionPressed(string) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsActionPressed + path: Source/Input/RaylibInputSystem.cs + startLine: 76 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override bool IsActionPressed(string action) + parameters: + - id: action + type: System.String + return: + type: System.Boolean + content.vb: Public Overrides Function IsActionPressed(action As String) As Boolean + overridden: Voile.InputSystem.IsActionPressed(System.String) + overload: Voile.RaylibInputSystem.IsActionPressed* + nameWithType.vb: RaylibInputSystem.IsActionPressed(String) + fullName.vb: Voile.RaylibInputSystem.IsActionPressed(String) + name.vb: IsActionPressed(String) +- uid: Voile.RaylibInputSystem.IsActionReleased(System.String) + commentId: M:Voile.RaylibInputSystem.IsActionReleased(System.String) + id: IsActionReleased(System.String) + parent: Voile.RaylibInputSystem + langs: + - csharp + - vb + name: IsActionReleased(string) + nameWithType: RaylibInputSystem.IsActionReleased(string) + fullName: Voile.RaylibInputSystem.IsActionReleased(string) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsActionReleased + path: Source/Input/RaylibInputSystem.cs + startLine: 89 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override bool IsActionReleased(string action) + parameters: + - id: action + type: System.String + return: + type: System.Boolean + content.vb: Public Overrides Function IsActionReleased(action As String) As Boolean + overridden: Voile.InputSystem.IsActionReleased(System.String) + overload: Voile.RaylibInputSystem.IsActionReleased* + nameWithType.vb: RaylibInputSystem.IsActionReleased(String) + fullName.vb: Voile.RaylibInputSystem.IsActionReleased(String) + name.vb: IsActionReleased(String) +- uid: Voile.RaylibInputSystem.IsKeyboardKeyDown(Voile.KeyboardKey) + commentId: M:Voile.RaylibInputSystem.IsKeyboardKeyDown(Voile.KeyboardKey) + id: IsKeyboardKeyDown(Voile.KeyboardKey) + parent: Voile.RaylibInputSystem + langs: + - csharp + - vb + name: IsKeyboardKeyDown(KeyboardKey) + nameWithType: RaylibInputSystem.IsKeyboardKeyDown(KeyboardKey) + fullName: Voile.RaylibInputSystem.IsKeyboardKeyDown(Voile.KeyboardKey) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsKeyboardKeyDown + path: Source/Input/RaylibInputSystem.cs + startLine: 102 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override bool IsKeyboardKeyDown(KeyboardKey key) + parameters: + - id: key + type: Voile.KeyboardKey + return: + type: System.Boolean + content.vb: Public Overrides Function IsKeyboardKeyDown(key As KeyboardKey) As Boolean + overridden: Voile.InputSystem.IsKeyboardKeyDown(Voile.KeyboardKey) + overload: Voile.RaylibInputSystem.IsKeyboardKeyDown* +- uid: Voile.RaylibInputSystem.IsMouseButtonDown(Voile.MouseButton) + commentId: M:Voile.RaylibInputSystem.IsMouseButtonDown(Voile.MouseButton) + id: IsMouseButtonDown(Voile.MouseButton) + parent: Voile.RaylibInputSystem + langs: + - csharp + - vb + name: IsMouseButtonDown(MouseButton) + nameWithType: RaylibInputSystem.IsMouseButtonDown(MouseButton) + fullName: Voile.RaylibInputSystem.IsMouseButtonDown(Voile.MouseButton) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsMouseButtonDown + path: Source/Input/RaylibInputSystem.cs + startLine: 108 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override bool IsMouseButtonDown(MouseButton button) + parameters: + - id: button + type: Voile.MouseButton + return: + type: System.Boolean + content.vb: Public Overrides Function IsMouseButtonDown(button As MouseButton) As Boolean + overridden: Voile.InputSystem.IsMouseButtonDown(Voile.MouseButton) + overload: Voile.RaylibInputSystem.IsMouseButtonDown* +- uid: Voile.RaylibInputSystem.KeyboardKeyJustPressed(Voile.KeyboardKey) + commentId: M:Voile.RaylibInputSystem.KeyboardKeyJustPressed(Voile.KeyboardKey) + id: KeyboardKeyJustPressed(Voile.KeyboardKey) + parent: Voile.RaylibInputSystem + langs: + - csharp + - vb + name: KeyboardKeyJustPressed(KeyboardKey) + nameWithType: RaylibInputSystem.KeyboardKeyJustPressed(KeyboardKey) + fullName: Voile.RaylibInputSystem.KeyboardKeyJustPressed(Voile.KeyboardKey) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KeyboardKeyJustPressed + path: Source/Input/RaylibInputSystem.cs + startLine: 113 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override bool KeyboardKeyJustPressed(KeyboardKey key) + parameters: + - id: key + type: Voile.KeyboardKey + return: + type: System.Boolean + content.vb: Public Overrides Function KeyboardKeyJustPressed(key As KeyboardKey) As Boolean + overridden: Voile.InputSystem.KeyboardKeyJustPressed(Voile.KeyboardKey) + overload: Voile.RaylibInputSystem.KeyboardKeyJustPressed* +- uid: Voile.RaylibInputSystem.KeyboardKeyJustReleased(Voile.KeyboardKey) + commentId: M:Voile.RaylibInputSystem.KeyboardKeyJustReleased(Voile.KeyboardKey) + id: KeyboardKeyJustReleased(Voile.KeyboardKey) + parent: Voile.RaylibInputSystem + langs: + - csharp + - vb + name: KeyboardKeyJustReleased(KeyboardKey) + nameWithType: RaylibInputSystem.KeyboardKeyJustReleased(KeyboardKey) + fullName: Voile.RaylibInputSystem.KeyboardKeyJustReleased(Voile.KeyboardKey) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: KeyboardKeyJustReleased + path: Source/Input/RaylibInputSystem.cs + startLine: 119 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override bool KeyboardKeyJustReleased(KeyboardKey key) + parameters: + - id: key + type: Voile.KeyboardKey + return: + type: System.Boolean + content.vb: Public Overrides Function KeyboardKeyJustReleased(key As KeyboardKey) As Boolean + overridden: Voile.InputSystem.KeyboardKeyJustReleased(Voile.KeyboardKey) + overload: Voile.RaylibInputSystem.KeyboardKeyJustReleased* +- uid: Voile.RaylibInputSystem.SetMousePosition(System.Numerics.Vector2) + commentId: M:Voile.RaylibInputSystem.SetMousePosition(System.Numerics.Vector2) + id: SetMousePosition(System.Numerics.Vector2) + parent: Voile.RaylibInputSystem + langs: + - csharp + - vb + name: SetMousePosition(Vector2) + nameWithType: RaylibInputSystem.SetMousePosition(Vector2) + fullName: Voile.RaylibInputSystem.SetMousePosition(System.Numerics.Vector2) + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetMousePosition + path: Source/Input/RaylibInputSystem.cs + startLine: 124 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override void SetMousePosition(Vector2 position) + parameters: + - id: position + type: System.Numerics.Vector2 + content.vb: Public Overrides Sub SetMousePosition(position As Vector2) + overridden: Voile.InputSystem.SetMousePosition(System.Numerics.Vector2) + overload: Voile.RaylibInputSystem.SetMousePosition* +- uid: Voile.RaylibInputSystem.ShowCursor + commentId: M:Voile.RaylibInputSystem.ShowCursor + id: ShowCursor + parent: Voile.RaylibInputSystem + langs: + - csharp + - vb + name: ShowCursor() + nameWithType: RaylibInputSystem.ShowCursor() + fullName: Voile.RaylibInputSystem.ShowCursor() + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ShowCursor + path: Source/Input/RaylibInputSystem.cs + startLine: 128 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override void ShowCursor() + content.vb: Public Overrides Sub ShowCursor() + overridden: Voile.InputSystem.ShowCursor + overload: Voile.RaylibInputSystem.ShowCursor* +- uid: Voile.RaylibInputSystem.IsCursorHidden + commentId: M:Voile.RaylibInputSystem.IsCursorHidden + id: IsCursorHidden + parent: Voile.RaylibInputSystem + langs: + - csharp + - vb + name: IsCursorHidden() + nameWithType: RaylibInputSystem.IsCursorHidden() + fullName: Voile.RaylibInputSystem.IsCursorHidden() + type: Method + source: + remote: + path: Voile/Source/Input/RaylibInputSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsCursorHidden + path: Source/Input/RaylibInputSystem.cs + startLine: 129 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public override bool IsCursorHidden() + return: + type: System.Boolean + content.vb: Public Overrides Function IsCursorHidden() As Boolean + overridden: Voile.InputSystem.IsCursorHidden + overload: Voile.RaylibInputSystem.IsCursorHidden* +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.InputSystem + commentId: T:Voile.InputSystem + parent: Voile + href: Voile.InputSystem.html + name: InputSystem + nameWithType: InputSystem + fullName: Voile.InputSystem +- uid: IStartableSystem + commentId: T:IStartableSystem + href: IStartableSystem.html + name: IStartableSystem + nameWithType: IStartableSystem + fullName: IStartableSystem +- uid: System.IDisposable + commentId: T:System.IDisposable + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable + name: IDisposable + nameWithType: IDisposable + fullName: System.IDisposable +- uid: Voile.InputSystem.InputMappings + commentId: P:Voile.InputSystem.InputMappings + parent: Voile.InputSystem + href: Voile.InputSystem.html#Voile_InputSystem_InputMappings + name: InputMappings + nameWithType: InputSystem.InputMappings + fullName: Voile.InputSystem.InputMappings +- uid: Voile.InputSystem.Start + commentId: M:Voile.InputSystem.Start + parent: Voile.InputSystem + href: Voile.InputSystem.html#Voile_InputSystem_Start + name: Start() + nameWithType: InputSystem.Start() + fullName: Voile.InputSystem.Start() + spec.csharp: + - uid: Voile.InputSystem.Start + name: Start + href: Voile.InputSystem.html#Voile_InputSystem_Start + - name: ( + - name: ) + spec.vb: + - uid: Voile.InputSystem.Start + name: Start + href: Voile.InputSystem.html#Voile_InputSystem_Start + - name: ( + - name: ) +- uid: Voile.InputSystem.Shutdown + commentId: M:Voile.InputSystem.Shutdown + parent: Voile.InputSystem + href: Voile.InputSystem.html#Voile_InputSystem_Shutdown + name: Shutdown() + nameWithType: InputSystem.Shutdown() + fullName: Voile.InputSystem.Shutdown() + spec.csharp: + - uid: Voile.InputSystem.Shutdown + name: Shutdown + href: Voile.InputSystem.html#Voile_InputSystem_Shutdown + - name: ( + - name: ) + spec.vb: + - uid: Voile.InputSystem.Shutdown + name: Shutdown + href: Voile.InputSystem.html#Voile_InputSystem_Shutdown + - name: ( + - name: ) +- uid: Voile.InputSystem.Dispose + commentId: M:Voile.InputSystem.Dispose + parent: Voile.InputSystem + href: Voile.InputSystem.html#Voile_InputSystem_Dispose + name: Dispose() + nameWithType: InputSystem.Dispose() + fullName: Voile.InputSystem.Dispose() + spec.csharp: + - uid: Voile.InputSystem.Dispose + name: Dispose + href: Voile.InputSystem.html#Voile_InputSystem_Dispose + - name: ( + - name: ) + spec.vb: + - uid: Voile.InputSystem.Dispose + name: Dispose + href: Voile.InputSystem.html#Voile_InputSystem_Dispose + - name: ( + - name: ) +- uid: Voile.InputSystem.Handled + commentId: P:Voile.InputSystem.Handled + parent: Voile.InputSystem + href: Voile.InputSystem.html#Voile_InputSystem_Handled + name: Handled + nameWithType: InputSystem.Handled + fullName: Voile.InputSystem.Handled +- uid: Voile.InputSystem.SetAsHandled + commentId: M:Voile.InputSystem.SetAsHandled + parent: Voile.InputSystem + href: Voile.InputSystem.html#Voile_InputSystem_SetAsHandled + name: SetAsHandled() + nameWithType: InputSystem.SetAsHandled() + fullName: Voile.InputSystem.SetAsHandled() + spec.csharp: + - uid: Voile.InputSystem.SetAsHandled + name: SetAsHandled + href: Voile.InputSystem.html#Voile_InputSystem_SetAsHandled + - name: ( + - name: ) + spec.vb: + - uid: Voile.InputSystem.SetAsHandled + name: SetAsHandled + href: Voile.InputSystem.html#Voile_InputSystem_SetAsHandled + - name: ( + - name: ) +- uid: Voile.InputSystem.AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.InputAction}) + commentId: M:Voile.InputSystem.AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.InputAction}) + parent: Voile.InputSystem + isExternal: true + href: Voile.InputSystem.html#Voile_InputSystem_AddInputMapping_System_String_System_Collections_Generic_IEnumerable_Voile_InputAction__ + name: AddInputMapping(string, IEnumerable) + nameWithType: InputSystem.AddInputMapping(string, IEnumerable) + fullName: Voile.InputSystem.AddInputMapping(string, System.Collections.Generic.IEnumerable) + nameWithType.vb: InputSystem.AddInputMapping(String, IEnumerable(Of InputAction)) + fullName.vb: Voile.InputSystem.AddInputMapping(String, System.Collections.Generic.IEnumerable(Of Voile.InputAction)) + name.vb: AddInputMapping(String, IEnumerable(Of InputAction)) + spec.csharp: + - uid: Voile.InputSystem.AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.InputAction}) + name: AddInputMapping + href: Voile.InputSystem.html#Voile_InputSystem_AddInputMapping_System_String_System_Collections_Generic_IEnumerable_Voile_InputAction__ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: < + - uid: Voile.InputAction + name: InputAction + href: Voile.InputAction.html + - name: '>' + - name: ) + spec.vb: + - uid: Voile.InputSystem.AddInputMapping(System.String,System.Collections.Generic.IEnumerable{Voile.InputAction}) + name: AddInputMapping + href: Voile.InputSystem.html#Voile_InputSystem_AddInputMapping_System_String_System_Collections_Generic_IEnumerable_Voile_InputAction__ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: ( + - name: Of + - name: " " + - uid: Voile.InputAction + name: InputAction + href: Voile.InputAction.html + - name: ) + - name: ) +- uid: Voile.InputSystem.TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.InputAction}@) + commentId: M:Voile.InputSystem.TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.InputAction}@) + parent: Voile.InputSystem + isExternal: true + href: Voile.InputSystem.html#Voile_InputSystem_TryGetInputMappings_System_String_System_Collections_Generic_IEnumerable_Voile_InputAction___ + name: TryGetInputMappings(string, out IEnumerable) + nameWithType: InputSystem.TryGetInputMappings(string, out IEnumerable) + fullName: Voile.InputSystem.TryGetInputMappings(string, out System.Collections.Generic.IEnumerable) + nameWithType.vb: InputSystem.TryGetInputMappings(String, IEnumerable(Of InputAction)) + fullName.vb: Voile.InputSystem.TryGetInputMappings(String, System.Collections.Generic.IEnumerable(Of Voile.InputAction)) + name.vb: TryGetInputMappings(String, IEnumerable(Of InputAction)) + spec.csharp: + - uid: Voile.InputSystem.TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.InputAction}@) + name: TryGetInputMappings + href: Voile.InputSystem.html#Voile_InputSystem_TryGetInputMappings_System_String_System_Collections_Generic_IEnumerable_Voile_InputAction___ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - name: out + - name: " " + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: < + - uid: Voile.InputAction + name: InputAction + href: Voile.InputAction.html + - name: '>' + - name: ) + spec.vb: + - uid: Voile.InputSystem.TryGetInputMappings(System.String,System.Collections.Generic.IEnumerable{Voile.InputAction}@) + name: TryGetInputMappings + href: Voile.InputSystem.html#Voile_InputSystem_TryGetInputMappings_System_String_System_Collections_Generic_IEnumerable_Voile_InputAction___ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: ( + - name: Of + - name: " " + - uid: Voile.InputAction + name: InputAction + href: Voile.InputAction.html + - name: ) + - name: ) +- uid: Voile.InputSystem.inputMappings + commentId: F:Voile.InputSystem.inputMappings + parent: Voile.InputSystem + href: Voile.InputSystem.html#Voile_InputSystem_inputMappings + name: inputMappings + nameWithType: InputSystem.inputMappings + fullName: Voile.InputSystem.inputMappings +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.InputSystem.GetCharPressed + commentId: M:Voile.InputSystem.GetCharPressed + parent: Voile.InputSystem + href: Voile.InputSystem.html#Voile_InputSystem_GetCharPressed + name: GetCharPressed() + nameWithType: InputSystem.GetCharPressed() + fullName: Voile.InputSystem.GetCharPressed() + spec.csharp: + - uid: Voile.InputSystem.GetCharPressed + name: GetCharPressed + href: Voile.InputSystem.html#Voile_InputSystem_GetCharPressed + - name: ( + - name: ) + spec.vb: + - uid: Voile.InputSystem.GetCharPressed + name: GetCharPressed + href: Voile.InputSystem.html#Voile_InputSystem_GetCharPressed + - name: ( + - name: ) +- uid: Voile.RaylibInputSystem.GetCharPressed* + commentId: Overload:Voile.RaylibInputSystem.GetCharPressed + href: Voile.RaylibInputSystem.html#Voile_RaylibInputSystem_GetCharPressed + name: GetCharPressed + nameWithType: RaylibInputSystem.GetCharPressed + fullName: Voile.RaylibInputSystem.GetCharPressed +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: Voile.InputSystem.GetInputDirection(Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey) + commentId: M:Voile.InputSystem.GetInputDirection(Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey) + parent: Voile.InputSystem + href: Voile.InputSystem.html#Voile_InputSystem_GetInputDirection_Voile_KeyboardKey_Voile_KeyboardKey_Voile_KeyboardKey_Voile_KeyboardKey_ + name: GetInputDirection(KeyboardKey, KeyboardKey, KeyboardKey, KeyboardKey) + nameWithType: InputSystem.GetInputDirection(KeyboardKey, KeyboardKey, KeyboardKey, KeyboardKey) + fullName: Voile.InputSystem.GetInputDirection(Voile.KeyboardKey, Voile.KeyboardKey, Voile.KeyboardKey, Voile.KeyboardKey) + spec.csharp: + - uid: Voile.InputSystem.GetInputDirection(Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey) + name: GetInputDirection + href: Voile.InputSystem.html#Voile_InputSystem_GetInputDirection_Voile_KeyboardKey_Voile_KeyboardKey_Voile_KeyboardKey_Voile_KeyboardKey_ + - name: ( + - uid: Voile.KeyboardKey + name: KeyboardKey + href: Voile.KeyboardKey.html + - name: ',' + - name: " " + - uid: Voile.KeyboardKey + name: KeyboardKey + href: Voile.KeyboardKey.html + - name: ',' + - name: " " + - uid: Voile.KeyboardKey + name: KeyboardKey + href: Voile.KeyboardKey.html + - name: ',' + - name: " " + - uid: Voile.KeyboardKey + name: KeyboardKey + href: Voile.KeyboardKey.html + - name: ) + spec.vb: + - uid: Voile.InputSystem.GetInputDirection(Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey,Voile.KeyboardKey) + name: GetInputDirection + href: Voile.InputSystem.html#Voile_InputSystem_GetInputDirection_Voile_KeyboardKey_Voile_KeyboardKey_Voile_KeyboardKey_Voile_KeyboardKey_ + - name: ( + - uid: Voile.KeyboardKey + name: KeyboardKey + href: Voile.KeyboardKey.html + - name: ',' + - name: " " + - uid: Voile.KeyboardKey + name: KeyboardKey + href: Voile.KeyboardKey.html + - name: ',' + - name: " " + - uid: Voile.KeyboardKey + name: KeyboardKey + href: Voile.KeyboardKey.html + - name: ',' + - name: " " + - uid: Voile.KeyboardKey + name: KeyboardKey + href: Voile.KeyboardKey.html + - name: ) +- uid: Voile.RaylibInputSystem.GetInputDirection* + commentId: Overload:Voile.RaylibInputSystem.GetInputDirection + href: Voile.RaylibInputSystem.html#Voile_RaylibInputSystem_GetInputDirection_Voile_KeyboardKey_Voile_KeyboardKey_Voile_KeyboardKey_Voile_KeyboardKey_ + name: GetInputDirection + nameWithType: RaylibInputSystem.GetInputDirection + fullName: Voile.RaylibInputSystem.GetInputDirection +- uid: Voile.KeyboardKey + commentId: T:Voile.KeyboardKey + parent: Voile + href: Voile.KeyboardKey.html + name: KeyboardKey + nameWithType: KeyboardKey + fullName: Voile.KeyboardKey +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: Voile.InputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + commentId: M:Voile.InputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + parent: Voile.InputSystem + isExternal: true + href: Voile.InputSystem.html#Voile_InputSystem_GetInputDirection_System_String_System_String_System_String_System_String_ + name: GetInputDirection(string, string, string, string) + nameWithType: InputSystem.GetInputDirection(string, string, string, string) + fullName: Voile.InputSystem.GetInputDirection(string, string, string, string) + nameWithType.vb: InputSystem.GetInputDirection(String, String, String, String) + fullName.vb: Voile.InputSystem.GetInputDirection(String, String, String, String) + name.vb: GetInputDirection(String, String, String, String) + spec.csharp: + - uid: Voile.InputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + name: GetInputDirection + href: Voile.InputSystem.html#Voile_InputSystem_GetInputDirection_System_String_System_String_System_String_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.InputSystem.GetInputDirection(System.String,System.String,System.String,System.String) + name: GetInputDirection + href: Voile.InputSystem.html#Voile_InputSystem_GetInputDirection_System_String_System_String_System_String_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.InputSystem.GetMousePosition + commentId: M:Voile.InputSystem.GetMousePosition + parent: Voile.InputSystem + href: Voile.InputSystem.html#Voile_InputSystem_GetMousePosition + name: GetMousePosition() + nameWithType: InputSystem.GetMousePosition() + fullName: Voile.InputSystem.GetMousePosition() + spec.csharp: + - uid: Voile.InputSystem.GetMousePosition + name: GetMousePosition + href: Voile.InputSystem.html#Voile_InputSystem_GetMousePosition + - name: ( + - name: ) + spec.vb: + - uid: Voile.InputSystem.GetMousePosition + name: GetMousePosition + href: Voile.InputSystem.html#Voile_InputSystem_GetMousePosition + - name: ( + - name: ) +- uid: Voile.RaylibInputSystem.GetMousePosition* + commentId: Overload:Voile.RaylibInputSystem.GetMousePosition + href: Voile.RaylibInputSystem.html#Voile_RaylibInputSystem_GetMousePosition + name: GetMousePosition + nameWithType: RaylibInputSystem.GetMousePosition + fullName: Voile.RaylibInputSystem.GetMousePosition +- uid: Voile.InputSystem.GetMouseWheelMovement + commentId: M:Voile.InputSystem.GetMouseWheelMovement + parent: Voile.InputSystem + href: Voile.InputSystem.html#Voile_InputSystem_GetMouseWheelMovement + name: GetMouseWheelMovement() + nameWithType: InputSystem.GetMouseWheelMovement() + fullName: Voile.InputSystem.GetMouseWheelMovement() + spec.csharp: + - uid: Voile.InputSystem.GetMouseWheelMovement + name: GetMouseWheelMovement + href: Voile.InputSystem.html#Voile_InputSystem_GetMouseWheelMovement + - name: ( + - name: ) + spec.vb: + - uid: Voile.InputSystem.GetMouseWheelMovement + name: GetMouseWheelMovement + href: Voile.InputSystem.html#Voile_InputSystem_GetMouseWheelMovement + - name: ( + - name: ) +- uid: Voile.RaylibInputSystem.GetMouseWheelMovement* + commentId: Overload:Voile.RaylibInputSystem.GetMouseWheelMovement + href: Voile.RaylibInputSystem.html#Voile_RaylibInputSystem_GetMouseWheelMovement + name: GetMouseWheelMovement + nameWithType: RaylibInputSystem.GetMouseWheelMovement + fullName: Voile.RaylibInputSystem.GetMouseWheelMovement +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: Voile.InputSystem.HideCursor + commentId: M:Voile.InputSystem.HideCursor + parent: Voile.InputSystem + href: Voile.InputSystem.html#Voile_InputSystem_HideCursor + name: HideCursor() + nameWithType: InputSystem.HideCursor() + fullName: Voile.InputSystem.HideCursor() + spec.csharp: + - uid: Voile.InputSystem.HideCursor + name: HideCursor + href: Voile.InputSystem.html#Voile_InputSystem_HideCursor + - name: ( + - name: ) + spec.vb: + - uid: Voile.InputSystem.HideCursor + name: HideCursor + href: Voile.InputSystem.html#Voile_InputSystem_HideCursor + - name: ( + - name: ) +- uid: Voile.RaylibInputSystem.HideCursor* + commentId: Overload:Voile.RaylibInputSystem.HideCursor + href: Voile.RaylibInputSystem.html#Voile_RaylibInputSystem_HideCursor + name: HideCursor + nameWithType: RaylibInputSystem.HideCursor + fullName: Voile.RaylibInputSystem.HideCursor +- uid: Voile.InputSystem.IsActionDown(System.String) + commentId: M:Voile.InputSystem.IsActionDown(System.String) + parent: Voile.InputSystem + isExternal: true + href: Voile.InputSystem.html#Voile_InputSystem_IsActionDown_System_String_ + name: IsActionDown(string) + nameWithType: InputSystem.IsActionDown(string) + fullName: Voile.InputSystem.IsActionDown(string) + nameWithType.vb: InputSystem.IsActionDown(String) + fullName.vb: Voile.InputSystem.IsActionDown(String) + name.vb: IsActionDown(String) + spec.csharp: + - uid: Voile.InputSystem.IsActionDown(System.String) + name: IsActionDown + href: Voile.InputSystem.html#Voile_InputSystem_IsActionDown_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.InputSystem.IsActionDown(System.String) + name: IsActionDown + href: Voile.InputSystem.html#Voile_InputSystem_IsActionDown_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.RaylibInputSystem.IsActionDown* + commentId: Overload:Voile.RaylibInputSystem.IsActionDown + href: Voile.RaylibInputSystem.html#Voile_RaylibInputSystem_IsActionDown_System_String_ + name: IsActionDown + nameWithType: RaylibInputSystem.IsActionDown + fullName: Voile.RaylibInputSystem.IsActionDown +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: Voile.InputSystem.IsActionPressed(System.String) + commentId: M:Voile.InputSystem.IsActionPressed(System.String) + parent: Voile.InputSystem + isExternal: true + href: Voile.InputSystem.html#Voile_InputSystem_IsActionPressed_System_String_ + name: IsActionPressed(string) + nameWithType: InputSystem.IsActionPressed(string) + fullName: Voile.InputSystem.IsActionPressed(string) + nameWithType.vb: InputSystem.IsActionPressed(String) + fullName.vb: Voile.InputSystem.IsActionPressed(String) + name.vb: IsActionPressed(String) + spec.csharp: + - uid: Voile.InputSystem.IsActionPressed(System.String) + name: IsActionPressed + href: Voile.InputSystem.html#Voile_InputSystem_IsActionPressed_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.InputSystem.IsActionPressed(System.String) + name: IsActionPressed + href: Voile.InputSystem.html#Voile_InputSystem_IsActionPressed_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.RaylibInputSystem.IsActionPressed* + commentId: Overload:Voile.RaylibInputSystem.IsActionPressed + href: Voile.RaylibInputSystem.html#Voile_RaylibInputSystem_IsActionPressed_System_String_ + name: IsActionPressed + nameWithType: RaylibInputSystem.IsActionPressed + fullName: Voile.RaylibInputSystem.IsActionPressed +- uid: Voile.InputSystem.IsActionReleased(System.String) + commentId: M:Voile.InputSystem.IsActionReleased(System.String) + parent: Voile.InputSystem + isExternal: true + href: Voile.InputSystem.html#Voile_InputSystem_IsActionReleased_System_String_ + name: IsActionReleased(string) + nameWithType: InputSystem.IsActionReleased(string) + fullName: Voile.InputSystem.IsActionReleased(string) + nameWithType.vb: InputSystem.IsActionReleased(String) + fullName.vb: Voile.InputSystem.IsActionReleased(String) + name.vb: IsActionReleased(String) + spec.csharp: + - uid: Voile.InputSystem.IsActionReleased(System.String) + name: IsActionReleased + href: Voile.InputSystem.html#Voile_InputSystem_IsActionReleased_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.InputSystem.IsActionReleased(System.String) + name: IsActionReleased + href: Voile.InputSystem.html#Voile_InputSystem_IsActionReleased_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.RaylibInputSystem.IsActionReleased* + commentId: Overload:Voile.RaylibInputSystem.IsActionReleased + href: Voile.RaylibInputSystem.html#Voile_RaylibInputSystem_IsActionReleased_System_String_ + name: IsActionReleased + nameWithType: RaylibInputSystem.IsActionReleased + fullName: Voile.RaylibInputSystem.IsActionReleased +- uid: Voile.InputSystem.IsKeyboardKeyDown(Voile.KeyboardKey) + commentId: M:Voile.InputSystem.IsKeyboardKeyDown(Voile.KeyboardKey) + parent: Voile.InputSystem + href: Voile.InputSystem.html#Voile_InputSystem_IsKeyboardKeyDown_Voile_KeyboardKey_ + name: IsKeyboardKeyDown(KeyboardKey) + nameWithType: InputSystem.IsKeyboardKeyDown(KeyboardKey) + fullName: Voile.InputSystem.IsKeyboardKeyDown(Voile.KeyboardKey) + spec.csharp: + - uid: Voile.InputSystem.IsKeyboardKeyDown(Voile.KeyboardKey) + name: IsKeyboardKeyDown + href: Voile.InputSystem.html#Voile_InputSystem_IsKeyboardKeyDown_Voile_KeyboardKey_ + - name: ( + - uid: Voile.KeyboardKey + name: KeyboardKey + href: Voile.KeyboardKey.html + - name: ) + spec.vb: + - uid: Voile.InputSystem.IsKeyboardKeyDown(Voile.KeyboardKey) + name: IsKeyboardKeyDown + href: Voile.InputSystem.html#Voile_InputSystem_IsKeyboardKeyDown_Voile_KeyboardKey_ + - name: ( + - uid: Voile.KeyboardKey + name: KeyboardKey + href: Voile.KeyboardKey.html + - name: ) +- uid: Voile.RaylibInputSystem.IsKeyboardKeyDown* + commentId: Overload:Voile.RaylibInputSystem.IsKeyboardKeyDown + href: Voile.RaylibInputSystem.html#Voile_RaylibInputSystem_IsKeyboardKeyDown_Voile_KeyboardKey_ + name: IsKeyboardKeyDown + nameWithType: RaylibInputSystem.IsKeyboardKeyDown + fullName: Voile.RaylibInputSystem.IsKeyboardKeyDown +- uid: Voile.InputSystem.IsMouseButtonDown(Voile.MouseButton) + commentId: M:Voile.InputSystem.IsMouseButtonDown(Voile.MouseButton) + parent: Voile.InputSystem + href: Voile.InputSystem.html#Voile_InputSystem_IsMouseButtonDown_Voile_MouseButton_ + name: IsMouseButtonDown(MouseButton) + nameWithType: InputSystem.IsMouseButtonDown(MouseButton) + fullName: Voile.InputSystem.IsMouseButtonDown(Voile.MouseButton) + spec.csharp: + - uid: Voile.InputSystem.IsMouseButtonDown(Voile.MouseButton) + name: IsMouseButtonDown + href: Voile.InputSystem.html#Voile_InputSystem_IsMouseButtonDown_Voile_MouseButton_ + - name: ( + - uid: Voile.MouseButton + name: MouseButton + href: Voile.MouseButton.html + - name: ) + spec.vb: + - uid: Voile.InputSystem.IsMouseButtonDown(Voile.MouseButton) + name: IsMouseButtonDown + href: Voile.InputSystem.html#Voile_InputSystem_IsMouseButtonDown_Voile_MouseButton_ + - name: ( + - uid: Voile.MouseButton + name: MouseButton + href: Voile.MouseButton.html + - name: ) +- uid: Voile.RaylibInputSystem.IsMouseButtonDown* + commentId: Overload:Voile.RaylibInputSystem.IsMouseButtonDown + href: Voile.RaylibInputSystem.html#Voile_RaylibInputSystem_IsMouseButtonDown_Voile_MouseButton_ + name: IsMouseButtonDown + nameWithType: RaylibInputSystem.IsMouseButtonDown + fullName: Voile.RaylibInputSystem.IsMouseButtonDown +- uid: Voile.MouseButton + commentId: T:Voile.MouseButton + parent: Voile + href: Voile.MouseButton.html + name: MouseButton + nameWithType: MouseButton + fullName: Voile.MouseButton +- uid: Voile.InputSystem.KeyboardKeyJustPressed(Voile.KeyboardKey) + commentId: M:Voile.InputSystem.KeyboardKeyJustPressed(Voile.KeyboardKey) + parent: Voile.InputSystem + href: Voile.InputSystem.html#Voile_InputSystem_KeyboardKeyJustPressed_Voile_KeyboardKey_ + name: KeyboardKeyJustPressed(KeyboardKey) + nameWithType: InputSystem.KeyboardKeyJustPressed(KeyboardKey) + fullName: Voile.InputSystem.KeyboardKeyJustPressed(Voile.KeyboardKey) + spec.csharp: + - uid: Voile.InputSystem.KeyboardKeyJustPressed(Voile.KeyboardKey) + name: KeyboardKeyJustPressed + href: Voile.InputSystem.html#Voile_InputSystem_KeyboardKeyJustPressed_Voile_KeyboardKey_ + - name: ( + - uid: Voile.KeyboardKey + name: KeyboardKey + href: Voile.KeyboardKey.html + - name: ) + spec.vb: + - uid: Voile.InputSystem.KeyboardKeyJustPressed(Voile.KeyboardKey) + name: KeyboardKeyJustPressed + href: Voile.InputSystem.html#Voile_InputSystem_KeyboardKeyJustPressed_Voile_KeyboardKey_ + - name: ( + - uid: Voile.KeyboardKey + name: KeyboardKey + href: Voile.KeyboardKey.html + - name: ) +- uid: Voile.RaylibInputSystem.KeyboardKeyJustPressed* + commentId: Overload:Voile.RaylibInputSystem.KeyboardKeyJustPressed + href: Voile.RaylibInputSystem.html#Voile_RaylibInputSystem_KeyboardKeyJustPressed_Voile_KeyboardKey_ + name: KeyboardKeyJustPressed + nameWithType: RaylibInputSystem.KeyboardKeyJustPressed + fullName: Voile.RaylibInputSystem.KeyboardKeyJustPressed +- uid: Voile.InputSystem.KeyboardKeyJustReleased(Voile.KeyboardKey) + commentId: M:Voile.InputSystem.KeyboardKeyJustReleased(Voile.KeyboardKey) + parent: Voile.InputSystem + href: Voile.InputSystem.html#Voile_InputSystem_KeyboardKeyJustReleased_Voile_KeyboardKey_ + name: KeyboardKeyJustReleased(KeyboardKey) + nameWithType: InputSystem.KeyboardKeyJustReleased(KeyboardKey) + fullName: Voile.InputSystem.KeyboardKeyJustReleased(Voile.KeyboardKey) + spec.csharp: + - uid: Voile.InputSystem.KeyboardKeyJustReleased(Voile.KeyboardKey) + name: KeyboardKeyJustReleased + href: Voile.InputSystem.html#Voile_InputSystem_KeyboardKeyJustReleased_Voile_KeyboardKey_ + - name: ( + - uid: Voile.KeyboardKey + name: KeyboardKey + href: Voile.KeyboardKey.html + - name: ) + spec.vb: + - uid: Voile.InputSystem.KeyboardKeyJustReleased(Voile.KeyboardKey) + name: KeyboardKeyJustReleased + href: Voile.InputSystem.html#Voile_InputSystem_KeyboardKeyJustReleased_Voile_KeyboardKey_ + - name: ( + - uid: Voile.KeyboardKey + name: KeyboardKey + href: Voile.KeyboardKey.html + - name: ) +- uid: Voile.RaylibInputSystem.KeyboardKeyJustReleased* + commentId: Overload:Voile.RaylibInputSystem.KeyboardKeyJustReleased + href: Voile.RaylibInputSystem.html#Voile_RaylibInputSystem_KeyboardKeyJustReleased_Voile_KeyboardKey_ + name: KeyboardKeyJustReleased + nameWithType: RaylibInputSystem.KeyboardKeyJustReleased + fullName: Voile.RaylibInputSystem.KeyboardKeyJustReleased +- uid: Voile.InputSystem.SetMousePosition(System.Numerics.Vector2) + commentId: M:Voile.InputSystem.SetMousePosition(System.Numerics.Vector2) + parent: Voile.InputSystem + isExternal: true + href: Voile.InputSystem.html#Voile_InputSystem_SetMousePosition_System_Numerics_Vector2_ + name: SetMousePosition(Vector2) + nameWithType: InputSystem.SetMousePosition(Vector2) + fullName: Voile.InputSystem.SetMousePosition(System.Numerics.Vector2) + spec.csharp: + - uid: Voile.InputSystem.SetMousePosition(System.Numerics.Vector2) + name: SetMousePosition + href: Voile.InputSystem.html#Voile_InputSystem_SetMousePosition_System_Numerics_Vector2_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ) + spec.vb: + - uid: Voile.InputSystem.SetMousePosition(System.Numerics.Vector2) + name: SetMousePosition + href: Voile.InputSystem.html#Voile_InputSystem_SetMousePosition_System_Numerics_Vector2_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ) +- uid: Voile.RaylibInputSystem.SetMousePosition* + commentId: Overload:Voile.RaylibInputSystem.SetMousePosition + href: Voile.RaylibInputSystem.html#Voile_RaylibInputSystem_SetMousePosition_System_Numerics_Vector2_ + name: SetMousePosition + nameWithType: RaylibInputSystem.SetMousePosition + fullName: Voile.RaylibInputSystem.SetMousePosition +- uid: Voile.InputSystem.ShowCursor + commentId: M:Voile.InputSystem.ShowCursor + parent: Voile.InputSystem + href: Voile.InputSystem.html#Voile_InputSystem_ShowCursor + name: ShowCursor() + nameWithType: InputSystem.ShowCursor() + fullName: Voile.InputSystem.ShowCursor() + spec.csharp: + - uid: Voile.InputSystem.ShowCursor + name: ShowCursor + href: Voile.InputSystem.html#Voile_InputSystem_ShowCursor + - name: ( + - name: ) + spec.vb: + - uid: Voile.InputSystem.ShowCursor + name: ShowCursor + href: Voile.InputSystem.html#Voile_InputSystem_ShowCursor + - name: ( + - name: ) +- uid: Voile.RaylibInputSystem.ShowCursor* + commentId: Overload:Voile.RaylibInputSystem.ShowCursor + href: Voile.RaylibInputSystem.html#Voile_RaylibInputSystem_ShowCursor + name: ShowCursor + nameWithType: RaylibInputSystem.ShowCursor + fullName: Voile.RaylibInputSystem.ShowCursor +- uid: Voile.InputSystem.IsCursorHidden + commentId: M:Voile.InputSystem.IsCursorHidden + parent: Voile.InputSystem + href: Voile.InputSystem.html#Voile_InputSystem_IsCursorHidden + name: IsCursorHidden() + nameWithType: InputSystem.IsCursorHidden() + fullName: Voile.InputSystem.IsCursorHidden() + spec.csharp: + - uid: Voile.InputSystem.IsCursorHidden + name: IsCursorHidden + href: Voile.InputSystem.html#Voile_InputSystem_IsCursorHidden + - name: ( + - name: ) + spec.vb: + - uid: Voile.InputSystem.IsCursorHidden + name: IsCursorHidden + href: Voile.InputSystem.html#Voile_InputSystem_IsCursorHidden + - name: ( + - name: ) +- uid: Voile.RaylibInputSystem.IsCursorHidden* + commentId: Overload:Voile.RaylibInputSystem.IsCursorHidden + href: Voile.RaylibInputSystem.html#Voile_RaylibInputSystem_IsCursorHidden + name: IsCursorHidden + nameWithType: RaylibInputSystem.IsCursorHidden + fullName: Voile.RaylibInputSystem.IsCursorHidden diff --git a/Voile/api/Voile.Rendering.ColorRectShader.yml b/Voile/api/Voile.Rendering.ColorRectShader.yml new file mode 100644 index 0000000..40f5112 --- /dev/null +++ b/Voile/api/Voile.Rendering.ColorRectShader.yml @@ -0,0 +1,407 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Rendering.ColorRectShader + commentId: T:Voile.Rendering.ColorRectShader + id: ColorRectShader + parent: Voile.Rendering + children: + - Voile.Rendering.ColorRectShader.FragmentSource + - Voile.Rendering.ColorRectShader.VertexSource + langs: + - csharp + - vb + name: ColorRectShader + nameWithType: ColorRectShader + fullName: Voile.Rendering.ColorRectShader + type: Class + source: + remote: + path: Voile/Source/Rendering/ColorRectShader.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ColorRectShader + path: Source/Rendering/ColorRectShader.cs + startLine: 2 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: 'public class ColorRectShader : Shader' + content.vb: Public Class ColorRectShader Inherits Shader + inheritance: + - System.Object + - Voile.Rendering.Shader + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Rendering.ColorRectShader.FragmentSource + commentId: P:Voile.Rendering.ColorRectShader.FragmentSource + id: FragmentSource + parent: Voile.Rendering.ColorRectShader + langs: + - csharp + - vb + name: FragmentSource + nameWithType: ColorRectShader.FragmentSource + fullName: Voile.Rendering.ColorRectShader.FragmentSource + type: Property + source: + remote: + path: Voile/Source/Rendering/ColorRectShader.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: FragmentSource + path: Source/Rendering/ColorRectShader.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: public override string FragmentSource { get; } + parameters: [] + return: + type: System.String + content.vb: Public Overrides ReadOnly Property FragmentSource As String + overridden: Voile.Rendering.Shader.FragmentSource + overload: Voile.Rendering.ColorRectShader.FragmentSource* +- uid: Voile.Rendering.ColorRectShader.VertexSource + commentId: P:Voile.Rendering.ColorRectShader.VertexSource + id: VertexSource + parent: Voile.Rendering.ColorRectShader + langs: + - csharp + - vb + name: VertexSource + nameWithType: ColorRectShader.VertexSource + fullName: Voile.Rendering.ColorRectShader.VertexSource + type: Property + source: + remote: + path: Voile/Source/Rendering/ColorRectShader.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: VertexSource + path: Source/Rendering/ColorRectShader.cs + startLine: 18 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: public override string VertexSource { get; } + parameters: [] + return: + type: System.String + content.vb: Public Overrides ReadOnly Property VertexSource As String + overridden: Voile.Rendering.Shader.VertexSource + overload: Voile.Rendering.ColorRectShader.VertexSource* +references: +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.Rendering.Shader + commentId: T:Voile.Rendering.Shader + parent: Voile.Rendering + href: Voile.Rendering.Shader.html + name: Shader + nameWithType: Shader + fullName: Voile.Rendering.Shader +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Rendering.Shader.FragmentSource + commentId: P:Voile.Rendering.Shader.FragmentSource + parent: Voile.Rendering.Shader + href: Voile.Rendering.Shader.html#Voile_Rendering_Shader_FragmentSource + name: FragmentSource + nameWithType: Shader.FragmentSource + fullName: Voile.Rendering.Shader.FragmentSource +- uid: Voile.Rendering.ColorRectShader.FragmentSource* + commentId: Overload:Voile.Rendering.ColorRectShader.FragmentSource + href: Voile.Rendering.ColorRectShader.html#Voile_Rendering_ColorRectShader_FragmentSource + name: FragmentSource + nameWithType: ColorRectShader.FragmentSource + fullName: Voile.Rendering.ColorRectShader.FragmentSource +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.Rendering.Shader.VertexSource + commentId: P:Voile.Rendering.Shader.VertexSource + parent: Voile.Rendering.Shader + href: Voile.Rendering.Shader.html#Voile_Rendering_Shader_VertexSource + name: VertexSource + nameWithType: Shader.VertexSource + fullName: Voile.Rendering.Shader.VertexSource +- uid: Voile.Rendering.ColorRectShader.VertexSource* + commentId: Overload:Voile.Rendering.ColorRectShader.VertexSource + href: Voile.Rendering.ColorRectShader.html#Voile_Rendering_ColorRectShader_VertexSource + name: VertexSource + nameWithType: ColorRectShader.VertexSource + fullName: Voile.Rendering.ColorRectShader.VertexSource diff --git a/Voile/api/Voile.Rendering.Material.yml b/Voile/api/Voile.Rendering.Material.yml new file mode 100644 index 0000000..0d37475 --- /dev/null +++ b/Voile/api/Voile.Rendering.Material.yml @@ -0,0 +1,345 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Rendering.Material + commentId: T:Voile.Rendering.Material + id: Material + parent: Voile.Rendering + children: + - Voile.Rendering.Material.Unlit + langs: + - csharp + - vb + name: Material + nameWithType: Material + fullName: Voile.Rendering.Material + type: Class + source: + remote: + path: Voile/Source/Rendering/Material.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Material + path: Source/Rendering/Material.cs + startLine: 5 + assemblies: + - Voile + namespace: Voile.Rendering + summary: An abstract class representing a render pipeline for the renderer, with entry points to fragment and vertex programs. + example: [] + syntax: + content: public abstract class Material + content.vb: Public MustInherit Class Material + inheritance: + - System.Object + derivedClasses: + - Voile.Rendering.UnlitMaterial + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Rendering.Material.Unlit + commentId: P:Voile.Rendering.Material.Unlit + id: Unlit + parent: Voile.Rendering.Material + langs: + - csharp + - vb + name: Unlit + nameWithType: Material.Unlit + fullName: Voile.Rendering.Material.Unlit + type: Property + source: + remote: + path: Voile/Source/Rendering/Material.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Unlit + path: Source/Rendering/Material.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public static UnlitMaterial Unlit { get; } + parameters: [] + return: + type: Voile.Rendering.UnlitMaterial + content.vb: Public Shared ReadOnly Property Unlit As UnlitMaterial + overload: Voile.Rendering.Material.Unlit* +references: +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Rendering.Material.Unlit* + commentId: Overload:Voile.Rendering.Material.Unlit + href: Voile.Rendering.Material.html#Voile_Rendering_Material_Unlit + name: Unlit + nameWithType: Material.Unlit + fullName: Voile.Rendering.Material.Unlit +- uid: Voile.Rendering.UnlitMaterial + commentId: T:Voile.Rendering.UnlitMaterial + parent: Voile.Rendering + href: Voile.Rendering.UnlitMaterial.html + name: UnlitMaterial + nameWithType: UnlitMaterial + fullName: Voile.Rendering.UnlitMaterial diff --git a/Voile/api/Voile.Rendering.Msaa.yml b/Voile/api/Voile.Rendering.Msaa.yml new file mode 100644 index 0000000..283407e --- /dev/null +++ b/Voile/api/Voile.Rendering.Msaa.yml @@ -0,0 +1,166 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Rendering.Msaa + commentId: T:Voile.Rendering.Msaa + id: Msaa + parent: Voile.Rendering + children: + - Voile.Rendering.Msaa.Msaa2x + - Voile.Rendering.Msaa.Msaa4x + - Voile.Rendering.Msaa.Msaa8x + - Voile.Rendering.Msaa.None + langs: + - csharp + - vb + name: Msaa + nameWithType: Msaa + fullName: Voile.Rendering.Msaa + type: Enum + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Msaa + path: Source/Rendering/RenderSystem.cs + startLine: 159 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public enum Msaa + content.vb: Public Enum Msaa +- uid: Voile.Rendering.Msaa.None + commentId: F:Voile.Rendering.Msaa.None + id: None + parent: Voile.Rendering.Msaa + langs: + - csharp + - vb + name: None + nameWithType: Msaa.None + fullName: Voile.Rendering.Msaa.None + type: Field + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: None + path: Source/Rendering/RenderSystem.cs + startLine: 161 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: None = 0 + return: + type: Voile.Rendering.Msaa +- uid: Voile.Rendering.Msaa.Msaa2x + commentId: F:Voile.Rendering.Msaa.Msaa2x + id: Msaa2x + parent: Voile.Rendering.Msaa + langs: + - csharp + - vb + name: Msaa2x + nameWithType: Msaa.Msaa2x + fullName: Voile.Rendering.Msaa.Msaa2x + type: Field + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Msaa2x + path: Source/Rendering/RenderSystem.cs + startLine: 162 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: Msaa2x = 1 + return: + type: Voile.Rendering.Msaa +- uid: Voile.Rendering.Msaa.Msaa4x + commentId: F:Voile.Rendering.Msaa.Msaa4x + id: Msaa4x + parent: Voile.Rendering.Msaa + langs: + - csharp + - vb + name: Msaa4x + nameWithType: Msaa.Msaa4x + fullName: Voile.Rendering.Msaa.Msaa4x + type: Field + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Msaa4x + path: Source/Rendering/RenderSystem.cs + startLine: 163 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: Msaa4x = 2 + return: + type: Voile.Rendering.Msaa +- uid: Voile.Rendering.Msaa.Msaa8x + commentId: F:Voile.Rendering.Msaa.Msaa8x + id: Msaa8x + parent: Voile.Rendering.Msaa + langs: + - csharp + - vb + name: Msaa8x + nameWithType: Msaa.Msaa8x + fullName: Voile.Rendering.Msaa.Msaa8x + type: Field + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Msaa8x + path: Source/Rendering/RenderSystem.cs + startLine: 164 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: Msaa8x = 3 + return: + type: Voile.Rendering.Msaa +references: +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: Voile.Rendering.Msaa + commentId: T:Voile.Rendering.Msaa + parent: Voile.Rendering + href: Voile.Rendering.Msaa.html + name: Msaa + nameWithType: Msaa + fullName: Voile.Rendering.Msaa diff --git a/Voile/api/Voile.Rendering.RaylibRenderSystem.yml b/Voile/api/Voile.Rendering.RaylibRenderSystem.yml new file mode 100644 index 0000000..ffb3da4 --- /dev/null +++ b/Voile/api/Voile.Rendering.RaylibRenderSystem.yml @@ -0,0 +1,2721 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Rendering.RaylibRenderSystem + commentId: T:Voile.Rendering.RaylibRenderSystem + id: RaylibRenderSystem + parent: Voile.Rendering + children: + - Voile.Rendering.RaylibRenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + - Voile.Rendering.RaylibRenderSystem.BeginFrame + - Voile.Rendering.RaylibRenderSystem.ClearBackground(Voile.Color) + - Voile.Rendering.RaylibRenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + - Voile.Rendering.RaylibRenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + - Voile.Rendering.RaylibRenderSystem.DrawCircle(System.Single,Voile.Color) + - Voile.Rendering.RaylibRenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + - Voile.Rendering.RaylibRenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + - Voile.Rendering.RaylibRenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + - Voile.Rendering.RaylibRenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + - Voile.Rendering.RaylibRenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + - Voile.Rendering.RaylibRenderSystem.EndCamera2d + - Voile.Rendering.RaylibRenderSystem.EndFrame + - Voile.Rendering.RaylibRenderSystem.Fullscreen + - Voile.Rendering.RaylibRenderSystem.GetCurrentMonitor + - Voile.Rendering.RaylibRenderSystem.GetFrameTime + - Voile.Rendering.RaylibRenderSystem.GetMonitorHeight(System.Int32) + - Voile.Rendering.RaylibRenderSystem.GetMonitorWidth(System.Int32) + - Voile.Rendering.RaylibRenderSystem.Initialize(Voile.Rendering.RendererSettings) + - Voile.Rendering.RaylibRenderSystem.MonitorSize + - Voile.Rendering.RaylibRenderSystem.SetTargetFps(System.Int32) + - Voile.Rendering.RaylibRenderSystem.SetTransform(System.Numerics.Matrix4x4) + - Voile.Rendering.RaylibRenderSystem.SetWindowTitle(System.String) + - Voile.Rendering.RaylibRenderSystem.SetWindowVSync(System.Boolean) + - Voile.Rendering.RaylibRenderSystem.ShouldRun + - Voile.Rendering.RaylibRenderSystem.Shutdown + - Voile.Rendering.RaylibRenderSystem.TargetFps + - Voile.Rendering.RaylibRenderSystem.VSync + - Voile.Rendering.RaylibRenderSystem.WindowShouldClose + - Voile.Rendering.RaylibRenderSystem.WindowSize + - Voile.Rendering.RaylibRenderSystem.WindowTitle + langs: + - csharp + - vb + name: RaylibRenderSystem + nameWithType: RaylibRenderSystem + fullName: Voile.Rendering.RaylibRenderSystem + type: Class + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RaylibRenderSystem + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: 'public class RaylibRenderSystem : RenderSystem, IStartableSystem, IDisposable' + content.vb: Public Class RaylibRenderSystem Inherits RenderSystem Implements IStartableSystem(Of RendererSettings), IDisposable + inheritance: + - System.Object + - Voile.Rendering.RenderSystem + implements: + - Voile.IStartableSystem{Voile.Rendering.RendererSettings} + - System.IDisposable + inheritedMembers: + - Voile.Rendering.RenderSystem.Start(Voile.Rendering.RendererSettings) + - Voile.Rendering.RenderSystem.Dispose + - Voile.Rendering.RenderSystem.FrameTime + - Voile.Rendering.RenderSystem.ResetTransform + - Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2,System.Numerics.Vector2,System.Single) + - Voile.Rendering.RenderSystem.transformPosition + - Voile.Rendering.RenderSystem.transformPivot + - Voile.Rendering.RenderSystem.transformRotation + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Rendering.RaylibRenderSystem.ShouldRun + commentId: P:Voile.Rendering.RaylibRenderSystem.ShouldRun + id: ShouldRun + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: ShouldRun + nameWithType: RaylibRenderSystem.ShouldRun + fullName: Voile.Rendering.RaylibRenderSystem.ShouldRun + type: Property + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ShouldRun + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Indicates if the renderer will render the next frame. + example: [] + syntax: + content: public override bool ShouldRun { get; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Overrides ReadOnly Property ShouldRun As Boolean + overridden: Voile.Rendering.RenderSystem.ShouldRun + overload: Voile.Rendering.RaylibRenderSystem.ShouldRun* +- uid: Voile.Rendering.RaylibRenderSystem.WindowSize + commentId: P:Voile.Rendering.RaylibRenderSystem.WindowSize + id: WindowSize + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: WindowSize + nameWithType: RaylibRenderSystem.WindowSize + fullName: Voile.Rendering.RaylibRenderSystem.WindowSize + type: Property + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: WindowSize + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile.Rendering + summary: The size of the render window. + example: [] + syntax: + content: public override Vector2 WindowSize { get; set; } + parameters: [] + return: + type: System.Numerics.Vector2 + content.vb: Public Overrides Property WindowSize As Vector2 + overridden: Voile.Rendering.RenderSystem.WindowSize + overload: Voile.Rendering.RaylibRenderSystem.WindowSize* +- uid: Voile.Rendering.RaylibRenderSystem.MonitorSize + commentId: P:Voile.Rendering.RaylibRenderSystem.MonitorSize + id: MonitorSize + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: MonitorSize + nameWithType: RaylibRenderSystem.MonitorSize + fullName: Voile.Rendering.RaylibRenderSystem.MonitorSize + type: Property + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: MonitorSize + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 20 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Active monitor's size. + example: [] + syntax: + content: public override Vector2 MonitorSize { get; } + parameters: [] + return: + type: System.Numerics.Vector2 + content.vb: Public Overrides ReadOnly Property MonitorSize As Vector2 + overridden: Voile.Rendering.RenderSystem.MonitorSize + overload: Voile.Rendering.RaylibRenderSystem.MonitorSize* +- uid: Voile.Rendering.RaylibRenderSystem.WindowTitle + commentId: P:Voile.Rendering.RaylibRenderSystem.WindowTitle + id: WindowTitle + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: WindowTitle + nameWithType: RaylibRenderSystem.WindowTitle + fullName: Voile.Rendering.RaylibRenderSystem.WindowTitle + type: Property + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: WindowTitle + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 22 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: public override string WindowTitle { get; set; } + parameters: [] + return: + type: System.String + content.vb: Public Overrides Property WindowTitle As String + overridden: Voile.Rendering.RenderSystem.WindowTitle + overload: Voile.Rendering.RaylibRenderSystem.WindowTitle* +- uid: Voile.Rendering.RaylibRenderSystem.TargetFps + commentId: P:Voile.Rendering.RaylibRenderSystem.TargetFps + id: TargetFps + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: TargetFps + nameWithType: RaylibRenderSystem.TargetFps + fullName: Voile.Rendering.RaylibRenderSystem.TargetFps + type: Property + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: TargetFps + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 30 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Target frames per second for rendering. + example: [] + syntax: + content: public override int TargetFps { get; set; } + parameters: [] + return: + type: System.Int32 + content.vb: Public Overrides Property TargetFps As Integer + overridden: Voile.Rendering.RenderSystem.TargetFps + overload: Voile.Rendering.RaylibRenderSystem.TargetFps* +- uid: Voile.Rendering.RaylibRenderSystem.VSync + commentId: P:Voile.Rendering.RaylibRenderSystem.VSync + id: VSync + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: VSync + nameWithType: RaylibRenderSystem.VSync + fullName: Voile.Rendering.RaylibRenderSystem.VSync + type: Property + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: VSync + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 31 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: public override bool VSync { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Overrides Property VSync As Boolean + overridden: Voile.Rendering.RenderSystem.VSync + overload: Voile.Rendering.RaylibRenderSystem.VSync* +- uid: Voile.Rendering.RaylibRenderSystem.Fullscreen + commentId: P:Voile.Rendering.RaylibRenderSystem.Fullscreen + id: Fullscreen + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: Fullscreen + nameWithType: RaylibRenderSystem.Fullscreen + fullName: Voile.Rendering.RaylibRenderSystem.Fullscreen + type: Property + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Fullscreen + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 32 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: public override bool Fullscreen { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Overrides Property Fullscreen As Boolean + overridden: Voile.Rendering.RenderSystem.Fullscreen + overload: Voile.Rendering.RaylibRenderSystem.Fullscreen* +- uid: Voile.Rendering.RaylibRenderSystem.Initialize(Voile.Rendering.RendererSettings) + commentId: M:Voile.Rendering.RaylibRenderSystem.Initialize(Voile.Rendering.RendererSettings) + id: Initialize(Voile.Rendering.RendererSettings) + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: Initialize(RendererSettings) + nameWithType: RaylibRenderSystem.Initialize(RendererSettings) + fullName: Voile.Rendering.RaylibRenderSystem.Initialize(Voile.Rendering.RendererSettings) + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Initialize + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 34 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Initializes internal resources. Should be called before other methods. + example: [] + syntax: + content: public override void Initialize(RendererSettings settings) + parameters: + - id: settings + type: Voile.Rendering.RendererSettings + description: Rendering settings. + content.vb: Public Overrides Sub Initialize(settings As RendererSettings) + overridden: Voile.Rendering.RenderSystem.Initialize(Voile.Rendering.RendererSettings) + overload: Voile.Rendering.RaylibRenderSystem.Initialize* +- uid: Voile.Rendering.RaylibRenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + commentId: M:Voile.Rendering.RaylibRenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + id: CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: CreateAndInitializeWithWindow(RendererSettings) + nameWithType: RaylibRenderSystem.CreateAndInitializeWithWindow(RendererSettings) + fullName: Voile.Rendering.RaylibRenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CreateAndInitializeWithWindow + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 53 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Creates the renderer with an OS window and initializes internal resources. + example: [] + syntax: + content: public override void CreateAndInitializeWithWindow(RendererSettings settings) + parameters: + - id: settings + type: Voile.Rendering.RendererSettings + content.vb: Public Overrides Sub CreateAndInitializeWithWindow(settings As RendererSettings) + overridden: Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + overload: Voile.Rendering.RaylibRenderSystem.CreateAndInitializeWithWindow* +- uid: Voile.Rendering.RaylibRenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + commentId: M:Voile.Rendering.RaylibRenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + id: CreateWindow(Voile.Rendering.WindowSettings) + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: CreateWindow(WindowSettings) + nameWithType: RaylibRenderSystem.CreateWindow(WindowSettings) + fullName: Voile.Rendering.RaylibRenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CreateWindow + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 59 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Creates a window. + example: [] + syntax: + content: public override void CreateWindow(WindowSettings windowSettings) + parameters: + - id: windowSettings + type: Voile.Rendering.WindowSettings + description: Window settings to use to create the window. + content.vb: Public Overrides Sub CreateWindow(windowSettings As WindowSettings) + overridden: Voile.Rendering.RenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + overload: Voile.Rendering.RaylibRenderSystem.CreateWindow* +- uid: Voile.Rendering.RaylibRenderSystem.SetWindowTitle(System.String) + commentId: M:Voile.Rendering.RaylibRenderSystem.SetWindowTitle(System.String) + id: SetWindowTitle(System.String) + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: SetWindowTitle(string) + nameWithType: RaylibRenderSystem.SetWindowTitle(string) + fullName: Voile.Rendering.RaylibRenderSystem.SetWindowTitle(string) + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetWindowTitle + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 85 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: protected override void SetWindowTitle(string title) + parameters: + - id: title + type: System.String + content.vb: Protected Overrides Sub SetWindowTitle(title As String) + overridden: Voile.Rendering.RenderSystem.SetWindowTitle(System.String) + overload: Voile.Rendering.RaylibRenderSystem.SetWindowTitle* + nameWithType.vb: RaylibRenderSystem.SetWindowTitle(String) + fullName.vb: Voile.Rendering.RaylibRenderSystem.SetWindowTitle(String) + name.vb: SetWindowTitle(String) +- uid: Voile.Rendering.RaylibRenderSystem.SetWindowVSync(System.Boolean) + commentId: M:Voile.Rendering.RaylibRenderSystem.SetWindowVSync(System.Boolean) + id: SetWindowVSync(System.Boolean) + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: SetWindowVSync(bool) + nameWithType: RaylibRenderSystem.SetWindowVSync(bool) + fullName: Voile.Rendering.RaylibRenderSystem.SetWindowVSync(bool) + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetWindowVSync + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 90 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: protected override void SetWindowVSync(bool value) + parameters: + - id: value + type: System.Boolean + content.vb: Protected Overrides Sub SetWindowVSync(value As Boolean) + overridden: Voile.Rendering.RenderSystem.SetWindowVSync(System.Boolean) + overload: Voile.Rendering.RaylibRenderSystem.SetWindowVSync* + nameWithType.vb: RaylibRenderSystem.SetWindowVSync(Boolean) + fullName.vb: Voile.Rendering.RaylibRenderSystem.SetWindowVSync(Boolean) + name.vb: SetWindowVSync(Boolean) +- uid: Voile.Rendering.RaylibRenderSystem.SetTargetFps(System.Int32) + commentId: M:Voile.Rendering.RaylibRenderSystem.SetTargetFps(System.Int32) + id: SetTargetFps(System.Int32) + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: SetTargetFps(int) + nameWithType: RaylibRenderSystem.SetTargetFps(int) + fullName: Voile.Rendering.RaylibRenderSystem.SetTargetFps(int) + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetTargetFps + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 97 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: protected override void SetTargetFps(int fps) + parameters: + - id: fps + type: System.Int32 + content.vb: Protected Overrides Sub SetTargetFps(fps As Integer) + overridden: Voile.Rendering.RenderSystem.SetTargetFps(System.Int32) + overload: Voile.Rendering.RaylibRenderSystem.SetTargetFps* + nameWithType.vb: RaylibRenderSystem.SetTargetFps(Integer) + fullName.vb: Voile.Rendering.RaylibRenderSystem.SetTargetFps(Integer) + name.vb: SetTargetFps(Integer) +- uid: Voile.Rendering.RaylibRenderSystem.WindowShouldClose + commentId: M:Voile.Rendering.RaylibRenderSystem.WindowShouldClose + id: WindowShouldClose + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: WindowShouldClose() + nameWithType: RaylibRenderSystem.WindowShouldClose() + fullName: Voile.Rendering.RaylibRenderSystem.WindowShouldClose() + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: WindowShouldClose + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 103 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: protected override bool WindowShouldClose() + return: + type: System.Boolean + content.vb: Protected Overrides Function WindowShouldClose() As Boolean + overridden: Voile.Rendering.RenderSystem.WindowShouldClose + overload: Voile.Rendering.RaylibRenderSystem.WindowShouldClose* +- uid: Voile.Rendering.RaylibRenderSystem.Shutdown + commentId: M:Voile.Rendering.RaylibRenderSystem.Shutdown + id: Shutdown + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: Shutdown() + nameWithType: RaylibRenderSystem.Shutdown() + fullName: Voile.Rendering.RaylibRenderSystem.Shutdown() + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Shutdown + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 108 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: protected override void Shutdown() + content.vb: Protected Overrides Sub Shutdown() + overridden: Voile.Rendering.RenderSystem.Shutdown + overload: Voile.Rendering.RaylibRenderSystem.Shutdown* +- uid: Voile.Rendering.RaylibRenderSystem.BeginFrame + commentId: M:Voile.Rendering.RaylibRenderSystem.BeginFrame + id: BeginFrame + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: BeginFrame() + nameWithType: RaylibRenderSystem.BeginFrame() + fullName: Voile.Rendering.RaylibRenderSystem.BeginFrame() + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: BeginFrame + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 113 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Prepares the renderer for drawing the next frame. + example: [] + syntax: + content: public override void BeginFrame() + content.vb: Public Overrides Sub BeginFrame() + overridden: Voile.Rendering.RenderSystem.BeginFrame + overload: Voile.Rendering.RaylibRenderSystem.BeginFrame* +- uid: Voile.Rendering.RaylibRenderSystem.EndFrame + commentId: M:Voile.Rendering.RaylibRenderSystem.EndFrame + id: EndFrame + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: EndFrame() + nameWithType: RaylibRenderSystem.EndFrame() + fullName: Voile.Rendering.RaylibRenderSystem.EndFrame() + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: EndFrame + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 118 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Ends rendering of the frame. + example: [] + syntax: + content: public override void EndFrame() + content.vb: Public Overrides Sub EndFrame() + overridden: Voile.Rendering.RenderSystem.EndFrame + overload: Voile.Rendering.RaylibRenderSystem.EndFrame* +- uid: Voile.Rendering.RaylibRenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + commentId: M:Voile.Rendering.RaylibRenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + id: BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: BeginCamera2d(Vector2, Vector2, float, float) + nameWithType: RaylibRenderSystem.BeginCamera2d(Vector2, Vector2, float, float) + fullName: Voile.Rendering.RaylibRenderSystem.BeginCamera2d(System.Numerics.Vector2, System.Numerics.Vector2, float, float) + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: BeginCamera2d + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 123 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: public override void BeginCamera2d(Vector2 offset, Vector2 target, float rotation, float zoom) + parameters: + - id: offset + type: System.Numerics.Vector2 + - id: target + type: System.Numerics.Vector2 + - id: rotation + type: System.Single + - id: zoom + type: System.Single + content.vb: Public Overrides Sub BeginCamera2d(offset As Vector2, target As Vector2, rotation As Single, zoom As Single) + overridden: Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + overload: Voile.Rendering.RaylibRenderSystem.BeginCamera2d* + nameWithType.vb: RaylibRenderSystem.BeginCamera2d(Vector2, Vector2, Single, Single) + fullName.vb: Voile.Rendering.RaylibRenderSystem.BeginCamera2d(System.Numerics.Vector2, System.Numerics.Vector2, Single, Single) + name.vb: BeginCamera2d(Vector2, Vector2, Single, Single) +- uid: Voile.Rendering.RaylibRenderSystem.EndCamera2d + commentId: M:Voile.Rendering.RaylibRenderSystem.EndCamera2d + id: EndCamera2d + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: EndCamera2d() + nameWithType: RaylibRenderSystem.EndCamera2d() + fullName: Voile.Rendering.RaylibRenderSystem.EndCamera2d() + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: EndCamera2d + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 129 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: public override void EndCamera2d() + content.vb: Public Overrides Sub EndCamera2d() + overridden: Voile.Rendering.RenderSystem.EndCamera2d + overload: Voile.Rendering.RaylibRenderSystem.EndCamera2d* +- uid: Voile.Rendering.RaylibRenderSystem.ClearBackground(Voile.Color) + commentId: M:Voile.Rendering.RaylibRenderSystem.ClearBackground(Voile.Color) + id: ClearBackground(Voile.Color) + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: ClearBackground(Color) + nameWithType: RaylibRenderSystem.ClearBackground(Color) + fullName: Voile.Rendering.RaylibRenderSystem.ClearBackground(Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ClearBackground + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 134 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Clears the render canvas and sets a background color. + example: [] + syntax: + content: public override void ClearBackground(Color color) + parameters: + - id: color + type: Voile.Color + description: Background color. + content.vb: Public Overrides Sub ClearBackground(color As Color) + overridden: Voile.Rendering.RenderSystem.ClearBackground(Voile.Color) + overload: Voile.Rendering.RaylibRenderSystem.ClearBackground* +- uid: Voile.Rendering.RaylibRenderSystem.GetFrameTime + commentId: M:Voile.Rendering.RaylibRenderSystem.GetFrameTime + id: GetFrameTime + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: GetFrameTime() + nameWithType: RaylibRenderSystem.GetFrameTime() + fullName: Voile.Rendering.RaylibRenderSystem.GetFrameTime() + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetFrameTime + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 139 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: protected override double GetFrameTime() + return: + type: System.Double + content.vb: Protected Overrides Function GetFrameTime() As Double + overridden: Voile.Rendering.RenderSystem.GetFrameTime + overload: Voile.Rendering.RaylibRenderSystem.GetFrameTime* +- uid: Voile.Rendering.RaylibRenderSystem.DrawCircle(System.Single,Voile.Color) + commentId: M:Voile.Rendering.RaylibRenderSystem.DrawCircle(System.Single,Voile.Color) + id: DrawCircle(System.Single,Voile.Color) + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: DrawCircle(float, Color) + nameWithType: RaylibRenderSystem.DrawCircle(float, Color) + fullName: Voile.Rendering.RaylibRenderSystem.DrawCircle(float, Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DrawCircle + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 144 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Draws a filled circle. + example: [] + syntax: + content: public override void DrawCircle(float radius, Color color) + parameters: + - id: radius + type: System.Single + description: Radius of a circle. + - id: color + type: Voile.Color + description: Fill color. + content.vb: Public Overrides Sub DrawCircle(radius As Single, color As Color) + overridden: Voile.Rendering.RenderSystem.DrawCircle(System.Single,Voile.Color) + overload: Voile.Rendering.RaylibRenderSystem.DrawCircle* + nameWithType.vb: RaylibRenderSystem.DrawCircle(Single, Color) + fullName.vb: Voile.Rendering.RaylibRenderSystem.DrawCircle(Single, Voile.Color) + name.vb: DrawCircle(Single, Color) +- uid: Voile.Rendering.RaylibRenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + commentId: M:Voile.Rendering.RaylibRenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + id: DrawTexture(Voile.Texture2d,Voile.Color) + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: DrawTexture(Texture2d, Color) + nameWithType: RaylibRenderSystem.DrawTexture(Texture2d, Color) + fullName: Voile.Rendering.RaylibRenderSystem.DrawTexture(Voile.Texture2d, Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DrawTexture + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 149 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Draws the texture. + example: [] + syntax: + content: public override void DrawTexture(Texture2d texture, Color tint) + parameters: + - id: texture + type: Voile.Texture2d + - id: tint + type: Voile.Color + description: Texture tint. + content.vb: Public Overrides Sub DrawTexture(texture As Texture2d, tint As Color) + overridden: Voile.Rendering.RenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + overload: Voile.Rendering.RaylibRenderSystem.DrawTexture* +- uid: Voile.Rendering.RaylibRenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + commentId: M:Voile.Rendering.RaylibRenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + id: DrawRectangle(System.Numerics.Vector2,Voile.Color) + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: DrawRectangle(Vector2, Color) + nameWithType: RaylibRenderSystem.DrawRectangle(Vector2, Color) + fullName: Voile.Rendering.RaylibRenderSystem.DrawRectangle(System.Numerics.Vector2, Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DrawRectangle + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 159 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Draws a filled rectangle. + example: [] + syntax: + content: public override void DrawRectangle(Vector2 size, Color color) + parameters: + - id: size + type: System.Numerics.Vector2 + description: Rectangle size. + - id: color + type: Voile.Color + description: Fill color. + content.vb: Public Overrides Sub DrawRectangle(size As Vector2, color As Color) + overridden: Voile.Rendering.RenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + overload: Voile.Rendering.RaylibRenderSystem.DrawRectangle* +- uid: Voile.Rendering.RaylibRenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + commentId: M:Voile.Rendering.RaylibRenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + id: DrawDebugText(System.String,System.Int32,Voile.Color) + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: DrawDebugText(string, int, Color) + nameWithType: RaylibRenderSystem.DrawDebugText(string, int, Color) + fullName: Voile.Rendering.RaylibRenderSystem.DrawDebugText(string, int, Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DrawDebugText + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 170 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Draws a debug text with a default font. + example: [] + syntax: + content: public override void DrawDebugText(string text, int fontSize, Color color) + parameters: + - id: text + type: System.String + description: '' + - id: fontSize + type: System.Int32 + description: '' + - id: color + type: Voile.Color + description: '' + content.vb: Public Overrides Sub DrawDebugText(text As String, fontSize As Integer, color As Color) + overridden: Voile.Rendering.RenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + overload: Voile.Rendering.RaylibRenderSystem.DrawDebugText* + nameWithType.vb: RaylibRenderSystem.DrawDebugText(String, Integer, Color) + fullName.vb: Voile.Rendering.RaylibRenderSystem.DrawDebugText(String, Integer, Voile.Color) + name.vb: DrawDebugText(String, Integer, Color) +- uid: Voile.Rendering.RaylibRenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + commentId: M:Voile.Rendering.RaylibRenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + id: DrawSdfText(System.String,System.Int32,Voile.Color) + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: DrawSdfText(string, int, Color) + nameWithType: RaylibRenderSystem.DrawSdfText(string, int, Color) + fullName: Voile.Rendering.RaylibRenderSystem.DrawSdfText(string, int, Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DrawSdfText + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 175 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Draws text using a signed distance field font atlas. + example: [] + syntax: + content: public override void DrawSdfText(string text, int fontSize, Color color) + parameters: + - id: text + type: System.String + description: Text to draw. + - id: fontSize + type: System.Int32 + description: Size of the font. + - id: color + type: Voile.Color + description: Color of the text. + content.vb: Public Overrides Sub DrawSdfText(text As String, fontSize As Integer, color As Color) + overridden: Voile.Rendering.RenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + overload: Voile.Rendering.RaylibRenderSystem.DrawSdfText* + nameWithType.vb: RaylibRenderSystem.DrawSdfText(String, Integer, Color) + fullName.vb: Voile.Rendering.RaylibRenderSystem.DrawSdfText(String, Integer, Voile.Color) + name.vb: DrawSdfText(String, Integer, Color) +- uid: Voile.Rendering.RaylibRenderSystem.SetTransform(System.Numerics.Matrix4x4) + commentId: M:Voile.Rendering.RaylibRenderSystem.SetTransform(System.Numerics.Matrix4x4) + id: SetTransform(System.Numerics.Matrix4x4) + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: SetTransform(Matrix4x4) + nameWithType: RaylibRenderSystem.SetTransform(Matrix4x4) + fullName: Voile.Rendering.RaylibRenderSystem.SetTransform(System.Numerics.Matrix4x4) + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetTransform + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 198 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Sets the transform for the next draw operation. + example: [] + syntax: + content: public override void SetTransform(Matrix4x4 transform) + parameters: + - id: transform + type: System.Numerics.Matrix4x4 + description: Transform matrix. + content.vb: Public Overrides Sub SetTransform(transform As Matrix4x4) + overridden: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Matrix4x4) + overload: Voile.Rendering.RaylibRenderSystem.SetTransform* +- uid: Voile.Rendering.RaylibRenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + commentId: M:Voile.Rendering.RaylibRenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + id: DrawText(Voile.Font,System.String,Voile.Color) + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: DrawText(Font, string, Color) + nameWithType: RaylibRenderSystem.DrawText(Font, string, Color) + fullName: Voile.Rendering.RaylibRenderSystem.DrawText(Voile.Font, string, Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DrawText + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 205 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: public override void DrawText(Font font, string text, Color color) + parameters: + - id: font + type: Voile.Font + - id: text + type: System.String + - id: color + type: Voile.Color + content.vb: Public Overrides Sub DrawText(font As Font, text As String, color As Color) + overridden: Voile.Rendering.RenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + overload: Voile.Rendering.RaylibRenderSystem.DrawText* + nameWithType.vb: RaylibRenderSystem.DrawText(Font, String, Color) + fullName.vb: Voile.Rendering.RaylibRenderSystem.DrawText(Voile.Font, String, Voile.Color) + name.vb: DrawText(Font, String, Color) +- uid: Voile.Rendering.RaylibRenderSystem.GetMonitorWidth(System.Int32) + commentId: M:Voile.Rendering.RaylibRenderSystem.GetMonitorWidth(System.Int32) + id: GetMonitorWidth(System.Int32) + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: GetMonitorWidth(int) + nameWithType: RaylibRenderSystem.GetMonitorWidth(int) + fullName: Voile.Rendering.RaylibRenderSystem.GetMonitorWidth(int) + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetMonitorWidth + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 216 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: protected override int GetMonitorWidth(int monitorId) + parameters: + - id: monitorId + type: System.Int32 + return: + type: System.Int32 + content.vb: Protected Overrides Function GetMonitorWidth(monitorId As Integer) As Integer + overridden: Voile.Rendering.RenderSystem.GetMonitorWidth(System.Int32) + overload: Voile.Rendering.RaylibRenderSystem.GetMonitorWidth* + nameWithType.vb: RaylibRenderSystem.GetMonitorWidth(Integer) + fullName.vb: Voile.Rendering.RaylibRenderSystem.GetMonitorWidth(Integer) + name.vb: GetMonitorWidth(Integer) +- uid: Voile.Rendering.RaylibRenderSystem.GetMonitorHeight(System.Int32) + commentId: M:Voile.Rendering.RaylibRenderSystem.GetMonitorHeight(System.Int32) + id: GetMonitorHeight(System.Int32) + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: GetMonitorHeight(int) + nameWithType: RaylibRenderSystem.GetMonitorHeight(int) + fullName: Voile.Rendering.RaylibRenderSystem.GetMonitorHeight(int) + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetMonitorHeight + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 221 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: protected override int GetMonitorHeight(int monitorId) + parameters: + - id: monitorId + type: System.Int32 + return: + type: System.Int32 + content.vb: Protected Overrides Function GetMonitorHeight(monitorId As Integer) As Integer + overridden: Voile.Rendering.RenderSystem.GetMonitorHeight(System.Int32) + overload: Voile.Rendering.RaylibRenderSystem.GetMonitorHeight* + nameWithType.vb: RaylibRenderSystem.GetMonitorHeight(Integer) + fullName.vb: Voile.Rendering.RaylibRenderSystem.GetMonitorHeight(Integer) + name.vb: GetMonitorHeight(Integer) +- uid: Voile.Rendering.RaylibRenderSystem.GetCurrentMonitor + commentId: M:Voile.Rendering.RaylibRenderSystem.GetCurrentMonitor + id: GetCurrentMonitor + parent: Voile.Rendering.RaylibRenderSystem + langs: + - csharp + - vb + name: GetCurrentMonitor() + nameWithType: RaylibRenderSystem.GetCurrentMonitor() + fullName: Voile.Rendering.RaylibRenderSystem.GetCurrentMonitor() + type: Method + source: + remote: + path: Voile/Source/Rendering/RaylibRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetCurrentMonitor + path: Source/Rendering/RaylibRenderSystem.cs + startLine: 226 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: protected override int GetCurrentMonitor() + return: + type: System.Int32 + content.vb: Protected Overrides Function GetCurrentMonitor() As Integer + overridden: Voile.Rendering.RenderSystem.GetCurrentMonitor + overload: Voile.Rendering.RaylibRenderSystem.GetCurrentMonitor* +references: +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.IStartableSystem{Voile.Rendering.RendererSettings} + commentId: T:Voile.IStartableSystem{Voile.Rendering.RendererSettings} + parent: Voile + definition: Voile.IStartableSystem`1 + href: Voile.IStartableSystem-1.html + name: IStartableSystem + nameWithType: IStartableSystem + fullName: Voile.IStartableSystem + nameWithType.vb: IStartableSystem(Of RendererSettings) + fullName.vb: Voile.IStartableSystem(Of Voile.Rendering.RendererSettings) + name.vb: IStartableSystem(Of RendererSettings) + spec.csharp: + - uid: Voile.IStartableSystem`1 + name: IStartableSystem + href: Voile.IStartableSystem-1.html + - name: < + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: '>' + spec.vb: + - uid: Voile.IStartableSystem`1 + name: IStartableSystem + href: Voile.IStartableSystem-1.html + - name: ( + - name: Of + - name: " " + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: ) +- uid: System.IDisposable + commentId: T:System.IDisposable + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable + name: IDisposable + nameWithType: IDisposable + fullName: System.IDisposable +- uid: Voile.Rendering.RenderSystem.Start(Voile.Rendering.RendererSettings) + commentId: M:Voile.Rendering.RenderSystem.Start(Voile.Rendering.RendererSettings) + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Start_Voile_Rendering_RendererSettings_ + name: Start(RendererSettings) + nameWithType: RenderSystem.Start(RendererSettings) + fullName: Voile.Rendering.RenderSystem.Start(Voile.Rendering.RendererSettings) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.Start(Voile.Rendering.RendererSettings) + name: Start + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Start_Voile_Rendering_RendererSettings_ + - name: ( + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.Start(Voile.Rendering.RendererSettings) + name: Start + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Start_Voile_Rendering_RendererSettings_ + - name: ( + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: ) +- uid: Voile.Rendering.RenderSystem.Dispose + commentId: M:Voile.Rendering.RenderSystem.Dispose + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Dispose + name: Dispose() + nameWithType: RenderSystem.Dispose() + fullName: Voile.Rendering.RenderSystem.Dispose() + spec.csharp: + - uid: Voile.Rendering.RenderSystem.Dispose + name: Dispose + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Dispose + - name: ( + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.Dispose + name: Dispose + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Dispose + - name: ( + - name: ) +- uid: Voile.Rendering.RenderSystem.FrameTime + commentId: P:Voile.Rendering.RenderSystem.FrameTime + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_FrameTime + name: FrameTime + nameWithType: RenderSystem.FrameTime + fullName: Voile.Rendering.RenderSystem.FrameTime +- uid: Voile.Rendering.RenderSystem.ResetTransform + commentId: M:Voile.Rendering.RenderSystem.ResetTransform + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_ResetTransform + name: ResetTransform() + nameWithType: RenderSystem.ResetTransform() + fullName: Voile.Rendering.RenderSystem.ResetTransform() + spec.csharp: + - uid: Voile.Rendering.RenderSystem.ResetTransform + name: ResetTransform + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_ResetTransform + - name: ( + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.ResetTransform + name: ResetTransform + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_ResetTransform + - name: ( + - name: ) +- uid: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2,System.Numerics.Vector2,System.Single) + commentId: M:Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2,System.Numerics.Vector2,System.Single) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTransform_System_Numerics_Vector2_System_Numerics_Vector2_System_Single_ + name: SetTransform(Vector2, Vector2, float) + nameWithType: RenderSystem.SetTransform(Vector2, Vector2, float) + fullName: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2, System.Numerics.Vector2, float) + nameWithType.vb: RenderSystem.SetTransform(Vector2, Vector2, Single) + fullName.vb: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2, System.Numerics.Vector2, Single) + name.vb: SetTransform(Vector2, Vector2, Single) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2,System.Numerics.Vector2,System.Single) + name: SetTransform + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTransform_System_Numerics_Vector2_System_Numerics_Vector2_System_Single_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2,System.Numerics.Vector2,System.Single) + name: SetTransform + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTransform_System_Numerics_Vector2_System_Numerics_Vector2_System_Single_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: Voile.Rendering.RenderSystem.transformPosition + commentId: F:Voile.Rendering.RenderSystem.transformPosition + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_transformPosition + name: transformPosition + nameWithType: RenderSystem.transformPosition + fullName: Voile.Rendering.RenderSystem.transformPosition +- uid: Voile.Rendering.RenderSystem.transformPivot + commentId: F:Voile.Rendering.RenderSystem.transformPivot + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_transformPivot + name: transformPivot + nameWithType: RenderSystem.transformPivot + fullName: Voile.Rendering.RenderSystem.transformPivot +- uid: Voile.Rendering.RenderSystem.transformRotation + commentId: F:Voile.Rendering.RenderSystem.transformRotation + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_transformRotation + name: transformRotation + nameWithType: RenderSystem.transformRotation + fullName: Voile.Rendering.RenderSystem.transformRotation +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.IStartableSystem`1 + commentId: T:Voile.IStartableSystem`1 + href: Voile.IStartableSystem-1.html + name: IStartableSystem + nameWithType: IStartableSystem + fullName: Voile.IStartableSystem + nameWithType.vb: IStartableSystem(Of T) + fullName.vb: Voile.IStartableSystem(Of T) + name.vb: IStartableSystem(Of T) + spec.csharp: + - uid: Voile.IStartableSystem`1 + name: IStartableSystem + href: Voile.IStartableSystem-1.html + - name: < + - name: T + - name: '>' + spec.vb: + - uid: Voile.IStartableSystem`1 + name: IStartableSystem + href: Voile.IStartableSystem-1.html + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.Rendering.RenderSystem.ShouldRun + commentId: P:Voile.Rendering.RenderSystem.ShouldRun + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_ShouldRun + name: ShouldRun + nameWithType: RenderSystem.ShouldRun + fullName: Voile.Rendering.RenderSystem.ShouldRun +- uid: Voile.Rendering.RaylibRenderSystem.ShouldRun* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.ShouldRun + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_ShouldRun + name: ShouldRun + nameWithType: RaylibRenderSystem.ShouldRun + fullName: Voile.Rendering.RaylibRenderSystem.ShouldRun +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: Voile.Rendering.RenderSystem.WindowSize + commentId: P:Voile.Rendering.RenderSystem.WindowSize + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_WindowSize + name: WindowSize + nameWithType: RenderSystem.WindowSize + fullName: Voile.Rendering.RenderSystem.WindowSize +- uid: Voile.Rendering.RaylibRenderSystem.WindowSize* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.WindowSize + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_WindowSize + name: WindowSize + nameWithType: RaylibRenderSystem.WindowSize + fullName: Voile.Rendering.RaylibRenderSystem.WindowSize +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: Voile.Rendering.RenderSystem.MonitorSize + commentId: P:Voile.Rendering.RenderSystem.MonitorSize + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_MonitorSize + name: MonitorSize + nameWithType: RenderSystem.MonitorSize + fullName: Voile.Rendering.RenderSystem.MonitorSize +- uid: Voile.Rendering.RaylibRenderSystem.MonitorSize* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.MonitorSize + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_MonitorSize + name: MonitorSize + nameWithType: RaylibRenderSystem.MonitorSize + fullName: Voile.Rendering.RaylibRenderSystem.MonitorSize +- uid: Voile.Rendering.RenderSystem.WindowTitle + commentId: P:Voile.Rendering.RenderSystem.WindowTitle + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_WindowTitle + name: WindowTitle + nameWithType: RenderSystem.WindowTitle + fullName: Voile.Rendering.RenderSystem.WindowTitle +- uid: Voile.Rendering.RaylibRenderSystem.WindowTitle* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.WindowTitle + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_WindowTitle + name: WindowTitle + nameWithType: RaylibRenderSystem.WindowTitle + fullName: Voile.Rendering.RaylibRenderSystem.WindowTitle +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.Rendering.RenderSystem.TargetFps + commentId: P:Voile.Rendering.RenderSystem.TargetFps + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_TargetFps + name: TargetFps + nameWithType: RenderSystem.TargetFps + fullName: Voile.Rendering.RenderSystem.TargetFps +- uid: Voile.Rendering.RaylibRenderSystem.TargetFps* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.TargetFps + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_TargetFps + name: TargetFps + nameWithType: RaylibRenderSystem.TargetFps + fullName: Voile.Rendering.RaylibRenderSystem.TargetFps +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: Voile.Rendering.RenderSystem.VSync + commentId: P:Voile.Rendering.RenderSystem.VSync + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_VSync + name: VSync + nameWithType: RenderSystem.VSync + fullName: Voile.Rendering.RenderSystem.VSync +- uid: Voile.Rendering.RaylibRenderSystem.VSync* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.VSync + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_VSync + name: VSync + nameWithType: RaylibRenderSystem.VSync + fullName: Voile.Rendering.RaylibRenderSystem.VSync +- uid: Voile.Rendering.RenderSystem.Fullscreen + commentId: P:Voile.Rendering.RenderSystem.Fullscreen + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Fullscreen + name: Fullscreen + nameWithType: RenderSystem.Fullscreen + fullName: Voile.Rendering.RenderSystem.Fullscreen +- uid: Voile.Rendering.RaylibRenderSystem.Fullscreen* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.Fullscreen + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_Fullscreen + name: Fullscreen + nameWithType: RaylibRenderSystem.Fullscreen + fullName: Voile.Rendering.RaylibRenderSystem.Fullscreen +- uid: Voile.Rendering.RenderSystem.Initialize(Voile.Rendering.RendererSettings) + commentId: M:Voile.Rendering.RenderSystem.Initialize(Voile.Rendering.RendererSettings) + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Initialize_Voile_Rendering_RendererSettings_ + name: Initialize(RendererSettings) + nameWithType: RenderSystem.Initialize(RendererSettings) + fullName: Voile.Rendering.RenderSystem.Initialize(Voile.Rendering.RendererSettings) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.Initialize(Voile.Rendering.RendererSettings) + name: Initialize + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Initialize_Voile_Rendering_RendererSettings_ + - name: ( + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.Initialize(Voile.Rendering.RendererSettings) + name: Initialize + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Initialize_Voile_Rendering_RendererSettings_ + - name: ( + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.Initialize* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.Initialize + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_Initialize_Voile_Rendering_RendererSettings_ + name: Initialize + nameWithType: RaylibRenderSystem.Initialize + fullName: Voile.Rendering.RaylibRenderSystem.Initialize +- uid: Voile.Rendering.RendererSettings + commentId: T:Voile.Rendering.RendererSettings + parent: Voile.Rendering + href: Voile.Rendering.RendererSettings.html + name: RendererSettings + nameWithType: RendererSettings + fullName: Voile.Rendering.RendererSettings +- uid: Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + commentId: M:Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_CreateAndInitializeWithWindow_Voile_Rendering_RendererSettings_ + name: CreateAndInitializeWithWindow(RendererSettings) + nameWithType: RenderSystem.CreateAndInitializeWithWindow(RendererSettings) + fullName: Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + name: CreateAndInitializeWithWindow + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_CreateAndInitializeWithWindow_Voile_Rendering_RendererSettings_ + - name: ( + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + name: CreateAndInitializeWithWindow + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_CreateAndInitializeWithWindow_Voile_Rendering_RendererSettings_ + - name: ( + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.CreateAndInitializeWithWindow* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.CreateAndInitializeWithWindow + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_CreateAndInitializeWithWindow_Voile_Rendering_RendererSettings_ + name: CreateAndInitializeWithWindow + nameWithType: RaylibRenderSystem.CreateAndInitializeWithWindow + fullName: Voile.Rendering.RaylibRenderSystem.CreateAndInitializeWithWindow +- uid: Voile.Rendering.RenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + commentId: M:Voile.Rendering.RenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_CreateWindow_Voile_Rendering_WindowSettings_ + name: CreateWindow(WindowSettings) + nameWithType: RenderSystem.CreateWindow(WindowSettings) + fullName: Voile.Rendering.RenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + name: CreateWindow + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_CreateWindow_Voile_Rendering_WindowSettings_ + - name: ( + - uid: Voile.Rendering.WindowSettings + name: WindowSettings + href: Voile.Rendering.WindowSettings.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + name: CreateWindow + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_CreateWindow_Voile_Rendering_WindowSettings_ + - name: ( + - uid: Voile.Rendering.WindowSettings + name: WindowSettings + href: Voile.Rendering.WindowSettings.html + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.CreateWindow* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.CreateWindow + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_CreateWindow_Voile_Rendering_WindowSettings_ + name: CreateWindow + nameWithType: RaylibRenderSystem.CreateWindow + fullName: Voile.Rendering.RaylibRenderSystem.CreateWindow +- uid: Voile.Rendering.WindowSettings + commentId: T:Voile.Rendering.WindowSettings + parent: Voile.Rendering + href: Voile.Rendering.WindowSettings.html + name: WindowSettings + nameWithType: WindowSettings + fullName: Voile.Rendering.WindowSettings +- uid: Voile.Rendering.RenderSystem.SetWindowTitle(System.String) + commentId: M:Voile.Rendering.RenderSystem.SetWindowTitle(System.String) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetWindowTitle_System_String_ + name: SetWindowTitle(string) + nameWithType: RenderSystem.SetWindowTitle(string) + fullName: Voile.Rendering.RenderSystem.SetWindowTitle(string) + nameWithType.vb: RenderSystem.SetWindowTitle(String) + fullName.vb: Voile.Rendering.RenderSystem.SetWindowTitle(String) + name.vb: SetWindowTitle(String) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.SetWindowTitle(System.String) + name: SetWindowTitle + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetWindowTitle_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.SetWindowTitle(System.String) + name: SetWindowTitle + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetWindowTitle_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.SetWindowTitle* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.SetWindowTitle + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_SetWindowTitle_System_String_ + name: SetWindowTitle + nameWithType: RaylibRenderSystem.SetWindowTitle + fullName: Voile.Rendering.RaylibRenderSystem.SetWindowTitle +- uid: Voile.Rendering.RenderSystem.SetWindowVSync(System.Boolean) + commentId: M:Voile.Rendering.RenderSystem.SetWindowVSync(System.Boolean) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetWindowVSync_System_Boolean_ + name: SetWindowVSync(bool) + nameWithType: RenderSystem.SetWindowVSync(bool) + fullName: Voile.Rendering.RenderSystem.SetWindowVSync(bool) + nameWithType.vb: RenderSystem.SetWindowVSync(Boolean) + fullName.vb: Voile.Rendering.RenderSystem.SetWindowVSync(Boolean) + name.vb: SetWindowVSync(Boolean) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.SetWindowVSync(System.Boolean) + name: SetWindowVSync + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetWindowVSync_System_Boolean_ + - name: ( + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.SetWindowVSync(System.Boolean) + name: SetWindowVSync + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetWindowVSync_System_Boolean_ + - name: ( + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.SetWindowVSync* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.SetWindowVSync + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_SetWindowVSync_System_Boolean_ + name: SetWindowVSync + nameWithType: RaylibRenderSystem.SetWindowVSync + fullName: Voile.Rendering.RaylibRenderSystem.SetWindowVSync +- uid: Voile.Rendering.RenderSystem.SetTargetFps(System.Int32) + commentId: M:Voile.Rendering.RenderSystem.SetTargetFps(System.Int32) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTargetFps_System_Int32_ + name: SetTargetFps(int) + nameWithType: RenderSystem.SetTargetFps(int) + fullName: Voile.Rendering.RenderSystem.SetTargetFps(int) + nameWithType.vb: RenderSystem.SetTargetFps(Integer) + fullName.vb: Voile.Rendering.RenderSystem.SetTargetFps(Integer) + name.vb: SetTargetFps(Integer) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.SetTargetFps(System.Int32) + name: SetTargetFps + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTargetFps_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.SetTargetFps(System.Int32) + name: SetTargetFps + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTargetFps_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.SetTargetFps* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.SetTargetFps + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_SetTargetFps_System_Int32_ + name: SetTargetFps + nameWithType: RaylibRenderSystem.SetTargetFps + fullName: Voile.Rendering.RaylibRenderSystem.SetTargetFps +- uid: Voile.Rendering.RenderSystem.WindowShouldClose + commentId: M:Voile.Rendering.RenderSystem.WindowShouldClose + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_WindowShouldClose + name: WindowShouldClose() + nameWithType: RenderSystem.WindowShouldClose() + fullName: Voile.Rendering.RenderSystem.WindowShouldClose() + spec.csharp: + - uid: Voile.Rendering.RenderSystem.WindowShouldClose + name: WindowShouldClose + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_WindowShouldClose + - name: ( + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.WindowShouldClose + name: WindowShouldClose + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_WindowShouldClose + - name: ( + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.WindowShouldClose* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.WindowShouldClose + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_WindowShouldClose + name: WindowShouldClose + nameWithType: RaylibRenderSystem.WindowShouldClose + fullName: Voile.Rendering.RaylibRenderSystem.WindowShouldClose +- uid: Voile.Rendering.RenderSystem.Shutdown + commentId: M:Voile.Rendering.RenderSystem.Shutdown + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Shutdown + name: Shutdown() + nameWithType: RenderSystem.Shutdown() + fullName: Voile.Rendering.RenderSystem.Shutdown() + spec.csharp: + - uid: Voile.Rendering.RenderSystem.Shutdown + name: Shutdown + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Shutdown + - name: ( + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.Shutdown + name: Shutdown + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Shutdown + - name: ( + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.Shutdown* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.Shutdown + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_Shutdown + name: Shutdown + nameWithType: RaylibRenderSystem.Shutdown + fullName: Voile.Rendering.RaylibRenderSystem.Shutdown +- uid: Voile.Rendering.RenderSystem.BeginFrame + commentId: M:Voile.Rendering.RenderSystem.BeginFrame + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_BeginFrame + name: BeginFrame() + nameWithType: RenderSystem.BeginFrame() + fullName: Voile.Rendering.RenderSystem.BeginFrame() + spec.csharp: + - uid: Voile.Rendering.RenderSystem.BeginFrame + name: BeginFrame + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_BeginFrame + - name: ( + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.BeginFrame + name: BeginFrame + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_BeginFrame + - name: ( + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.BeginFrame* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.BeginFrame + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_BeginFrame + name: BeginFrame + nameWithType: RaylibRenderSystem.BeginFrame + fullName: Voile.Rendering.RaylibRenderSystem.BeginFrame +- uid: Voile.Rendering.RenderSystem.EndFrame + commentId: M:Voile.Rendering.RenderSystem.EndFrame + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_EndFrame + name: EndFrame() + nameWithType: RenderSystem.EndFrame() + fullName: Voile.Rendering.RenderSystem.EndFrame() + spec.csharp: + - uid: Voile.Rendering.RenderSystem.EndFrame + name: EndFrame + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_EndFrame + - name: ( + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.EndFrame + name: EndFrame + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_EndFrame + - name: ( + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.EndFrame* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.EndFrame + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_EndFrame + name: EndFrame + nameWithType: RaylibRenderSystem.EndFrame + fullName: Voile.Rendering.RaylibRenderSystem.EndFrame +- uid: Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + commentId: M:Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_BeginCamera2d_System_Numerics_Vector2_System_Numerics_Vector2_System_Single_System_Single_ + name: BeginCamera2d(Vector2, Vector2, float, float) + nameWithType: RenderSystem.BeginCamera2d(Vector2, Vector2, float, float) + fullName: Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2, System.Numerics.Vector2, float, float) + nameWithType.vb: RenderSystem.BeginCamera2d(Vector2, Vector2, Single, Single) + fullName.vb: Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2, System.Numerics.Vector2, Single, Single) + name.vb: BeginCamera2d(Vector2, Vector2, Single, Single) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + name: BeginCamera2d + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_BeginCamera2d_System_Numerics_Vector2_System_Numerics_Vector2_System_Single_System_Single_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + name: BeginCamera2d + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_BeginCamera2d_System_Numerics_Vector2_System_Numerics_Vector2_System_Single_System_Single_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.BeginCamera2d* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.BeginCamera2d + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_BeginCamera2d_System_Numerics_Vector2_System_Numerics_Vector2_System_Single_System_Single_ + name: BeginCamera2d + nameWithType: RaylibRenderSystem.BeginCamera2d + fullName: Voile.Rendering.RaylibRenderSystem.BeginCamera2d +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: Voile.Rendering.RenderSystem.EndCamera2d + commentId: M:Voile.Rendering.RenderSystem.EndCamera2d + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_EndCamera2d + name: EndCamera2d() + nameWithType: RenderSystem.EndCamera2d() + fullName: Voile.Rendering.RenderSystem.EndCamera2d() + spec.csharp: + - uid: Voile.Rendering.RenderSystem.EndCamera2d + name: EndCamera2d + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_EndCamera2d + - name: ( + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.EndCamera2d + name: EndCamera2d + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_EndCamera2d + - name: ( + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.EndCamera2d* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.EndCamera2d + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_EndCamera2d + name: EndCamera2d + nameWithType: RaylibRenderSystem.EndCamera2d + fullName: Voile.Rendering.RaylibRenderSystem.EndCamera2d +- uid: Voile.Rendering.RenderSystem.ClearBackground(Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.ClearBackground(Voile.Color) + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_ClearBackground_Voile_Color_ + name: ClearBackground(Color) + nameWithType: RenderSystem.ClearBackground(Color) + fullName: Voile.Rendering.RenderSystem.ClearBackground(Voile.Color) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.ClearBackground(Voile.Color) + name: ClearBackground + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_ClearBackground_Voile_Color_ + - name: ( + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.ClearBackground(Voile.Color) + name: ClearBackground + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_ClearBackground_Voile_Color_ + - name: ( + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.ClearBackground* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.ClearBackground + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_ClearBackground_Voile_Color_ + name: ClearBackground + nameWithType: RaylibRenderSystem.ClearBackground + fullName: Voile.Rendering.RaylibRenderSystem.ClearBackground +- uid: Voile.Color + commentId: T:Voile.Color + parent: Voile + href: Voile.Color.html + name: Color + nameWithType: Color + fullName: Voile.Color +- uid: Voile.Rendering.RenderSystem.GetFrameTime + commentId: M:Voile.Rendering.RenderSystem.GetFrameTime + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetFrameTime + name: GetFrameTime() + nameWithType: RenderSystem.GetFrameTime() + fullName: Voile.Rendering.RenderSystem.GetFrameTime() + spec.csharp: + - uid: Voile.Rendering.RenderSystem.GetFrameTime + name: GetFrameTime + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetFrameTime + - name: ( + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.GetFrameTime + name: GetFrameTime + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetFrameTime + - name: ( + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.GetFrameTime* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.GetFrameTime + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_GetFrameTime + name: GetFrameTime + nameWithType: RaylibRenderSystem.GetFrameTime + fullName: Voile.Rendering.RaylibRenderSystem.GetFrameTime +- uid: System.Double + commentId: T:System.Double + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + name: double + nameWithType: double + fullName: double + nameWithType.vb: Double + fullName.vb: Double + name.vb: Double +- uid: Voile.Rendering.RenderSystem.DrawCircle(System.Single,Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.DrawCircle(System.Single,Voile.Color) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawCircle_System_Single_Voile_Color_ + name: DrawCircle(float, Color) + nameWithType: RenderSystem.DrawCircle(float, Color) + fullName: Voile.Rendering.RenderSystem.DrawCircle(float, Voile.Color) + nameWithType.vb: RenderSystem.DrawCircle(Single, Color) + fullName.vb: Voile.Rendering.RenderSystem.DrawCircle(Single, Voile.Color) + name.vb: DrawCircle(Single, Color) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.DrawCircle(System.Single,Voile.Color) + name: DrawCircle + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawCircle_System_Single_Voile_Color_ + - name: ( + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.DrawCircle(System.Single,Voile.Color) + name: DrawCircle + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawCircle_System_Single_Voile_Color_ + - name: ( + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.DrawCircle* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.DrawCircle + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_DrawCircle_System_Single_Voile_Color_ + name: DrawCircle + nameWithType: RaylibRenderSystem.DrawCircle + fullName: Voile.Rendering.RaylibRenderSystem.DrawCircle +- uid: Voile.Rendering.RenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawTexture_Voile_Texture2d_Voile_Color_ + name: DrawTexture(Texture2d, Color) + nameWithType: RenderSystem.DrawTexture(Texture2d, Color) + fullName: Voile.Rendering.RenderSystem.DrawTexture(Voile.Texture2d, Voile.Color) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + name: DrawTexture + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawTexture_Voile_Texture2d_Voile_Color_ + - name: ( + - uid: Voile.Texture2d + name: Texture2d + href: Voile.Texture2d.html + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + name: DrawTexture + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawTexture_Voile_Texture2d_Voile_Color_ + - name: ( + - uid: Voile.Texture2d + name: Texture2d + href: Voile.Texture2d.html + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.DrawTexture* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.DrawTexture + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_DrawTexture_Voile_Texture2d_Voile_Color_ + name: DrawTexture + nameWithType: RaylibRenderSystem.DrawTexture + fullName: Voile.Rendering.RaylibRenderSystem.DrawTexture +- uid: Voile.Texture2d + commentId: T:Voile.Texture2d + parent: Voile + href: Voile.Texture2d.html + name: Texture2d + nameWithType: Texture2d + fullName: Voile.Texture2d +- uid: Voile.Rendering.RenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawRectangle_System_Numerics_Vector2_Voile_Color_ + name: DrawRectangle(Vector2, Color) + nameWithType: RenderSystem.DrawRectangle(Vector2, Color) + fullName: Voile.Rendering.RenderSystem.DrawRectangle(System.Numerics.Vector2, Voile.Color) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + name: DrawRectangle + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawRectangle_System_Numerics_Vector2_Voile_Color_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + name: DrawRectangle + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawRectangle_System_Numerics_Vector2_Voile_Color_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.DrawRectangle* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.DrawRectangle + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_DrawRectangle_System_Numerics_Vector2_Voile_Color_ + name: DrawRectangle + nameWithType: RaylibRenderSystem.DrawRectangle + fullName: Voile.Rendering.RaylibRenderSystem.DrawRectangle +- uid: Voile.Rendering.RenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawDebugText_System_String_System_Int32_Voile_Color_ + name: DrawDebugText(string, int, Color) + nameWithType: RenderSystem.DrawDebugText(string, int, Color) + fullName: Voile.Rendering.RenderSystem.DrawDebugText(string, int, Voile.Color) + nameWithType.vb: RenderSystem.DrawDebugText(String, Integer, Color) + fullName.vb: Voile.Rendering.RenderSystem.DrawDebugText(String, Integer, Voile.Color) + name.vb: DrawDebugText(String, Integer, Color) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + name: DrawDebugText + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawDebugText_System_String_System_Int32_Voile_Color_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + name: DrawDebugText + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawDebugText_System_String_System_Int32_Voile_Color_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.DrawDebugText* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.DrawDebugText + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_DrawDebugText_System_String_System_Int32_Voile_Color_ + name: DrawDebugText + nameWithType: RaylibRenderSystem.DrawDebugText + fullName: Voile.Rendering.RaylibRenderSystem.DrawDebugText +- uid: Voile.Rendering.RenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawSdfText_System_String_System_Int32_Voile_Color_ + name: DrawSdfText(string, int, Color) + nameWithType: RenderSystem.DrawSdfText(string, int, Color) + fullName: Voile.Rendering.RenderSystem.DrawSdfText(string, int, Voile.Color) + nameWithType.vb: RenderSystem.DrawSdfText(String, Integer, Color) + fullName.vb: Voile.Rendering.RenderSystem.DrawSdfText(String, Integer, Voile.Color) + name.vb: DrawSdfText(String, Integer, Color) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + name: DrawSdfText + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawSdfText_System_String_System_Int32_Voile_Color_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + name: DrawSdfText + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawSdfText_System_String_System_Int32_Voile_Color_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.DrawSdfText* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.DrawSdfText + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_DrawSdfText_System_String_System_Int32_Voile_Color_ + name: DrawSdfText + nameWithType: RaylibRenderSystem.DrawSdfText + fullName: Voile.Rendering.RaylibRenderSystem.DrawSdfText +- uid: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Matrix4x4) + commentId: M:Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Matrix4x4) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTransform_System_Numerics_Matrix4x4_ + name: SetTransform(Matrix4x4) + nameWithType: RenderSystem.SetTransform(Matrix4x4) + fullName: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Matrix4x4) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Matrix4x4) + name: SetTransform + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTransform_System_Numerics_Matrix4x4_ + - name: ( + - uid: System.Numerics.Matrix4x4 + name: Matrix4x4 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.matrix4x4 + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Matrix4x4) + name: SetTransform + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTransform_System_Numerics_Matrix4x4_ + - name: ( + - uid: System.Numerics.Matrix4x4 + name: Matrix4x4 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.matrix4x4 + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.SetTransform* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.SetTransform + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_SetTransform_System_Numerics_Matrix4x4_ + name: SetTransform + nameWithType: RaylibRenderSystem.SetTransform + fullName: Voile.Rendering.RaylibRenderSystem.SetTransform +- uid: System.Numerics.Matrix4x4 + commentId: T:System.Numerics.Matrix4x4 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.matrix4x4 + name: Matrix4x4 + nameWithType: Matrix4x4 + fullName: System.Numerics.Matrix4x4 +- uid: Voile.Rendering.RenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawText_Voile_Font_System_String_Voile_Color_ + name: DrawText(Font, string, Color) + nameWithType: RenderSystem.DrawText(Font, string, Color) + fullName: Voile.Rendering.RenderSystem.DrawText(Voile.Font, string, Voile.Color) + nameWithType.vb: RenderSystem.DrawText(Font, String, Color) + fullName.vb: Voile.Rendering.RenderSystem.DrawText(Voile.Font, String, Voile.Color) + name.vb: DrawText(Font, String, Color) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + name: DrawText + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawText_Voile_Font_System_String_Voile_Color_ + - name: ( + - uid: Voile.Font + name: Font + href: Voile.Font.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + name: DrawText + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawText_Voile_Font_System_String_Voile_Color_ + - name: ( + - uid: Voile.Font + name: Font + href: Voile.Font.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.DrawText* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.DrawText + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_DrawText_Voile_Font_System_String_Voile_Color_ + name: DrawText + nameWithType: RaylibRenderSystem.DrawText + fullName: Voile.Rendering.RaylibRenderSystem.DrawText +- uid: Voile.Font + commentId: T:Voile.Font + parent: Voile + href: Voile.Font.html + name: Font + nameWithType: Font + fullName: Voile.Font +- uid: Voile.Rendering.RenderSystem.GetMonitorWidth(System.Int32) + commentId: M:Voile.Rendering.RenderSystem.GetMonitorWidth(System.Int32) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetMonitorWidth_System_Int32_ + name: GetMonitorWidth(int) + nameWithType: RenderSystem.GetMonitorWidth(int) + fullName: Voile.Rendering.RenderSystem.GetMonitorWidth(int) + nameWithType.vb: RenderSystem.GetMonitorWidth(Integer) + fullName.vb: Voile.Rendering.RenderSystem.GetMonitorWidth(Integer) + name.vb: GetMonitorWidth(Integer) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.GetMonitorWidth(System.Int32) + name: GetMonitorWidth + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetMonitorWidth_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.GetMonitorWidth(System.Int32) + name: GetMonitorWidth + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetMonitorWidth_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.GetMonitorWidth* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.GetMonitorWidth + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_GetMonitorWidth_System_Int32_ + name: GetMonitorWidth + nameWithType: RaylibRenderSystem.GetMonitorWidth + fullName: Voile.Rendering.RaylibRenderSystem.GetMonitorWidth +- uid: Voile.Rendering.RenderSystem.GetMonitorHeight(System.Int32) + commentId: M:Voile.Rendering.RenderSystem.GetMonitorHeight(System.Int32) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetMonitorHeight_System_Int32_ + name: GetMonitorHeight(int) + nameWithType: RenderSystem.GetMonitorHeight(int) + fullName: Voile.Rendering.RenderSystem.GetMonitorHeight(int) + nameWithType.vb: RenderSystem.GetMonitorHeight(Integer) + fullName.vb: Voile.Rendering.RenderSystem.GetMonitorHeight(Integer) + name.vb: GetMonitorHeight(Integer) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.GetMonitorHeight(System.Int32) + name: GetMonitorHeight + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetMonitorHeight_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.GetMonitorHeight(System.Int32) + name: GetMonitorHeight + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetMonitorHeight_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.GetMonitorHeight* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.GetMonitorHeight + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_GetMonitorHeight_System_Int32_ + name: GetMonitorHeight + nameWithType: RaylibRenderSystem.GetMonitorHeight + fullName: Voile.Rendering.RaylibRenderSystem.GetMonitorHeight +- uid: Voile.Rendering.RenderSystem.GetCurrentMonitor + commentId: M:Voile.Rendering.RenderSystem.GetCurrentMonitor + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetCurrentMonitor + name: GetCurrentMonitor() + nameWithType: RenderSystem.GetCurrentMonitor() + fullName: Voile.Rendering.RenderSystem.GetCurrentMonitor() + spec.csharp: + - uid: Voile.Rendering.RenderSystem.GetCurrentMonitor + name: GetCurrentMonitor + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetCurrentMonitor + - name: ( + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.GetCurrentMonitor + name: GetCurrentMonitor + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetCurrentMonitor + - name: ( + - name: ) +- uid: Voile.Rendering.RaylibRenderSystem.GetCurrentMonitor* + commentId: Overload:Voile.Rendering.RaylibRenderSystem.GetCurrentMonitor + href: Voile.Rendering.RaylibRenderSystem.html#Voile_Rendering_RaylibRenderSystem_GetCurrentMonitor + name: GetCurrentMonitor + nameWithType: RaylibRenderSystem.GetCurrentMonitor + fullName: Voile.Rendering.RaylibRenderSystem.GetCurrentMonitor diff --git a/Voile/api/Voile.Rendering.RenderSystem.yml b/Voile/api/Voile.Rendering.RenderSystem.yml new file mode 100644 index 0000000..8f38556 --- /dev/null +++ b/Voile/api/Voile.Rendering.RenderSystem.yml @@ -0,0 +1,2059 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + id: RenderSystem + parent: Voile.Rendering + children: + - Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + - Voile.Rendering.RenderSystem.BeginFrame + - Voile.Rendering.RenderSystem.ClearBackground(Voile.Color) + - Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + - Voile.Rendering.RenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + - Voile.Rendering.RenderSystem.Dispose + - Voile.Rendering.RenderSystem.DrawCircle(System.Single,Voile.Color) + - Voile.Rendering.RenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + - Voile.Rendering.RenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + - Voile.Rendering.RenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + - Voile.Rendering.RenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + - Voile.Rendering.RenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + - Voile.Rendering.RenderSystem.EndCamera2d + - Voile.Rendering.RenderSystem.EndFrame + - Voile.Rendering.RenderSystem.FrameTime + - Voile.Rendering.RenderSystem.Fullscreen + - Voile.Rendering.RenderSystem.GetCurrentMonitor + - Voile.Rendering.RenderSystem.GetFrameTime + - Voile.Rendering.RenderSystem.GetMonitorHeight(System.Int32) + - Voile.Rendering.RenderSystem.GetMonitorWidth(System.Int32) + - Voile.Rendering.RenderSystem.Initialize(Voile.Rendering.RendererSettings) + - Voile.Rendering.RenderSystem.MonitorSize + - Voile.Rendering.RenderSystem.ResetTransform + - Voile.Rendering.RenderSystem.SetTargetFps(System.Int32) + - Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Matrix4x4) + - Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2,System.Numerics.Vector2,System.Single) + - Voile.Rendering.RenderSystem.SetWindowTitle(System.String) + - Voile.Rendering.RenderSystem.SetWindowVSync(System.Boolean) + - Voile.Rendering.RenderSystem.ShouldRun + - Voile.Rendering.RenderSystem.Shutdown + - Voile.Rendering.RenderSystem.Start(Voile.Rendering.RendererSettings) + - Voile.Rendering.RenderSystem.TargetFps + - Voile.Rendering.RenderSystem.VSync + - Voile.Rendering.RenderSystem.WindowShouldClose + - Voile.Rendering.RenderSystem.WindowSize + - Voile.Rendering.RenderSystem.WindowTitle + - Voile.Rendering.RenderSystem.transformPivot + - Voile.Rendering.RenderSystem.transformPosition + - Voile.Rendering.RenderSystem.transformRotation + langs: + - csharp + - vb + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem + type: Class + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RenderSystem + path: Source/Rendering/RenderSystem.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.Rendering + summary: An abstract class representing the graphics renderer. + example: [] + syntax: + content: 'public abstract class RenderSystem : IStartableSystem, IDisposable' + content.vb: Public MustInherit Class RenderSystem Implements IStartableSystem(Of RendererSettings), IDisposable + inheritance: + - System.Object + derivedClasses: + - Voile.Rendering.RaylibRenderSystem + - Voile.Rendering.StandardRenderSystem + implements: + - Voile.IStartableSystem{Voile.Rendering.RendererSettings} + - System.IDisposable + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Rendering.RenderSystem.Start(Voile.Rendering.RendererSettings) + commentId: M:Voile.Rendering.RenderSystem.Start(Voile.Rendering.RendererSettings) + id: Start(Voile.Rendering.RendererSettings) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: Start(RendererSettings) + nameWithType: RenderSystem.Start(RendererSettings) + fullName: Voile.Rendering.RenderSystem.Start(Voile.Rendering.RendererSettings) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Start + path: Source/Rendering/RenderSystem.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: public void Start(RendererSettings settings) + parameters: + - id: settings + type: Voile.Rendering.RendererSettings + content.vb: Public Sub Start(settings As RendererSettings) + overload: Voile.Rendering.RenderSystem.Start* + implements: + - Voile.IStartableSystem{Voile.Rendering.RendererSettings}.Start(Voile.Rendering.RendererSettings) +- uid: Voile.Rendering.RenderSystem.Dispose + commentId: M:Voile.Rendering.RenderSystem.Dispose + id: Dispose + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: Dispose() + nameWithType: RenderSystem.Dispose() + fullName: Voile.Rendering.RenderSystem.Dispose() + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Dispose + path: Source/Rendering/RenderSystem.cs + startLine: 15 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + example: [] + syntax: + content: public void Dispose() + content.vb: Public Sub Dispose() + overload: Voile.Rendering.RenderSystem.Dispose* + implements: + - System.IDisposable.Dispose +- uid: Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + commentId: M:Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + id: CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: CreateAndInitializeWithWindow(RendererSettings) + nameWithType: RenderSystem.CreateAndInitializeWithWindow(RendererSettings) + fullName: Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CreateAndInitializeWithWindow + path: Source/Rendering/RenderSystem.cs + startLine: 26 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Creates the renderer with an OS window and initializes internal resources. + example: [] + syntax: + content: public abstract void CreateAndInitializeWithWindow(RendererSettings renderSettings) + parameters: + - id: renderSettings + type: Voile.Rendering.RendererSettings + description: Rendering settings. + content.vb: Public MustOverride Sub CreateAndInitializeWithWindow(renderSettings As RendererSettings) + overload: Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow* +- uid: Voile.Rendering.RenderSystem.Initialize(Voile.Rendering.RendererSettings) + commentId: M:Voile.Rendering.RenderSystem.Initialize(Voile.Rendering.RendererSettings) + id: Initialize(Voile.Rendering.RendererSettings) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: Initialize(RendererSettings) + nameWithType: RenderSystem.Initialize(RendererSettings) + fullName: Voile.Rendering.RenderSystem.Initialize(Voile.Rendering.RendererSettings) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Initialize + path: Source/Rendering/RenderSystem.cs + startLine: 31 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Initializes internal resources. Should be called before other methods. + example: [] + syntax: + content: public abstract void Initialize(RendererSettings settings) + parameters: + - id: settings + type: Voile.Rendering.RendererSettings + description: Rendering settings. + content.vb: Public MustOverride Sub Initialize(settings As RendererSettings) + overload: Voile.Rendering.RenderSystem.Initialize* +- uid: Voile.Rendering.RenderSystem.ShouldRun + commentId: P:Voile.Rendering.RenderSystem.ShouldRun + id: ShouldRun + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: ShouldRun + nameWithType: RenderSystem.ShouldRun + fullName: Voile.Rendering.RenderSystem.ShouldRun + type: Property + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ShouldRun + path: Source/Rendering/RenderSystem.cs + startLine: 37 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Indicates if the renderer will render the next frame. + example: [] + syntax: + content: public abstract bool ShouldRun { get; } + parameters: [] + return: + type: System.Boolean + content.vb: Public MustOverride ReadOnly Property ShouldRun As Boolean + overload: Voile.Rendering.RenderSystem.ShouldRun* +- uid: Voile.Rendering.RenderSystem.TargetFps + commentId: P:Voile.Rendering.RenderSystem.TargetFps + id: TargetFps + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: TargetFps + nameWithType: RenderSystem.TargetFps + fullName: Voile.Rendering.RenderSystem.TargetFps + type: Property + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: TargetFps + path: Source/Rendering/RenderSystem.cs + startLine: 41 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Target frames per second for rendering. + example: [] + syntax: + content: public abstract int TargetFps { get; set; } + parameters: [] + return: + type: System.Int32 + content.vb: Public MustOverride Property TargetFps As Integer + overload: Voile.Rendering.RenderSystem.TargetFps* +- uid: Voile.Rendering.RenderSystem.VSync + commentId: P:Voile.Rendering.RenderSystem.VSync + id: VSync + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: VSync + nameWithType: RenderSystem.VSync + fullName: Voile.Rendering.RenderSystem.VSync + type: Property + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: VSync + path: Source/Rendering/RenderSystem.cs + startLine: 42 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public abstract bool VSync { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public MustOverride Property VSync As Boolean + overload: Voile.Rendering.RenderSystem.VSync* +- uid: Voile.Rendering.RenderSystem.FrameTime + commentId: P:Voile.Rendering.RenderSystem.FrameTime + id: FrameTime + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: FrameTime + nameWithType: RenderSystem.FrameTime + fullName: Voile.Rendering.RenderSystem.FrameTime + type: Property + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: FrameTime + path: Source/Rendering/RenderSystem.cs + startLine: 43 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public double FrameTime { get; } + parameters: [] + return: + type: System.Double + content.vb: Public ReadOnly Property FrameTime As Double + overload: Voile.Rendering.RenderSystem.FrameTime* +- uid: Voile.Rendering.RenderSystem.WindowSize + commentId: P:Voile.Rendering.RenderSystem.WindowSize + id: WindowSize + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: WindowSize + nameWithType: RenderSystem.WindowSize + fullName: Voile.Rendering.RenderSystem.WindowSize + type: Property + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: WindowSize + path: Source/Rendering/RenderSystem.cs + startLine: 49 + assemblies: + - Voile + namespace: Voile.Rendering + summary: The size of the render window. + example: [] + syntax: + content: public abstract Vector2 WindowSize { get; set; } + parameters: [] + return: + type: System.Numerics.Vector2 + content.vb: Public MustOverride Property WindowSize As Vector2 + overload: Voile.Rendering.RenderSystem.WindowSize* +- uid: Voile.Rendering.RenderSystem.WindowTitle + commentId: P:Voile.Rendering.RenderSystem.WindowTitle + id: WindowTitle + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: WindowTitle + nameWithType: RenderSystem.WindowTitle + fullName: Voile.Rendering.RenderSystem.WindowTitle + type: Property + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: WindowTitle + path: Source/Rendering/RenderSystem.cs + startLine: 51 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public abstract string WindowTitle { get; set; } + parameters: [] + return: + type: System.String + content.vb: Public MustOverride Property WindowTitle As String + overload: Voile.Rendering.RenderSystem.WindowTitle* +- uid: Voile.Rendering.RenderSystem.Fullscreen + commentId: P:Voile.Rendering.RenderSystem.Fullscreen + id: Fullscreen + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: Fullscreen + nameWithType: RenderSystem.Fullscreen + fullName: Voile.Rendering.RenderSystem.Fullscreen + type: Property + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Fullscreen + path: Source/Rendering/RenderSystem.cs + startLine: 52 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public abstract bool Fullscreen { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public MustOverride Property Fullscreen As Boolean + overload: Voile.Rendering.RenderSystem.Fullscreen* +- uid: Voile.Rendering.RenderSystem.MonitorSize + commentId: P:Voile.Rendering.RenderSystem.MonitorSize + id: MonitorSize + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: MonitorSize + nameWithType: RenderSystem.MonitorSize + fullName: Voile.Rendering.RenderSystem.MonitorSize + type: Property + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: MonitorSize + path: Source/Rendering/RenderSystem.cs + startLine: 57 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Active monitor's size. + example: [] + syntax: + content: public abstract Vector2 MonitorSize { get; } + parameters: [] + return: + type: System.Numerics.Vector2 + content.vb: Public MustOverride ReadOnly Property MonitorSize As Vector2 + overload: Voile.Rendering.RenderSystem.MonitorSize* +- uid: Voile.Rendering.RenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + commentId: M:Voile.Rendering.RenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + id: CreateWindow(Voile.Rendering.WindowSettings) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: CreateWindow(WindowSettings) + nameWithType: RenderSystem.CreateWindow(WindowSettings) + fullName: Voile.Rendering.RenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CreateWindow + path: Source/Rendering/RenderSystem.cs + startLine: 63 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Creates a window. + example: [] + syntax: + content: public abstract void CreateWindow(WindowSettings windowSettings) + parameters: + - id: windowSettings + type: Voile.Rendering.WindowSettings + description: Window settings to use to create the window. + content.vb: Public MustOverride Sub CreateWindow(windowSettings As WindowSettings) + overload: Voile.Rendering.RenderSystem.CreateWindow* +- uid: Voile.Rendering.RenderSystem.SetWindowTitle(System.String) + commentId: M:Voile.Rendering.RenderSystem.SetWindowTitle(System.String) + id: SetWindowTitle(System.String) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: SetWindowTitle(string) + nameWithType: RenderSystem.SetWindowTitle(string) + fullName: Voile.Rendering.RenderSystem.SetWindowTitle(string) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetWindowTitle + path: Source/Rendering/RenderSystem.cs + startLine: 64 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: protected abstract void SetWindowTitle(string title) + parameters: + - id: title + type: System.String + content.vb: Protected MustOverride Sub SetWindowTitle(title As String) + overload: Voile.Rendering.RenderSystem.SetWindowTitle* + nameWithType.vb: RenderSystem.SetWindowTitle(String) + fullName.vb: Voile.Rendering.RenderSystem.SetWindowTitle(String) + name.vb: SetWindowTitle(String) +- uid: Voile.Rendering.RenderSystem.SetWindowVSync(System.Boolean) + commentId: M:Voile.Rendering.RenderSystem.SetWindowVSync(System.Boolean) + id: SetWindowVSync(System.Boolean) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: SetWindowVSync(bool) + nameWithType: RenderSystem.SetWindowVSync(bool) + fullName: Voile.Rendering.RenderSystem.SetWindowVSync(bool) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetWindowVSync + path: Source/Rendering/RenderSystem.cs + startLine: 65 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: protected abstract void SetWindowVSync(bool value) + parameters: + - id: value + type: System.Boolean + content.vb: Protected MustOverride Sub SetWindowVSync(value As Boolean) + overload: Voile.Rendering.RenderSystem.SetWindowVSync* + nameWithType.vb: RenderSystem.SetWindowVSync(Boolean) + fullName.vb: Voile.Rendering.RenderSystem.SetWindowVSync(Boolean) + name.vb: SetWindowVSync(Boolean) +- uid: Voile.Rendering.RenderSystem.SetTargetFps(System.Int32) + commentId: M:Voile.Rendering.RenderSystem.SetTargetFps(System.Int32) + id: SetTargetFps(System.Int32) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: SetTargetFps(int) + nameWithType: RenderSystem.SetTargetFps(int) + fullName: Voile.Rendering.RenderSystem.SetTargetFps(int) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetTargetFps + path: Source/Rendering/RenderSystem.cs + startLine: 66 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: protected abstract void SetTargetFps(int fps) + parameters: + - id: fps + type: System.Int32 + content.vb: Protected MustOverride Sub SetTargetFps(fps As Integer) + overload: Voile.Rendering.RenderSystem.SetTargetFps* + nameWithType.vb: RenderSystem.SetTargetFps(Integer) + fullName.vb: Voile.Rendering.RenderSystem.SetTargetFps(Integer) + name.vb: SetTargetFps(Integer) +- uid: Voile.Rendering.RenderSystem.GetFrameTime + commentId: M:Voile.Rendering.RenderSystem.GetFrameTime + id: GetFrameTime + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: GetFrameTime() + nameWithType: RenderSystem.GetFrameTime() + fullName: Voile.Rendering.RenderSystem.GetFrameTime() + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetFrameTime + path: Source/Rendering/RenderSystem.cs + startLine: 67 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: protected abstract double GetFrameTime() + return: + type: System.Double + content.vb: Protected MustOverride Function GetFrameTime() As Double + overload: Voile.Rendering.RenderSystem.GetFrameTime* +- uid: Voile.Rendering.RenderSystem.GetMonitorWidth(System.Int32) + commentId: M:Voile.Rendering.RenderSystem.GetMonitorWidth(System.Int32) + id: GetMonitorWidth(System.Int32) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: GetMonitorWidth(int) + nameWithType: RenderSystem.GetMonitorWidth(int) + fullName: Voile.Rendering.RenderSystem.GetMonitorWidth(int) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetMonitorWidth + path: Source/Rendering/RenderSystem.cs + startLine: 68 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: protected abstract int GetMonitorWidth(int monitorId) + parameters: + - id: monitorId + type: System.Int32 + return: + type: System.Int32 + content.vb: Protected MustOverride Function GetMonitorWidth(monitorId As Integer) As Integer + overload: Voile.Rendering.RenderSystem.GetMonitorWidth* + nameWithType.vb: RenderSystem.GetMonitorWidth(Integer) + fullName.vb: Voile.Rendering.RenderSystem.GetMonitorWidth(Integer) + name.vb: GetMonitorWidth(Integer) +- uid: Voile.Rendering.RenderSystem.GetMonitorHeight(System.Int32) + commentId: M:Voile.Rendering.RenderSystem.GetMonitorHeight(System.Int32) + id: GetMonitorHeight(System.Int32) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: GetMonitorHeight(int) + nameWithType: RenderSystem.GetMonitorHeight(int) + fullName: Voile.Rendering.RenderSystem.GetMonitorHeight(int) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetMonitorHeight + path: Source/Rendering/RenderSystem.cs + startLine: 69 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: protected abstract int GetMonitorHeight(int monitorId) + parameters: + - id: monitorId + type: System.Int32 + return: + type: System.Int32 + content.vb: Protected MustOverride Function GetMonitorHeight(monitorId As Integer) As Integer + overload: Voile.Rendering.RenderSystem.GetMonitorHeight* + nameWithType.vb: RenderSystem.GetMonitorHeight(Integer) + fullName.vb: Voile.Rendering.RenderSystem.GetMonitorHeight(Integer) + name.vb: GetMonitorHeight(Integer) +- uid: Voile.Rendering.RenderSystem.GetCurrentMonitor + commentId: M:Voile.Rendering.RenderSystem.GetCurrentMonitor + id: GetCurrentMonitor + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: GetCurrentMonitor() + nameWithType: RenderSystem.GetCurrentMonitor() + fullName: Voile.Rendering.RenderSystem.GetCurrentMonitor() + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetCurrentMonitor + path: Source/Rendering/RenderSystem.cs + startLine: 70 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: protected abstract int GetCurrentMonitor() + return: + type: System.Int32 + content.vb: Protected MustOverride Function GetCurrentMonitor() As Integer + overload: Voile.Rendering.RenderSystem.GetCurrentMonitor* +- uid: Voile.Rendering.RenderSystem.WindowShouldClose + commentId: M:Voile.Rendering.RenderSystem.WindowShouldClose + id: WindowShouldClose + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: WindowShouldClose() + nameWithType: RenderSystem.WindowShouldClose() + fullName: Voile.Rendering.RenderSystem.WindowShouldClose() + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: WindowShouldClose + path: Source/Rendering/RenderSystem.cs + startLine: 71 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: protected abstract bool WindowShouldClose() + return: + type: System.Boolean + content.vb: Protected MustOverride Function WindowShouldClose() As Boolean + overload: Voile.Rendering.RenderSystem.WindowShouldClose* +- uid: Voile.Rendering.RenderSystem.Shutdown + commentId: M:Voile.Rendering.RenderSystem.Shutdown + id: Shutdown + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: Shutdown() + nameWithType: RenderSystem.Shutdown() + fullName: Voile.Rendering.RenderSystem.Shutdown() + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Shutdown + path: Source/Rendering/RenderSystem.cs + startLine: 72 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: protected abstract void Shutdown() + content.vb: Protected MustOverride Sub Shutdown() + overload: Voile.Rendering.RenderSystem.Shutdown* +- uid: Voile.Rendering.RenderSystem.BeginFrame + commentId: M:Voile.Rendering.RenderSystem.BeginFrame + id: BeginFrame + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: BeginFrame() + nameWithType: RenderSystem.BeginFrame() + fullName: Voile.Rendering.RenderSystem.BeginFrame() + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: BeginFrame + path: Source/Rendering/RenderSystem.cs + startLine: 78 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Prepares the renderer for drawing the next frame. + example: [] + syntax: + content: public abstract void BeginFrame() + content.vb: Public MustOverride Sub BeginFrame() + overload: Voile.Rendering.RenderSystem.BeginFrame* +- uid: Voile.Rendering.RenderSystem.EndFrame + commentId: M:Voile.Rendering.RenderSystem.EndFrame + id: EndFrame + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: EndFrame() + nameWithType: RenderSystem.EndFrame() + fullName: Voile.Rendering.RenderSystem.EndFrame() + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: EndFrame + path: Source/Rendering/RenderSystem.cs + startLine: 82 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Ends rendering of the frame. + example: [] + syntax: + content: public abstract void EndFrame() + content.vb: Public MustOverride Sub EndFrame() + overload: Voile.Rendering.RenderSystem.EndFrame* +- uid: Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + commentId: M:Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + id: BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: BeginCamera2d(Vector2, Vector2, float, float) + nameWithType: RenderSystem.BeginCamera2d(Vector2, Vector2, float, float) + fullName: Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2, System.Numerics.Vector2, float, float) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: BeginCamera2d + path: Source/Rendering/RenderSystem.cs + startLine: 84 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public abstract void BeginCamera2d(Vector2 offset, Vector2 target, float rotation, float zoom) + parameters: + - id: offset + type: System.Numerics.Vector2 + - id: target + type: System.Numerics.Vector2 + - id: rotation + type: System.Single + - id: zoom + type: System.Single + content.vb: Public MustOverride Sub BeginCamera2d(offset As Vector2, target As Vector2, rotation As Single, zoom As Single) + overload: Voile.Rendering.RenderSystem.BeginCamera2d* + nameWithType.vb: RenderSystem.BeginCamera2d(Vector2, Vector2, Single, Single) + fullName.vb: Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2, System.Numerics.Vector2, Single, Single) + name.vb: BeginCamera2d(Vector2, Vector2, Single, Single) +- uid: Voile.Rendering.RenderSystem.EndCamera2d + commentId: M:Voile.Rendering.RenderSystem.EndCamera2d + id: EndCamera2d + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: EndCamera2d() + nameWithType: RenderSystem.EndCamera2d() + fullName: Voile.Rendering.RenderSystem.EndCamera2d() + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: EndCamera2d + path: Source/Rendering/RenderSystem.cs + startLine: 85 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public abstract void EndCamera2d() + content.vb: Public MustOverride Sub EndCamera2d() + overload: Voile.Rendering.RenderSystem.EndCamera2d* +- uid: Voile.Rendering.RenderSystem.ClearBackground(Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.ClearBackground(Voile.Color) + id: ClearBackground(Voile.Color) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: ClearBackground(Color) + nameWithType: RenderSystem.ClearBackground(Color) + fullName: Voile.Rendering.RenderSystem.ClearBackground(Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ClearBackground + path: Source/Rendering/RenderSystem.cs + startLine: 91 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Clears the render canvas and sets a background color. + example: [] + syntax: + content: public abstract void ClearBackground(Color color) + parameters: + - id: color + type: Voile.Color + description: Background color. + content.vb: Public MustOverride Sub ClearBackground(color As Color) + overload: Voile.Rendering.RenderSystem.ClearBackground* +- uid: Voile.Rendering.RenderSystem.ResetTransform + commentId: M:Voile.Rendering.RenderSystem.ResetTransform + id: ResetTransform + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: ResetTransform() + nameWithType: RenderSystem.ResetTransform() + fullName: Voile.Rendering.RenderSystem.ResetTransform() + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ResetTransform + path: Source/Rendering/RenderSystem.cs + startLine: 93 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public void ResetTransform() + content.vb: Public Sub ResetTransform() + overload: Voile.Rendering.RenderSystem.ResetTransform* +- uid: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2,System.Numerics.Vector2,System.Single) + commentId: M:Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2,System.Numerics.Vector2,System.Single) + id: SetTransform(System.Numerics.Vector2,System.Numerics.Vector2,System.Single) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: SetTransform(Vector2, Vector2, float) + nameWithType: RenderSystem.SetTransform(Vector2, Vector2, float) + fullName: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2, System.Numerics.Vector2, float) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetTransform + path: Source/Rendering/RenderSystem.cs + startLine: 106 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Sets transforms for the next draw operation. + example: [] + syntax: + content: public void SetTransform(Vector2 position, Vector2 pivot, float rotation = 0) + parameters: + - id: position + type: System.Numerics.Vector2 + description: Global transform position. + - id: pivot + type: System.Numerics.Vector2 + description: Local offset point around which shapes will rotate. + - id: rotation + type: System.Single + description: Rotation. + content.vb: Public Sub SetTransform(position As Vector2, pivot As Vector2, rotation As Single = 0) + overload: Voile.Rendering.RenderSystem.SetTransform* + nameWithType.vb: RenderSystem.SetTransform(Vector2, Vector2, Single) + fullName.vb: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2, System.Numerics.Vector2, Single) + name.vb: SetTransform(Vector2, Vector2, Single) +- uid: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Matrix4x4) + commentId: M:Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Matrix4x4) + id: SetTransform(System.Numerics.Matrix4x4) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: SetTransform(Matrix4x4) + nameWithType: RenderSystem.SetTransform(Matrix4x4) + fullName: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Matrix4x4) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetTransform + path: Source/Rendering/RenderSystem.cs + startLine: 116 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Sets the transform for the next draw operation. + example: [] + syntax: + content: public abstract void SetTransform(Matrix4x4 transform) + parameters: + - id: transform + type: System.Numerics.Matrix4x4 + description: Transform matrix. + content.vb: Public MustOverride Sub SetTransform(transform As Matrix4x4) + overload: Voile.Rendering.RenderSystem.SetTransform* +- uid: Voile.Rendering.RenderSystem.DrawCircle(System.Single,Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.DrawCircle(System.Single,Voile.Color) + id: DrawCircle(System.Single,Voile.Color) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: DrawCircle(float, Color) + nameWithType: RenderSystem.DrawCircle(float, Color) + fullName: Voile.Rendering.RenderSystem.DrawCircle(float, Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DrawCircle + path: Source/Rendering/RenderSystem.cs + startLine: 122 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Draws a filled circle. + example: [] + syntax: + content: public abstract void DrawCircle(float radius, Color color) + parameters: + - id: radius + type: System.Single + description: Radius of a circle. + - id: color + type: Voile.Color + description: Fill color. + content.vb: Public MustOverride Sub DrawCircle(radius As Single, color As Color) + overload: Voile.Rendering.RenderSystem.DrawCircle* + nameWithType.vb: RenderSystem.DrawCircle(Single, Color) + fullName.vb: Voile.Rendering.RenderSystem.DrawCircle(Single, Voile.Color) + name.vb: DrawCircle(Single, Color) +- uid: Voile.Rendering.RenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + id: DrawRectangle(System.Numerics.Vector2,Voile.Color) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: DrawRectangle(Vector2, Color) + nameWithType: RenderSystem.DrawRectangle(Vector2, Color) + fullName: Voile.Rendering.RenderSystem.DrawRectangle(System.Numerics.Vector2, Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DrawRectangle + path: Source/Rendering/RenderSystem.cs + startLine: 128 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Draws a filled rectangle. + example: [] + syntax: + content: public abstract void DrawRectangle(Vector2 size, Color color) + parameters: + - id: size + type: System.Numerics.Vector2 + description: Rectangle size. + - id: color + type: Voile.Color + description: Fill color. + content.vb: Public MustOverride Sub DrawRectangle(size As Vector2, color As Color) + overload: Voile.Rendering.RenderSystem.DrawRectangle* +- uid: Voile.Rendering.RenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + id: DrawDebugText(System.String,System.Int32,Voile.Color) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: DrawDebugText(string, int, Color) + nameWithType: RenderSystem.DrawDebugText(string, int, Color) + fullName: Voile.Rendering.RenderSystem.DrawDebugText(string, int, Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DrawDebugText + path: Source/Rendering/RenderSystem.cs + startLine: 136 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Draws a debug text with a default font. + example: [] + syntax: + content: public abstract void DrawDebugText(string text, int fontSize, Color color) + parameters: + - id: text + type: System.String + description: '' + - id: fontSize + type: System.Int32 + description: '' + - id: color + type: Voile.Color + description: '' + content.vb: Public MustOverride Sub DrawDebugText(text As String, fontSize As Integer, color As Color) + overload: Voile.Rendering.RenderSystem.DrawDebugText* + nameWithType.vb: RenderSystem.DrawDebugText(String, Integer, Color) + fullName.vb: Voile.Rendering.RenderSystem.DrawDebugText(String, Integer, Voile.Color) + name.vb: DrawDebugText(String, Integer, Color) +- uid: Voile.Rendering.RenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + id: DrawSdfText(System.String,System.Int32,Voile.Color) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: DrawSdfText(string, int, Color) + nameWithType: RenderSystem.DrawSdfText(string, int, Color) + fullName: Voile.Rendering.RenderSystem.DrawSdfText(string, int, Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DrawSdfText + path: Source/Rendering/RenderSystem.cs + startLine: 143 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Draws text using a signed distance field font atlas. + example: [] + syntax: + content: public abstract void DrawSdfText(string text, int fontSize, Color color) + parameters: + - id: text + type: System.String + description: Text to draw. + - id: fontSize + type: System.Int32 + description: Size of the font. + - id: color + type: Voile.Color + description: Color of the text. + content.vb: Public MustOverride Sub DrawSdfText(text As String, fontSize As Integer, color As Color) + overload: Voile.Rendering.RenderSystem.DrawSdfText* + nameWithType.vb: RenderSystem.DrawSdfText(String, Integer, Color) + fullName.vb: Voile.Rendering.RenderSystem.DrawSdfText(String, Integer, Voile.Color) + name.vb: DrawSdfText(String, Integer, Color) +- uid: Voile.Rendering.RenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + id: DrawText(Voile.Font,System.String,Voile.Color) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: DrawText(Font, string, Color) + nameWithType: RenderSystem.DrawText(Font, string, Color) + fullName: Voile.Rendering.RenderSystem.DrawText(Voile.Font, string, Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DrawText + path: Source/Rendering/RenderSystem.cs + startLine: 145 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public abstract void DrawText(Font font, string text, Color color) + parameters: + - id: font + type: Voile.Font + - id: text + type: System.String + - id: color + type: Voile.Color + content.vb: Public MustOverride Sub DrawText(font As Font, text As String, color As Color) + overload: Voile.Rendering.RenderSystem.DrawText* + nameWithType.vb: RenderSystem.DrawText(Font, String, Color) + fullName.vb: Voile.Rendering.RenderSystem.DrawText(Voile.Font, String, Voile.Color) + name.vb: DrawText(Font, String, Color) +- uid: Voile.Rendering.RenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + id: DrawTexture(Voile.Texture2d,Voile.Color) + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: DrawTexture(Texture2d, Color) + nameWithType: RenderSystem.DrawTexture(Texture2d, Color) + fullName: Voile.Rendering.RenderSystem.DrawTexture(Voile.Texture2d, Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DrawTexture + path: Source/Rendering/RenderSystem.cs + startLine: 152 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Draws the texture. + example: [] + syntax: + content: public abstract void DrawTexture(Texture2d texture, Color tint) + parameters: + - id: texture + type: Voile.Texture2d + - id: tint + type: Voile.Color + description: Texture tint. + content.vb: Public MustOverride Sub DrawTexture(texture As Texture2d, tint As Color) + overload: Voile.Rendering.RenderSystem.DrawTexture* +- uid: Voile.Rendering.RenderSystem.transformPosition + commentId: F:Voile.Rendering.RenderSystem.transformPosition + id: transformPosition + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: transformPosition + nameWithType: RenderSystem.transformPosition + fullName: Voile.Rendering.RenderSystem.transformPosition + type: Field + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: transformPosition + path: Source/Rendering/RenderSystem.cs + startLine: 155 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: protected Vector2 transformPosition + return: + type: System.Numerics.Vector2 + content.vb: Protected transformPosition As Vector2 +- uid: Voile.Rendering.RenderSystem.transformPivot + commentId: F:Voile.Rendering.RenderSystem.transformPivot + id: transformPivot + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: transformPivot + nameWithType: RenderSystem.transformPivot + fullName: Voile.Rendering.RenderSystem.transformPivot + type: Field + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: transformPivot + path: Source/Rendering/RenderSystem.cs + startLine: 155 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: protected Vector2 transformPivot + return: + type: System.Numerics.Vector2 + content.vb: Protected transformPivot As Vector2 +- uid: Voile.Rendering.RenderSystem.transformRotation + commentId: F:Voile.Rendering.RenderSystem.transformRotation + id: transformRotation + parent: Voile.Rendering.RenderSystem + langs: + - csharp + - vb + name: transformRotation + nameWithType: RenderSystem.transformRotation + fullName: Voile.Rendering.RenderSystem.transformRotation + type: Field + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: transformRotation + path: Source/Rendering/RenderSystem.cs + startLine: 156 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: protected float transformRotation + return: + type: System.Single + content.vb: Protected transformRotation As Single +references: +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.IStartableSystem{Voile.Rendering.RendererSettings} + commentId: T:Voile.IStartableSystem{Voile.Rendering.RendererSettings} + parent: Voile + definition: Voile.IStartableSystem`1 + href: Voile.IStartableSystem-1.html + name: IStartableSystem + nameWithType: IStartableSystem + fullName: Voile.IStartableSystem + nameWithType.vb: IStartableSystem(Of RendererSettings) + fullName.vb: Voile.IStartableSystem(Of Voile.Rendering.RendererSettings) + name.vb: IStartableSystem(Of RendererSettings) + spec.csharp: + - uid: Voile.IStartableSystem`1 + name: IStartableSystem + href: Voile.IStartableSystem-1.html + - name: < + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: '>' + spec.vb: + - uid: Voile.IStartableSystem`1 + name: IStartableSystem + href: Voile.IStartableSystem-1.html + - name: ( + - name: Of + - name: " " + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: ) +- uid: System.IDisposable + commentId: T:System.IDisposable + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable + name: IDisposable + nameWithType: IDisposable + fullName: System.IDisposable +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.IStartableSystem`1 + commentId: T:Voile.IStartableSystem`1 + href: Voile.IStartableSystem-1.html + name: IStartableSystem + nameWithType: IStartableSystem + fullName: Voile.IStartableSystem + nameWithType.vb: IStartableSystem(Of T) + fullName.vb: Voile.IStartableSystem(Of T) + name.vb: IStartableSystem(Of T) + spec.csharp: + - uid: Voile.IStartableSystem`1 + name: IStartableSystem + href: Voile.IStartableSystem-1.html + - name: < + - name: T + - name: '>' + spec.vb: + - uid: Voile.IStartableSystem`1 + name: IStartableSystem + href: Voile.IStartableSystem-1.html + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.Rendering.RenderSystem.Start* + commentId: Overload:Voile.Rendering.RenderSystem.Start + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Start_Voile_Rendering_RendererSettings_ + name: Start + nameWithType: RenderSystem.Start + fullName: Voile.Rendering.RenderSystem.Start +- uid: Voile.IStartableSystem{Voile.Rendering.RendererSettings}.Start(Voile.Rendering.RendererSettings) + commentId: M:Voile.IStartableSystem{Voile.Rendering.RendererSettings}.Start(Voile.Rendering.RendererSettings) + parent: Voile.IStartableSystem{Voile.Rendering.RendererSettings} + definition: Voile.IStartableSystem`1.Start(`0) + href: Voile.IStartableSystem-1.html#Voile_IStartableSystem_1_Start__0_ + name: Start(RendererSettings) + nameWithType: IStartableSystem.Start(RendererSettings) + fullName: Voile.IStartableSystem.Start(Voile.Rendering.RendererSettings) + nameWithType.vb: IStartableSystem(Of RendererSettings).Start(RendererSettings) + fullName.vb: Voile.IStartableSystem(Of Voile.Rendering.RendererSettings).Start(Voile.Rendering.RendererSettings) + spec.csharp: + - uid: Voile.IStartableSystem{Voile.Rendering.RendererSettings}.Start(Voile.Rendering.RendererSettings) + name: Start + href: Voile.IStartableSystem-1.html#Voile_IStartableSystem_1_Start__0_ + - name: ( + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: ) + spec.vb: + - uid: Voile.IStartableSystem{Voile.Rendering.RendererSettings}.Start(Voile.Rendering.RendererSettings) + name: Start + href: Voile.IStartableSystem-1.html#Voile_IStartableSystem_1_Start__0_ + - name: ( + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: ) +- uid: Voile.Rendering.RendererSettings + commentId: T:Voile.Rendering.RendererSettings + parent: Voile.Rendering + href: Voile.Rendering.RendererSettings.html + name: RendererSettings + nameWithType: RendererSettings + fullName: Voile.Rendering.RendererSettings +- uid: Voile.IStartableSystem`1.Start(`0) + commentId: M:Voile.IStartableSystem`1.Start(`0) + href: Voile.IStartableSystem-1.html#Voile_IStartableSystem_1_Start__0_ + name: Start(T) + nameWithType: IStartableSystem.Start(T) + fullName: Voile.IStartableSystem.Start(T) + nameWithType.vb: IStartableSystem(Of T).Start(T) + fullName.vb: Voile.IStartableSystem(Of T).Start(T) + spec.csharp: + - uid: Voile.IStartableSystem`1.Start(`0) + name: Start + href: Voile.IStartableSystem-1.html#Voile_IStartableSystem_1_Start__0_ + - name: ( + - name: T + - name: ) + spec.vb: + - uid: Voile.IStartableSystem`1.Start(`0) + name: Start + href: Voile.IStartableSystem-1.html#Voile_IStartableSystem_1_Start__0_ + - name: ( + - name: T + - name: ) +- uid: Voile.Rendering.RenderSystem.Dispose* + commentId: Overload:Voile.Rendering.RenderSystem.Dispose + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Dispose + name: Dispose + nameWithType: RenderSystem.Dispose + fullName: Voile.Rendering.RenderSystem.Dispose +- uid: System.IDisposable.Dispose + commentId: M:System.IDisposable.Dispose + parent: System.IDisposable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + name: Dispose() + nameWithType: IDisposable.Dispose() + fullName: System.IDisposable.Dispose() + spec.csharp: + - uid: System.IDisposable.Dispose + name: Dispose + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + - name: ( + - name: ) + spec.vb: + - uid: System.IDisposable.Dispose + name: Dispose + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + - name: ( + - name: ) +- uid: Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow* + commentId: Overload:Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_CreateAndInitializeWithWindow_Voile_Rendering_RendererSettings_ + name: CreateAndInitializeWithWindow + nameWithType: RenderSystem.CreateAndInitializeWithWindow + fullName: Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow +- uid: Voile.Rendering.RenderSystem.Initialize* + commentId: Overload:Voile.Rendering.RenderSystem.Initialize + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Initialize_Voile_Rendering_RendererSettings_ + name: Initialize + nameWithType: RenderSystem.Initialize + fullName: Voile.Rendering.RenderSystem.Initialize +- uid: Voile.Rendering.RenderSystem.ShouldRun* + commentId: Overload:Voile.Rendering.RenderSystem.ShouldRun + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_ShouldRun + name: ShouldRun + nameWithType: RenderSystem.ShouldRun + fullName: Voile.Rendering.RenderSystem.ShouldRun +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: Voile.Rendering.RenderSystem.TargetFps* + commentId: Overload:Voile.Rendering.RenderSystem.TargetFps + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_TargetFps + name: TargetFps + nameWithType: RenderSystem.TargetFps + fullName: Voile.Rendering.RenderSystem.TargetFps +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: Voile.Rendering.RenderSystem.VSync* + commentId: Overload:Voile.Rendering.RenderSystem.VSync + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_VSync + name: VSync + nameWithType: RenderSystem.VSync + fullName: Voile.Rendering.RenderSystem.VSync +- uid: Voile.Rendering.RenderSystem.FrameTime* + commentId: Overload:Voile.Rendering.RenderSystem.FrameTime + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_FrameTime + name: FrameTime + nameWithType: RenderSystem.FrameTime + fullName: Voile.Rendering.RenderSystem.FrameTime +- uid: System.Double + commentId: T:System.Double + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + name: double + nameWithType: double + fullName: double + nameWithType.vb: Double + fullName.vb: Double + name.vb: Double +- uid: Voile.Rendering.RenderSystem.WindowSize* + commentId: Overload:Voile.Rendering.RenderSystem.WindowSize + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_WindowSize + name: WindowSize + nameWithType: RenderSystem.WindowSize + fullName: Voile.Rendering.RenderSystem.WindowSize +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: Voile.Rendering.RenderSystem.WindowTitle* + commentId: Overload:Voile.Rendering.RenderSystem.WindowTitle + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_WindowTitle + name: WindowTitle + nameWithType: RenderSystem.WindowTitle + fullName: Voile.Rendering.RenderSystem.WindowTitle +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.Rendering.RenderSystem.Fullscreen* + commentId: Overload:Voile.Rendering.RenderSystem.Fullscreen + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Fullscreen + name: Fullscreen + nameWithType: RenderSystem.Fullscreen + fullName: Voile.Rendering.RenderSystem.Fullscreen +- uid: Voile.Rendering.RenderSystem.MonitorSize* + commentId: Overload:Voile.Rendering.RenderSystem.MonitorSize + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_MonitorSize + name: MonitorSize + nameWithType: RenderSystem.MonitorSize + fullName: Voile.Rendering.RenderSystem.MonitorSize +- uid: Voile.Rendering.RenderSystem.CreateWindow* + commentId: Overload:Voile.Rendering.RenderSystem.CreateWindow + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_CreateWindow_Voile_Rendering_WindowSettings_ + name: CreateWindow + nameWithType: RenderSystem.CreateWindow + fullName: Voile.Rendering.RenderSystem.CreateWindow +- uid: Voile.Rendering.WindowSettings + commentId: T:Voile.Rendering.WindowSettings + parent: Voile.Rendering + href: Voile.Rendering.WindowSettings.html + name: WindowSettings + nameWithType: WindowSettings + fullName: Voile.Rendering.WindowSettings +- uid: Voile.Rendering.RenderSystem.SetWindowTitle* + commentId: Overload:Voile.Rendering.RenderSystem.SetWindowTitle + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetWindowTitle_System_String_ + name: SetWindowTitle + nameWithType: RenderSystem.SetWindowTitle + fullName: Voile.Rendering.RenderSystem.SetWindowTitle +- uid: Voile.Rendering.RenderSystem.SetWindowVSync* + commentId: Overload:Voile.Rendering.RenderSystem.SetWindowVSync + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetWindowVSync_System_Boolean_ + name: SetWindowVSync + nameWithType: RenderSystem.SetWindowVSync + fullName: Voile.Rendering.RenderSystem.SetWindowVSync +- uid: Voile.Rendering.RenderSystem.SetTargetFps* + commentId: Overload:Voile.Rendering.RenderSystem.SetTargetFps + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTargetFps_System_Int32_ + name: SetTargetFps + nameWithType: RenderSystem.SetTargetFps + fullName: Voile.Rendering.RenderSystem.SetTargetFps +- uid: Voile.Rendering.RenderSystem.GetFrameTime* + commentId: Overload:Voile.Rendering.RenderSystem.GetFrameTime + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetFrameTime + name: GetFrameTime + nameWithType: RenderSystem.GetFrameTime + fullName: Voile.Rendering.RenderSystem.GetFrameTime +- uid: Voile.Rendering.RenderSystem.GetMonitorWidth* + commentId: Overload:Voile.Rendering.RenderSystem.GetMonitorWidth + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetMonitorWidth_System_Int32_ + name: GetMonitorWidth + nameWithType: RenderSystem.GetMonitorWidth + fullName: Voile.Rendering.RenderSystem.GetMonitorWidth +- uid: Voile.Rendering.RenderSystem.GetMonitorHeight* + commentId: Overload:Voile.Rendering.RenderSystem.GetMonitorHeight + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetMonitorHeight_System_Int32_ + name: GetMonitorHeight + nameWithType: RenderSystem.GetMonitorHeight + fullName: Voile.Rendering.RenderSystem.GetMonitorHeight +- uid: Voile.Rendering.RenderSystem.GetCurrentMonitor* + commentId: Overload:Voile.Rendering.RenderSystem.GetCurrentMonitor + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetCurrentMonitor + name: GetCurrentMonitor + nameWithType: RenderSystem.GetCurrentMonitor + fullName: Voile.Rendering.RenderSystem.GetCurrentMonitor +- uid: Voile.Rendering.RenderSystem.WindowShouldClose* + commentId: Overload:Voile.Rendering.RenderSystem.WindowShouldClose + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_WindowShouldClose + name: WindowShouldClose + nameWithType: RenderSystem.WindowShouldClose + fullName: Voile.Rendering.RenderSystem.WindowShouldClose +- uid: Voile.Rendering.RenderSystem.Shutdown* + commentId: Overload:Voile.Rendering.RenderSystem.Shutdown + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Shutdown + name: Shutdown + nameWithType: RenderSystem.Shutdown + fullName: Voile.Rendering.RenderSystem.Shutdown +- uid: Voile.Rendering.RenderSystem.BeginFrame* + commentId: Overload:Voile.Rendering.RenderSystem.BeginFrame + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_BeginFrame + name: BeginFrame + nameWithType: RenderSystem.BeginFrame + fullName: Voile.Rendering.RenderSystem.BeginFrame +- uid: Voile.Rendering.RenderSystem.EndFrame* + commentId: Overload:Voile.Rendering.RenderSystem.EndFrame + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_EndFrame + name: EndFrame + nameWithType: RenderSystem.EndFrame + fullName: Voile.Rendering.RenderSystem.EndFrame +- uid: Voile.Rendering.RenderSystem.BeginCamera2d* + commentId: Overload:Voile.Rendering.RenderSystem.BeginCamera2d + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_BeginCamera2d_System_Numerics_Vector2_System_Numerics_Vector2_System_Single_System_Single_ + name: BeginCamera2d + nameWithType: RenderSystem.BeginCamera2d + fullName: Voile.Rendering.RenderSystem.BeginCamera2d +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: Voile.Rendering.RenderSystem.EndCamera2d* + commentId: Overload:Voile.Rendering.RenderSystem.EndCamera2d + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_EndCamera2d + name: EndCamera2d + nameWithType: RenderSystem.EndCamera2d + fullName: Voile.Rendering.RenderSystem.EndCamera2d +- uid: Voile.Rendering.RenderSystem.ClearBackground* + commentId: Overload:Voile.Rendering.RenderSystem.ClearBackground + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_ClearBackground_Voile_Color_ + name: ClearBackground + nameWithType: RenderSystem.ClearBackground + fullName: Voile.Rendering.RenderSystem.ClearBackground +- uid: Voile.Color + commentId: T:Voile.Color + parent: Voile + href: Voile.Color.html + name: Color + nameWithType: Color + fullName: Voile.Color +- uid: Voile.Rendering.RenderSystem.ResetTransform* + commentId: Overload:Voile.Rendering.RenderSystem.ResetTransform + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_ResetTransform + name: ResetTransform + nameWithType: RenderSystem.ResetTransform + fullName: Voile.Rendering.RenderSystem.ResetTransform +- uid: Voile.Rendering.RenderSystem.SetTransform* + commentId: Overload:Voile.Rendering.RenderSystem.SetTransform + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTransform_System_Numerics_Vector2_System_Numerics_Vector2_System_Single_ + name: SetTransform + nameWithType: RenderSystem.SetTransform + fullName: Voile.Rendering.RenderSystem.SetTransform +- uid: System.Numerics.Matrix4x4 + commentId: T:System.Numerics.Matrix4x4 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.matrix4x4 + name: Matrix4x4 + nameWithType: Matrix4x4 + fullName: System.Numerics.Matrix4x4 +- uid: Voile.Rendering.RenderSystem.DrawCircle* + commentId: Overload:Voile.Rendering.RenderSystem.DrawCircle + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawCircle_System_Single_Voile_Color_ + name: DrawCircle + nameWithType: RenderSystem.DrawCircle + fullName: Voile.Rendering.RenderSystem.DrawCircle +- uid: Voile.Rendering.RenderSystem.DrawRectangle* + commentId: Overload:Voile.Rendering.RenderSystem.DrawRectangle + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawRectangle_System_Numerics_Vector2_Voile_Color_ + name: DrawRectangle + nameWithType: RenderSystem.DrawRectangle + fullName: Voile.Rendering.RenderSystem.DrawRectangle +- uid: Voile.Rendering.RenderSystem.DrawDebugText* + commentId: Overload:Voile.Rendering.RenderSystem.DrawDebugText + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawDebugText_System_String_System_Int32_Voile_Color_ + name: DrawDebugText + nameWithType: RenderSystem.DrawDebugText + fullName: Voile.Rendering.RenderSystem.DrawDebugText +- uid: Voile.Rendering.RenderSystem.DrawSdfText* + commentId: Overload:Voile.Rendering.RenderSystem.DrawSdfText + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawSdfText_System_String_System_Int32_Voile_Color_ + name: DrawSdfText + nameWithType: RenderSystem.DrawSdfText + fullName: Voile.Rendering.RenderSystem.DrawSdfText +- uid: Voile.Rendering.RenderSystem.DrawText* + commentId: Overload:Voile.Rendering.RenderSystem.DrawText + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawText_Voile_Font_System_String_Voile_Color_ + name: DrawText + nameWithType: RenderSystem.DrawText + fullName: Voile.Rendering.RenderSystem.DrawText +- uid: Voile.Font + commentId: T:Voile.Font + parent: Voile + href: Voile.Font.html + name: Font + nameWithType: Font + fullName: Voile.Font +- uid: Voile.Rendering.RenderSystem.DrawTexture* + commentId: Overload:Voile.Rendering.RenderSystem.DrawTexture + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawTexture_Voile_Texture2d_Voile_Color_ + name: DrawTexture + nameWithType: RenderSystem.DrawTexture + fullName: Voile.Rendering.RenderSystem.DrawTexture +- uid: Voile.Texture2d + commentId: T:Voile.Texture2d + parent: Voile + href: Voile.Texture2d.html + name: Texture2d + nameWithType: Texture2d + fullName: Voile.Texture2d diff --git a/Voile/api/Voile.Rendering.RendererSettings.yml b/Voile/api/Voile.Rendering.RendererSettings.yml new file mode 100644 index 0000000..45b2f6f --- /dev/null +++ b/Voile/api/Voile.Rendering.RendererSettings.yml @@ -0,0 +1,533 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Rendering.RendererSettings + commentId: T:Voile.Rendering.RendererSettings + id: RendererSettings + parent: Voile.Rendering + children: + - Voile.Rendering.RendererSettings.#ctor + - Voile.Rendering.RendererSettings.Default + - Voile.Rendering.RendererSettings.Fullscreen + - Voile.Rendering.RendererSettings.Msaa + - Voile.Rendering.RendererSettings.TargetFps + - Voile.Rendering.RendererSettings.UseVSync + - Voile.Rendering.RendererSettings.WindowSettings + langs: + - csharp + - vb + name: RendererSettings + nameWithType: RendererSettings + fullName: Voile.Rendering.RendererSettings + type: Struct + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RendererSettings + path: Source/Rendering/RenderSystem.cs + startLine: 166 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public struct RendererSettings + content.vb: Public Structure RendererSettings + inheritedMembers: + - System.ValueType.Equals(System.Object) + - System.ValueType.GetHashCode + - System.ValueType.ToString + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetType + - System.Object.ReferenceEquals(System.Object,System.Object) +- uid: Voile.Rendering.RendererSettings.Msaa + commentId: F:Voile.Rendering.RendererSettings.Msaa + id: Msaa + parent: Voile.Rendering.RendererSettings + langs: + - csharp + - vb + name: Msaa + nameWithType: RendererSettings.Msaa + fullName: Voile.Rendering.RendererSettings.Msaa + type: Field + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Msaa + path: Source/Rendering/RenderSystem.cs + startLine: 168 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public Msaa Msaa + return: + type: Voile.Rendering.Msaa + content.vb: Public Msaa As Msaa +- uid: Voile.Rendering.RendererSettings.UseVSync + commentId: F:Voile.Rendering.RendererSettings.UseVSync + id: UseVSync + parent: Voile.Rendering.RendererSettings + langs: + - csharp + - vb + name: UseVSync + nameWithType: RendererSettings.UseVSync + fullName: Voile.Rendering.RendererSettings.UseVSync + type: Field + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: UseVSync + path: Source/Rendering/RenderSystem.cs + startLine: 169 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public bool UseVSync + return: + type: System.Boolean + content.vb: Public UseVSync As Boolean +- uid: Voile.Rendering.RendererSettings.Fullscreen + commentId: F:Voile.Rendering.RendererSettings.Fullscreen + id: Fullscreen + parent: Voile.Rendering.RendererSettings + langs: + - csharp + - vb + name: Fullscreen + nameWithType: RendererSettings.Fullscreen + fullName: Voile.Rendering.RendererSettings.Fullscreen + type: Field + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Fullscreen + path: Source/Rendering/RenderSystem.cs + startLine: 170 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public bool Fullscreen + return: + type: System.Boolean + content.vb: Public Fullscreen As Boolean +- uid: Voile.Rendering.RendererSettings.TargetFps + commentId: F:Voile.Rendering.RendererSettings.TargetFps + id: TargetFps + parent: Voile.Rendering.RendererSettings + langs: + - csharp + - vb + name: TargetFps + nameWithType: RendererSettings.TargetFps + fullName: Voile.Rendering.RendererSettings.TargetFps + type: Field + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: TargetFps + path: Source/Rendering/RenderSystem.cs + startLine: 171 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public int TargetFps + return: + type: System.Int32 + content.vb: Public TargetFps As Integer +- uid: Voile.Rendering.RendererSettings.WindowSettings + commentId: F:Voile.Rendering.RendererSettings.WindowSettings + id: WindowSettings + parent: Voile.Rendering.RendererSettings + langs: + - csharp + - vb + name: WindowSettings + nameWithType: RendererSettings.WindowSettings + fullName: Voile.Rendering.RendererSettings.WindowSettings + type: Field + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: WindowSettings + path: Source/Rendering/RenderSystem.cs + startLine: 173 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public WindowSettings WindowSettings + return: + type: Voile.Rendering.WindowSettings + content.vb: Public WindowSettings As WindowSettings +- uid: Voile.Rendering.RendererSettings.#ctor + commentId: M:Voile.Rendering.RendererSettings.#ctor + id: '#ctor' + parent: Voile.Rendering.RendererSettings + langs: + - csharp + - vb + name: RendererSettings() + nameWithType: RendererSettings.RendererSettings() + fullName: Voile.Rendering.RendererSettings.RendererSettings() + type: Constructor + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/Rendering/RenderSystem.cs + startLine: 175 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public RendererSettings() + content.vb: Public Sub New() + overload: Voile.Rendering.RendererSettings.#ctor* + nameWithType.vb: RendererSettings.New() + fullName.vb: Voile.Rendering.RendererSettings.New() + name.vb: New() +- uid: Voile.Rendering.RendererSettings.Default + commentId: P:Voile.Rendering.RendererSettings.Default + id: Default + parent: Voile.Rendering.RendererSettings + langs: + - csharp + - vb + name: Default + nameWithType: RendererSettings.Default + fullName: Voile.Rendering.RendererSettings.Default + type: Property + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Default + path: Source/Rendering/RenderSystem.cs + startLine: 177 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public static RendererSettings Default { get; } + parameters: [] + return: + type: Voile.Rendering.RendererSettings + content.vb: Public Shared ReadOnly Property [Default] As RendererSettings + overload: Voile.Rendering.RendererSettings.Default* +references: +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: System.ValueType.Equals(System.Object) + commentId: M:System.ValueType.Equals(System.Object) + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + name: Equals(object) + nameWithType: ValueType.Equals(object) + fullName: System.ValueType.Equals(object) + nameWithType.vb: ValueType.Equals(Object) + fullName.vb: System.ValueType.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType.GetHashCode + commentId: M:System.ValueType.GetHashCode + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + name: GetHashCode() + nameWithType: ValueType.GetHashCode() + fullName: System.ValueType.GetHashCode() + spec.csharp: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) +- uid: System.ValueType.ToString + commentId: M:System.ValueType.ToString + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + name: ToString() + nameWithType: ValueType.ToString() + fullName: System.ValueType.ToString() + spec.csharp: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType + commentId: T:System.ValueType + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype + name: ValueType + nameWithType: ValueType + fullName: System.ValueType +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Rendering.Msaa + commentId: T:Voile.Rendering.Msaa + parent: Voile.Rendering + href: Voile.Rendering.Msaa.html + name: Msaa + nameWithType: Msaa + fullName: Voile.Rendering.Msaa +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: Voile.Rendering.WindowSettings + commentId: T:Voile.Rendering.WindowSettings + parent: Voile.Rendering + href: Voile.Rendering.WindowSettings.html + name: WindowSettings + nameWithType: WindowSettings + fullName: Voile.Rendering.WindowSettings +- uid: Voile.Rendering.RendererSettings.#ctor* + commentId: Overload:Voile.Rendering.RendererSettings.#ctor + href: Voile.Rendering.RendererSettings.html#Voile_Rendering_RendererSettings__ctor + name: RendererSettings + nameWithType: RendererSettings.RendererSettings + fullName: Voile.Rendering.RendererSettings.RendererSettings + nameWithType.vb: RendererSettings.New + fullName.vb: Voile.Rendering.RendererSettings.New + name.vb: New +- uid: Voile.Rendering.RendererSettings.Default* + commentId: Overload:Voile.Rendering.RendererSettings.Default + href: Voile.Rendering.RendererSettings.html#Voile_Rendering_RendererSettings_Default + name: Default + nameWithType: RendererSettings.Default + fullName: Voile.Rendering.RendererSettings.Default +- uid: Voile.Rendering.RendererSettings + commentId: T:Voile.Rendering.RendererSettings + parent: Voile.Rendering + href: Voile.Rendering.RendererSettings.html + name: RendererSettings + nameWithType: RendererSettings + fullName: Voile.Rendering.RendererSettings diff --git a/Voile/api/Voile.Rendering.Shader.yml b/Voile/api/Voile.Rendering.Shader.yml new file mode 100644 index 0000000..e614992 --- /dev/null +++ b/Voile/api/Voile.Rendering.Shader.yml @@ -0,0 +1,383 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Rendering.Shader + commentId: T:Voile.Rendering.Shader + id: Shader + parent: Voile.Rendering + children: + - Voile.Rendering.Shader.FragmentSource + - Voile.Rendering.Shader.VertexSource + langs: + - csharp + - vb + name: Shader + nameWithType: Shader + fullName: Voile.Rendering.Shader + type: Class + source: + remote: + path: Voile/Source/Rendering/Shader.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Shader + path: Source/Rendering/Shader.cs + startLine: 2 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public abstract class Shader + content.vb: Public MustInherit Class Shader + inheritance: + - System.Object + derivedClasses: + - Voile.Rendering.ColorRectShader + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Rendering.Shader.FragmentSource + commentId: P:Voile.Rendering.Shader.FragmentSource + id: FragmentSource + parent: Voile.Rendering.Shader + langs: + - csharp + - vb + name: FragmentSource + nameWithType: Shader.FragmentSource + fullName: Voile.Rendering.Shader.FragmentSource + type: Property + source: + remote: + path: Voile/Source/Rendering/Shader.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: FragmentSource + path: Source/Rendering/Shader.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public abstract string FragmentSource { get; } + parameters: [] + return: + type: System.String + content.vb: Public MustOverride ReadOnly Property FragmentSource As String + overload: Voile.Rendering.Shader.FragmentSource* +- uid: Voile.Rendering.Shader.VertexSource + commentId: P:Voile.Rendering.Shader.VertexSource + id: VertexSource + parent: Voile.Rendering.Shader + langs: + - csharp + - vb + name: VertexSource + nameWithType: Shader.VertexSource + fullName: Voile.Rendering.Shader.VertexSource + type: Property + source: + remote: + path: Voile/Source/Rendering/Shader.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: VertexSource + path: Source/Rendering/Shader.cs + startLine: 5 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public abstract string VertexSource { get; } + parameters: [] + return: + type: System.String + content.vb: Public MustOverride ReadOnly Property VertexSource As String + overload: Voile.Rendering.Shader.VertexSource* +references: +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Rendering.Shader.FragmentSource* + commentId: Overload:Voile.Rendering.Shader.FragmentSource + href: Voile.Rendering.Shader.html#Voile_Rendering_Shader_FragmentSource + name: FragmentSource + nameWithType: Shader.FragmentSource + fullName: Voile.Rendering.Shader.FragmentSource +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.Rendering.Shader.VertexSource* + commentId: Overload:Voile.Rendering.Shader.VertexSource + href: Voile.Rendering.Shader.html#Voile_Rendering_Shader_VertexSource + name: VertexSource + nameWithType: Shader.VertexSource + fullName: Voile.Rendering.Shader.VertexSource diff --git a/Voile/api/Voile.Rendering.StandardRenderSystem.yml b/Voile/api/Voile.Rendering.StandardRenderSystem.yml new file mode 100644 index 0000000..27f428e --- /dev/null +++ b/Voile/api/Voile.Rendering.StandardRenderSystem.yml @@ -0,0 +1,2723 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Rendering.StandardRenderSystem + commentId: T:Voile.Rendering.StandardRenderSystem + id: StandardRenderSystem + parent: Voile.Rendering + children: + - Voile.Rendering.StandardRenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + - Voile.Rendering.StandardRenderSystem.BeginFrame + - Voile.Rendering.StandardRenderSystem.ClearBackground(Voile.Color) + - Voile.Rendering.StandardRenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + - Voile.Rendering.StandardRenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + - Voile.Rendering.StandardRenderSystem.DrawCircle(System.Single,Voile.Color) + - Voile.Rendering.StandardRenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + - Voile.Rendering.StandardRenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + - Voile.Rendering.StandardRenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + - Voile.Rendering.StandardRenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + - Voile.Rendering.StandardRenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + - Voile.Rendering.StandardRenderSystem.EndCamera2d + - Voile.Rendering.StandardRenderSystem.EndFrame + - Voile.Rendering.StandardRenderSystem.Fullscreen + - Voile.Rendering.StandardRenderSystem.GetCurrentMonitor + - Voile.Rendering.StandardRenderSystem.GetFrameTime + - Voile.Rendering.StandardRenderSystem.GetMonitorHeight(System.Int32) + - Voile.Rendering.StandardRenderSystem.GetMonitorWidth(System.Int32) + - Voile.Rendering.StandardRenderSystem.Initialize(Voile.Rendering.RendererSettings) + - Voile.Rendering.StandardRenderSystem.MonitorSize + - Voile.Rendering.StandardRenderSystem.SetTargetFps(System.Int32) + - Voile.Rendering.StandardRenderSystem.SetTransform(System.Numerics.Matrix4x4) + - Voile.Rendering.StandardRenderSystem.SetWindowTitle(System.String) + - Voile.Rendering.StandardRenderSystem.SetWindowVSync(System.Boolean) + - Voile.Rendering.StandardRenderSystem.ShouldRun + - Voile.Rendering.StandardRenderSystem.Shutdown + - Voile.Rendering.StandardRenderSystem.TargetFps + - Voile.Rendering.StandardRenderSystem.VSync + - Voile.Rendering.StandardRenderSystem.WindowShouldClose + - Voile.Rendering.StandardRenderSystem.WindowSize + - Voile.Rendering.StandardRenderSystem.WindowTitle + langs: + - csharp + - vb + name: StandardRenderSystem + nameWithType: StandardRenderSystem + fullName: Voile.Rendering.StandardRenderSystem + type: Class + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: StandardRenderSystem + path: Source/Rendering/StandardRenderSystem.cs + startLine: 14 + assemblies: + - Voile + namespace: Voile.Rendering + summary: A standard, WebGPU-based renderer. + example: [] + syntax: + content: 'public class StandardRenderSystem : RenderSystem, IStartableSystem, IDisposable' + content.vb: Public Class StandardRenderSystem Inherits RenderSystem Implements IStartableSystem(Of RendererSettings), IDisposable + inheritance: + - System.Object + - Voile.Rendering.RenderSystem + implements: + - Voile.IStartableSystem{Voile.Rendering.RendererSettings} + - System.IDisposable + inheritedMembers: + - Voile.Rendering.RenderSystem.Start(Voile.Rendering.RendererSettings) + - Voile.Rendering.RenderSystem.Dispose + - Voile.Rendering.RenderSystem.FrameTime + - Voile.Rendering.RenderSystem.ResetTransform + - Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2,System.Numerics.Vector2,System.Single) + - Voile.Rendering.RenderSystem.transformPosition + - Voile.Rendering.RenderSystem.transformPivot + - Voile.Rendering.RenderSystem.transformRotation + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Rendering.StandardRenderSystem.WindowSize + commentId: P:Voile.Rendering.StandardRenderSystem.WindowSize + id: WindowSize + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: WindowSize + nameWithType: StandardRenderSystem.WindowSize + fullName: Voile.Rendering.StandardRenderSystem.WindowSize + type: Property + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: WindowSize + path: Source/Rendering/StandardRenderSystem.cs + startLine: 17 + assemblies: + - Voile + namespace: Voile.Rendering + summary: The size of the render window. + example: [] + syntax: + content: public override Vector2 WindowSize { get; set; } + parameters: [] + return: + type: System.Numerics.Vector2 + content.vb: Public Overrides Property WindowSize As Vector2 + overridden: Voile.Rendering.RenderSystem.WindowSize + overload: Voile.Rendering.StandardRenderSystem.WindowSize* +- uid: Voile.Rendering.StandardRenderSystem.ShouldRun + commentId: P:Voile.Rendering.StandardRenderSystem.ShouldRun + id: ShouldRun + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: ShouldRun + nameWithType: StandardRenderSystem.ShouldRun + fullName: Voile.Rendering.StandardRenderSystem.ShouldRun + type: Property + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ShouldRun + path: Source/Rendering/StandardRenderSystem.cs + startLine: 19 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Indicates if the renderer will render the next frame. + example: [] + syntax: + content: public override bool ShouldRun { get; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Overrides ReadOnly Property ShouldRun As Boolean + overridden: Voile.Rendering.RenderSystem.ShouldRun + overload: Voile.Rendering.StandardRenderSystem.ShouldRun* +- uid: Voile.Rendering.StandardRenderSystem.MonitorSize + commentId: P:Voile.Rendering.StandardRenderSystem.MonitorSize + id: MonitorSize + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: MonitorSize + nameWithType: StandardRenderSystem.MonitorSize + fullName: Voile.Rendering.StandardRenderSystem.MonitorSize + type: Property + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: MonitorSize + path: Source/Rendering/StandardRenderSystem.cs + startLine: 21 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Active monitor's size. + example: [] + syntax: + content: public override Vector2 MonitorSize { get; } + parameters: [] + return: + type: System.Numerics.Vector2 + content.vb: Public Overrides ReadOnly Property MonitorSize As Vector2 + overridden: Voile.Rendering.RenderSystem.MonitorSize + overload: Voile.Rendering.StandardRenderSystem.MonitorSize* +- uid: Voile.Rendering.StandardRenderSystem.TargetFps + commentId: P:Voile.Rendering.StandardRenderSystem.TargetFps + id: TargetFps + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: TargetFps + nameWithType: StandardRenderSystem.TargetFps + fullName: Voile.Rendering.StandardRenderSystem.TargetFps + type: Property + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: TargetFps + path: Source/Rendering/StandardRenderSystem.cs + startLine: 23 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Target frames per second for rendering. + example: [] + syntax: + content: public override int TargetFps { get; set; } + parameters: [] + return: + type: System.Int32 + content.vb: Public Overrides Property TargetFps As Integer + overridden: Voile.Rendering.RenderSystem.TargetFps + overload: Voile.Rendering.StandardRenderSystem.TargetFps* +- uid: Voile.Rendering.StandardRenderSystem.VSync + commentId: P:Voile.Rendering.StandardRenderSystem.VSync + id: VSync + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: VSync + nameWithType: StandardRenderSystem.VSync + fullName: Voile.Rendering.StandardRenderSystem.VSync + type: Property + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: VSync + path: Source/Rendering/StandardRenderSystem.cs + startLine: 24 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: public override bool VSync { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Overrides Property VSync As Boolean + overridden: Voile.Rendering.RenderSystem.VSync + overload: Voile.Rendering.StandardRenderSystem.VSync* +- uid: Voile.Rendering.StandardRenderSystem.WindowTitle + commentId: P:Voile.Rendering.StandardRenderSystem.WindowTitle + id: WindowTitle + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: WindowTitle + nameWithType: StandardRenderSystem.WindowTitle + fullName: Voile.Rendering.StandardRenderSystem.WindowTitle + type: Property + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: WindowTitle + path: Source/Rendering/StandardRenderSystem.cs + startLine: 25 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: public override string WindowTitle { get; set; } + parameters: [] + return: + type: System.String + content.vb: Public Overrides Property WindowTitle As String + overridden: Voile.Rendering.RenderSystem.WindowTitle + overload: Voile.Rendering.StandardRenderSystem.WindowTitle* +- uid: Voile.Rendering.StandardRenderSystem.Fullscreen + commentId: P:Voile.Rendering.StandardRenderSystem.Fullscreen + id: Fullscreen + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: Fullscreen + nameWithType: StandardRenderSystem.Fullscreen + fullName: Voile.Rendering.StandardRenderSystem.Fullscreen + type: Property + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Fullscreen + path: Source/Rendering/StandardRenderSystem.cs + startLine: 26 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: public override bool Fullscreen { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Overrides Property Fullscreen As Boolean + overridden: Voile.Rendering.RenderSystem.Fullscreen + overload: Voile.Rendering.StandardRenderSystem.Fullscreen* +- uid: Voile.Rendering.StandardRenderSystem.Initialize(Voile.Rendering.RendererSettings) + commentId: M:Voile.Rendering.StandardRenderSystem.Initialize(Voile.Rendering.RendererSettings) + id: Initialize(Voile.Rendering.RendererSettings) + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: Initialize(RendererSettings) + nameWithType: StandardRenderSystem.Initialize(RendererSettings) + fullName: Voile.Rendering.StandardRenderSystem.Initialize(Voile.Rendering.RendererSettings) + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Initialize + path: Source/Rendering/StandardRenderSystem.cs + startLine: 29 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Initializes internal resources. Should be called before other methods. + example: [] + syntax: + content: public override void Initialize(RendererSettings settings) + parameters: + - id: settings + type: Voile.Rendering.RendererSettings + description: Rendering settings. + content.vb: Public Overrides Sub Initialize(settings As RendererSettings) + overridden: Voile.Rendering.RenderSystem.Initialize(Voile.Rendering.RendererSettings) + overload: Voile.Rendering.StandardRenderSystem.Initialize* +- uid: Voile.Rendering.StandardRenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + commentId: M:Voile.Rendering.StandardRenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + id: CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: CreateAndInitializeWithWindow(RendererSettings) + nameWithType: StandardRenderSystem.CreateAndInitializeWithWindow(RendererSettings) + fullName: Voile.Rendering.StandardRenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CreateAndInitializeWithWindow + path: Source/Rendering/StandardRenderSystem.cs + startLine: 45 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Creates the renderer with an OS window and initializes internal resources. + example: [] + syntax: + content: public override void CreateAndInitializeWithWindow(RendererSettings settings) + parameters: + - id: settings + type: Voile.Rendering.RendererSettings + content.vb: Public Overrides Sub CreateAndInitializeWithWindow(settings As RendererSettings) + overridden: Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + overload: Voile.Rendering.StandardRenderSystem.CreateAndInitializeWithWindow* +- uid: Voile.Rendering.StandardRenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + commentId: M:Voile.Rendering.StandardRenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + id: CreateWindow(Voile.Rendering.WindowSettings) + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: CreateWindow(WindowSettings) + nameWithType: StandardRenderSystem.CreateWindow(WindowSettings) + fullName: Voile.Rendering.StandardRenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CreateWindow + path: Source/Rendering/StandardRenderSystem.cs + startLine: 51 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Creates a window. + example: [] + syntax: + content: public override void CreateWindow(WindowSettings windowSettings) + parameters: + - id: windowSettings + type: Voile.Rendering.WindowSettings + description: Window settings to use to create the window. + content.vb: Public Overrides Sub CreateWindow(windowSettings As WindowSettings) + overridden: Voile.Rendering.RenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + overload: Voile.Rendering.StandardRenderSystem.CreateWindow* +- uid: Voile.Rendering.StandardRenderSystem.BeginFrame + commentId: M:Voile.Rendering.StandardRenderSystem.BeginFrame + id: BeginFrame + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: BeginFrame() + nameWithType: StandardRenderSystem.BeginFrame() + fullName: Voile.Rendering.StandardRenderSystem.BeginFrame() + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: BeginFrame + path: Source/Rendering/StandardRenderSystem.cs + startLine: 65 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Prepares the renderer for drawing the next frame. + example: [] + syntax: + content: public override void BeginFrame() + content.vb: Public Overrides Sub BeginFrame() + overridden: Voile.Rendering.RenderSystem.BeginFrame + overload: Voile.Rendering.StandardRenderSystem.BeginFrame* +- uid: Voile.Rendering.StandardRenderSystem.ClearBackground(Voile.Color) + commentId: M:Voile.Rendering.StandardRenderSystem.ClearBackground(Voile.Color) + id: ClearBackground(Voile.Color) + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: ClearBackground(Color) + nameWithType: StandardRenderSystem.ClearBackground(Color) + fullName: Voile.Rendering.StandardRenderSystem.ClearBackground(Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ClearBackground + path: Source/Rendering/StandardRenderSystem.cs + startLine: 75 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Clears the render canvas and sets a background color. + example: [] + syntax: + content: public override void ClearBackground(Color color) + parameters: + - id: color + type: Voile.Color + description: Background color. + content.vb: Public Overrides Sub ClearBackground(color As Color) + overridden: Voile.Rendering.RenderSystem.ClearBackground(Voile.Color) + overload: Voile.Rendering.StandardRenderSystem.ClearBackground* +- uid: Voile.Rendering.StandardRenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + commentId: M:Voile.Rendering.StandardRenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + id: DrawText(Voile.Font,System.String,Voile.Color) + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: DrawText(Font, string, Color) + nameWithType: StandardRenderSystem.DrawText(Font, string, Color) + fullName: Voile.Rendering.StandardRenderSystem.DrawText(Voile.Font, string, Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DrawText + path: Source/Rendering/StandardRenderSystem.cs + startLine: 80 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: public override void DrawText(Font font, string text, Color color) + parameters: + - id: font + type: Voile.Font + - id: text + type: System.String + - id: color + type: Voile.Color + content.vb: Public Overrides Sub DrawText(font As Font, text As String, color As Color) + overridden: Voile.Rendering.RenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + overload: Voile.Rendering.StandardRenderSystem.DrawText* + nameWithType.vb: StandardRenderSystem.DrawText(Font, String, Color) + fullName.vb: Voile.Rendering.StandardRenderSystem.DrawText(Voile.Font, String, Voile.Color) + name.vb: DrawText(Font, String, Color) +- uid: Voile.Rendering.StandardRenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + commentId: M:Voile.Rendering.StandardRenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + id: DrawSdfText(System.String,System.Int32,Voile.Color) + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: DrawSdfText(string, int, Color) + nameWithType: StandardRenderSystem.DrawSdfText(string, int, Color) + fullName: Voile.Rendering.StandardRenderSystem.DrawSdfText(string, int, Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DrawSdfText + path: Source/Rendering/StandardRenderSystem.cs + startLine: 85 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Draws text using a signed distance field font atlas. + example: [] + syntax: + content: public override void DrawSdfText(string text, int fontSize, Color color) + parameters: + - id: text + type: System.String + description: Text to draw. + - id: fontSize + type: System.Int32 + description: Size of the font. + - id: color + type: Voile.Color + description: Color of the text. + content.vb: Public Overrides Sub DrawSdfText(text As String, fontSize As Integer, color As Color) + overridden: Voile.Rendering.RenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + overload: Voile.Rendering.StandardRenderSystem.DrawSdfText* + nameWithType.vb: StandardRenderSystem.DrawSdfText(String, Integer, Color) + fullName.vb: Voile.Rendering.StandardRenderSystem.DrawSdfText(String, Integer, Voile.Color) + name.vb: DrawSdfText(String, Integer, Color) +- uid: Voile.Rendering.StandardRenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + commentId: M:Voile.Rendering.StandardRenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + id: BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: BeginCamera2d(Vector2, Vector2, float, float) + nameWithType: StandardRenderSystem.BeginCamera2d(Vector2, Vector2, float, float) + fullName: Voile.Rendering.StandardRenderSystem.BeginCamera2d(System.Numerics.Vector2, System.Numerics.Vector2, float, float) + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: BeginCamera2d + path: Source/Rendering/StandardRenderSystem.cs + startLine: 90 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: public override void BeginCamera2d(Vector2 offset, Vector2 target, float rotation, float zoom) + parameters: + - id: offset + type: System.Numerics.Vector2 + - id: target + type: System.Numerics.Vector2 + - id: rotation + type: System.Single + - id: zoom + type: System.Single + content.vb: Public Overrides Sub BeginCamera2d(offset As Vector2, target As Vector2, rotation As Single, zoom As Single) + overridden: Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + overload: Voile.Rendering.StandardRenderSystem.BeginCamera2d* + nameWithType.vb: StandardRenderSystem.BeginCamera2d(Vector2, Vector2, Single, Single) + fullName.vb: Voile.Rendering.StandardRenderSystem.BeginCamera2d(System.Numerics.Vector2, System.Numerics.Vector2, Single, Single) + name.vb: BeginCamera2d(Vector2, Vector2, Single, Single) +- uid: Voile.Rendering.StandardRenderSystem.EndCamera2d + commentId: M:Voile.Rendering.StandardRenderSystem.EndCamera2d + id: EndCamera2d + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: EndCamera2d() + nameWithType: StandardRenderSystem.EndCamera2d() + fullName: Voile.Rendering.StandardRenderSystem.EndCamera2d() + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: EndCamera2d + path: Source/Rendering/StandardRenderSystem.cs + startLine: 95 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: public override void EndCamera2d() + content.vb: Public Overrides Sub EndCamera2d() + overridden: Voile.Rendering.RenderSystem.EndCamera2d + overload: Voile.Rendering.StandardRenderSystem.EndCamera2d* +- uid: Voile.Rendering.StandardRenderSystem.DrawCircle(System.Single,Voile.Color) + commentId: M:Voile.Rendering.StandardRenderSystem.DrawCircle(System.Single,Voile.Color) + id: DrawCircle(System.Single,Voile.Color) + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: DrawCircle(float, Color) + nameWithType: StandardRenderSystem.DrawCircle(float, Color) + fullName: Voile.Rendering.StandardRenderSystem.DrawCircle(float, Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DrawCircle + path: Source/Rendering/StandardRenderSystem.cs + startLine: 101 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Draws a filled circle. + example: [] + syntax: + content: public override void DrawCircle(float radius, Color color) + parameters: + - id: radius + type: System.Single + description: Radius of a circle. + - id: color + type: Voile.Color + description: Fill color. + content.vb: Public Overrides Sub DrawCircle(radius As Single, color As Color) + overridden: Voile.Rendering.RenderSystem.DrawCircle(System.Single,Voile.Color) + overload: Voile.Rendering.StandardRenderSystem.DrawCircle* + nameWithType.vb: StandardRenderSystem.DrawCircle(Single, Color) + fullName.vb: Voile.Rendering.StandardRenderSystem.DrawCircle(Single, Voile.Color) + name.vb: DrawCircle(Single, Color) +- uid: Voile.Rendering.StandardRenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + commentId: M:Voile.Rendering.StandardRenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + id: DrawDebugText(System.String,System.Int32,Voile.Color) + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: DrawDebugText(string, int, Color) + nameWithType: StandardRenderSystem.DrawDebugText(string, int, Color) + fullName: Voile.Rendering.StandardRenderSystem.DrawDebugText(string, int, Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DrawDebugText + path: Source/Rendering/StandardRenderSystem.cs + startLine: 107 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Draws a debug text with a default font. + example: [] + syntax: + content: public override void DrawDebugText(string text, int fontSize, Color color) + parameters: + - id: text + type: System.String + description: '' + - id: fontSize + type: System.Int32 + description: '' + - id: color + type: Voile.Color + description: '' + content.vb: Public Overrides Sub DrawDebugText(text As String, fontSize As Integer, color As Color) + overridden: Voile.Rendering.RenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + overload: Voile.Rendering.StandardRenderSystem.DrawDebugText* + nameWithType.vb: StandardRenderSystem.DrawDebugText(String, Integer, Color) + fullName.vb: Voile.Rendering.StandardRenderSystem.DrawDebugText(String, Integer, Voile.Color) + name.vb: DrawDebugText(String, Integer, Color) +- uid: Voile.Rendering.StandardRenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + commentId: M:Voile.Rendering.StandardRenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + id: DrawRectangle(System.Numerics.Vector2,Voile.Color) + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: DrawRectangle(Vector2, Color) + nameWithType: StandardRenderSystem.DrawRectangle(Vector2, Color) + fullName: Voile.Rendering.StandardRenderSystem.DrawRectangle(System.Numerics.Vector2, Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DrawRectangle + path: Source/Rendering/StandardRenderSystem.cs + startLine: 113 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Draws a filled rectangle. + example: [] + syntax: + content: public override void DrawRectangle(Vector2 size, Color color) + parameters: + - id: size + type: System.Numerics.Vector2 + description: Rectangle size. + - id: color + type: Voile.Color + description: Fill color. + content.vb: Public Overrides Sub DrawRectangle(size As Vector2, color As Color) + overridden: Voile.Rendering.RenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + overload: Voile.Rendering.StandardRenderSystem.DrawRectangle* +- uid: Voile.Rendering.StandardRenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + commentId: M:Voile.Rendering.StandardRenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + id: DrawTexture(Voile.Texture2d,Voile.Color) + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: DrawTexture(Texture2d, Color) + nameWithType: StandardRenderSystem.DrawTexture(Texture2d, Color) + fullName: Voile.Rendering.StandardRenderSystem.DrawTexture(Voile.Texture2d, Voile.Color) + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DrawTexture + path: Source/Rendering/StandardRenderSystem.cs + startLine: 119 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Draws the texture. + example: [] + syntax: + content: public override void DrawTexture(Texture2d texture, Color tint) + parameters: + - id: texture + type: Voile.Texture2d + - id: tint + type: Voile.Color + description: Texture tint. + content.vb: Public Overrides Sub DrawTexture(texture As Texture2d, tint As Color) + overridden: Voile.Rendering.RenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + overload: Voile.Rendering.StandardRenderSystem.DrawTexture* +- uid: Voile.Rendering.StandardRenderSystem.EndFrame + commentId: M:Voile.Rendering.StandardRenderSystem.EndFrame + id: EndFrame + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: EndFrame() + nameWithType: StandardRenderSystem.EndFrame() + fullName: Voile.Rendering.StandardRenderSystem.EndFrame() + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: EndFrame + path: Source/Rendering/StandardRenderSystem.cs + startLine: 125 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Ends rendering of the frame. + example: [] + syntax: + content: public override void EndFrame() + content.vb: Public Overrides Sub EndFrame() + overridden: Voile.Rendering.RenderSystem.EndFrame + overload: Voile.Rendering.StandardRenderSystem.EndFrame* +- uid: Voile.Rendering.StandardRenderSystem.Shutdown + commentId: M:Voile.Rendering.StandardRenderSystem.Shutdown + id: Shutdown + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: Shutdown() + nameWithType: StandardRenderSystem.Shutdown() + fullName: Voile.Rendering.StandardRenderSystem.Shutdown() + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Shutdown + path: Source/Rendering/StandardRenderSystem.cs + startLine: 132 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: protected override void Shutdown() + content.vb: Protected Overrides Sub Shutdown() + overridden: Voile.Rendering.RenderSystem.Shutdown + overload: Voile.Rendering.StandardRenderSystem.Shutdown* +- uid: Voile.Rendering.StandardRenderSystem.GetFrameTime + commentId: M:Voile.Rendering.StandardRenderSystem.GetFrameTime + id: GetFrameTime + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: GetFrameTime() + nameWithType: StandardRenderSystem.GetFrameTime() + fullName: Voile.Rendering.StandardRenderSystem.GetFrameTime() + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetFrameTime + path: Source/Rendering/StandardRenderSystem.cs + startLine: 142 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: protected override double GetFrameTime() + return: + type: System.Double + content.vb: Protected Overrides Function GetFrameTime() As Double + overridden: Voile.Rendering.RenderSystem.GetFrameTime + overload: Voile.Rendering.StandardRenderSystem.GetFrameTime* +- uid: Voile.Rendering.StandardRenderSystem.SetTargetFps(System.Int32) + commentId: M:Voile.Rendering.StandardRenderSystem.SetTargetFps(System.Int32) + id: SetTargetFps(System.Int32) + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: SetTargetFps(int) + nameWithType: StandardRenderSystem.SetTargetFps(int) + fullName: Voile.Rendering.StandardRenderSystem.SetTargetFps(int) + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetTargetFps + path: Source/Rendering/StandardRenderSystem.cs + startLine: 148 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: protected override void SetTargetFps(int fps) + parameters: + - id: fps + type: System.Int32 + content.vb: Protected Overrides Sub SetTargetFps(fps As Integer) + overridden: Voile.Rendering.RenderSystem.SetTargetFps(System.Int32) + overload: Voile.Rendering.StandardRenderSystem.SetTargetFps* + nameWithType.vb: StandardRenderSystem.SetTargetFps(Integer) + fullName.vb: Voile.Rendering.StandardRenderSystem.SetTargetFps(Integer) + name.vb: SetTargetFps(Integer) +- uid: Voile.Rendering.StandardRenderSystem.SetTransform(System.Numerics.Matrix4x4) + commentId: M:Voile.Rendering.StandardRenderSystem.SetTransform(System.Numerics.Matrix4x4) + id: SetTransform(System.Numerics.Matrix4x4) + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: SetTransform(Matrix4x4) + nameWithType: StandardRenderSystem.SetTransform(Matrix4x4) + fullName: Voile.Rendering.StandardRenderSystem.SetTransform(System.Numerics.Matrix4x4) + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetTransform + path: Source/Rendering/StandardRenderSystem.cs + startLine: 154 + assemblies: + - Voile + namespace: Voile.Rendering + summary: Sets the transform for the next draw operation. + example: [] + syntax: + content: public override void SetTransform(Matrix4x4 transform) + parameters: + - id: transform + type: System.Numerics.Matrix4x4 + description: Transform matrix. + content.vb: Public Overrides Sub SetTransform(transform As Matrix4x4) + overridden: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Matrix4x4) + overload: Voile.Rendering.StandardRenderSystem.SetTransform* +- uid: Voile.Rendering.StandardRenderSystem.SetWindowTitle(System.String) + commentId: M:Voile.Rendering.StandardRenderSystem.SetWindowTitle(System.String) + id: SetWindowTitle(System.String) + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: SetWindowTitle(string) + nameWithType: StandardRenderSystem.SetWindowTitle(string) + fullName: Voile.Rendering.StandardRenderSystem.SetWindowTitle(string) + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetWindowTitle + path: Source/Rendering/StandardRenderSystem.cs + startLine: 160 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: protected override void SetWindowTitle(string title) + parameters: + - id: title + type: System.String + content.vb: Protected Overrides Sub SetWindowTitle(title As String) + overridden: Voile.Rendering.RenderSystem.SetWindowTitle(System.String) + overload: Voile.Rendering.StandardRenderSystem.SetWindowTitle* + nameWithType.vb: StandardRenderSystem.SetWindowTitle(String) + fullName.vb: Voile.Rendering.StandardRenderSystem.SetWindowTitle(String) + name.vb: SetWindowTitle(String) +- uid: Voile.Rendering.StandardRenderSystem.SetWindowVSync(System.Boolean) + commentId: M:Voile.Rendering.StandardRenderSystem.SetWindowVSync(System.Boolean) + id: SetWindowVSync(System.Boolean) + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: SetWindowVSync(bool) + nameWithType: StandardRenderSystem.SetWindowVSync(bool) + fullName: Voile.Rendering.StandardRenderSystem.SetWindowVSync(bool) + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SetWindowVSync + path: Source/Rendering/StandardRenderSystem.cs + startLine: 166 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: protected override void SetWindowVSync(bool value) + parameters: + - id: value + type: System.Boolean + content.vb: Protected Overrides Sub SetWindowVSync(value As Boolean) + overridden: Voile.Rendering.RenderSystem.SetWindowVSync(System.Boolean) + overload: Voile.Rendering.StandardRenderSystem.SetWindowVSync* + nameWithType.vb: StandardRenderSystem.SetWindowVSync(Boolean) + fullName.vb: Voile.Rendering.StandardRenderSystem.SetWindowVSync(Boolean) + name.vb: SetWindowVSync(Boolean) +- uid: Voile.Rendering.StandardRenderSystem.WindowShouldClose + commentId: M:Voile.Rendering.StandardRenderSystem.WindowShouldClose + id: WindowShouldClose + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: WindowShouldClose() + nameWithType: StandardRenderSystem.WindowShouldClose() + fullName: Voile.Rendering.StandardRenderSystem.WindowShouldClose() + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: WindowShouldClose + path: Source/Rendering/StandardRenderSystem.cs + startLine: 172 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: protected override bool WindowShouldClose() + return: + type: System.Boolean + content.vb: Protected Overrides Function WindowShouldClose() As Boolean + overridden: Voile.Rendering.RenderSystem.WindowShouldClose + overload: Voile.Rendering.StandardRenderSystem.WindowShouldClose* +- uid: Voile.Rendering.StandardRenderSystem.GetMonitorWidth(System.Int32) + commentId: M:Voile.Rendering.StandardRenderSystem.GetMonitorWidth(System.Int32) + id: GetMonitorWidth(System.Int32) + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: GetMonitorWidth(int) + nameWithType: StandardRenderSystem.GetMonitorWidth(int) + fullName: Voile.Rendering.StandardRenderSystem.GetMonitorWidth(int) + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetMonitorWidth + path: Source/Rendering/StandardRenderSystem.cs + startLine: 174 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: protected override int GetMonitorWidth(int monitorId) + parameters: + - id: monitorId + type: System.Int32 + return: + type: System.Int32 + content.vb: Protected Overrides Function GetMonitorWidth(monitorId As Integer) As Integer + overridden: Voile.Rendering.RenderSystem.GetMonitorWidth(System.Int32) + overload: Voile.Rendering.StandardRenderSystem.GetMonitorWidth* + nameWithType.vb: StandardRenderSystem.GetMonitorWidth(Integer) + fullName.vb: Voile.Rendering.StandardRenderSystem.GetMonitorWidth(Integer) + name.vb: GetMonitorWidth(Integer) +- uid: Voile.Rendering.StandardRenderSystem.GetMonitorHeight(System.Int32) + commentId: M:Voile.Rendering.StandardRenderSystem.GetMonitorHeight(System.Int32) + id: GetMonitorHeight(System.Int32) + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: GetMonitorHeight(int) + nameWithType: StandardRenderSystem.GetMonitorHeight(int) + fullName: Voile.Rendering.StandardRenderSystem.GetMonitorHeight(int) + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetMonitorHeight + path: Source/Rendering/StandardRenderSystem.cs + startLine: 179 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: protected override int GetMonitorHeight(int monitorId) + parameters: + - id: monitorId + type: System.Int32 + return: + type: System.Int32 + content.vb: Protected Overrides Function GetMonitorHeight(monitorId As Integer) As Integer + overridden: Voile.Rendering.RenderSystem.GetMonitorHeight(System.Int32) + overload: Voile.Rendering.StandardRenderSystem.GetMonitorHeight* + nameWithType.vb: StandardRenderSystem.GetMonitorHeight(Integer) + fullName.vb: Voile.Rendering.StandardRenderSystem.GetMonitorHeight(Integer) + name.vb: GetMonitorHeight(Integer) +- uid: Voile.Rendering.StandardRenderSystem.GetCurrentMonitor + commentId: M:Voile.Rendering.StandardRenderSystem.GetCurrentMonitor + id: GetCurrentMonitor + parent: Voile.Rendering.StandardRenderSystem + langs: + - csharp + - vb + name: GetCurrentMonitor() + nameWithType: StandardRenderSystem.GetCurrentMonitor() + fullName: Voile.Rendering.StandardRenderSystem.GetCurrentMonitor() + type: Method + source: + remote: + path: Voile/Source/Rendering/StandardRenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: GetCurrentMonitor + path: Source/Rendering/StandardRenderSystem.cs + startLine: 184 + assemblies: + - Voile + namespace: Voile.Rendering + example: [] + syntax: + content: protected override int GetCurrentMonitor() + return: + type: System.Int32 + content.vb: Protected Overrides Function GetCurrentMonitor() As Integer + overridden: Voile.Rendering.RenderSystem.GetCurrentMonitor + overload: Voile.Rendering.StandardRenderSystem.GetCurrentMonitor* +references: +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.IStartableSystem{Voile.Rendering.RendererSettings} + commentId: T:Voile.IStartableSystem{Voile.Rendering.RendererSettings} + parent: Voile + definition: Voile.IStartableSystem`1 + href: Voile.IStartableSystem-1.html + name: IStartableSystem + nameWithType: IStartableSystem + fullName: Voile.IStartableSystem + nameWithType.vb: IStartableSystem(Of RendererSettings) + fullName.vb: Voile.IStartableSystem(Of Voile.Rendering.RendererSettings) + name.vb: IStartableSystem(Of RendererSettings) + spec.csharp: + - uid: Voile.IStartableSystem`1 + name: IStartableSystem + href: Voile.IStartableSystem-1.html + - name: < + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: '>' + spec.vb: + - uid: Voile.IStartableSystem`1 + name: IStartableSystem + href: Voile.IStartableSystem-1.html + - name: ( + - name: Of + - name: " " + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: ) +- uid: System.IDisposable + commentId: T:System.IDisposable + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable + name: IDisposable + nameWithType: IDisposable + fullName: System.IDisposable +- uid: Voile.Rendering.RenderSystem.Start(Voile.Rendering.RendererSettings) + commentId: M:Voile.Rendering.RenderSystem.Start(Voile.Rendering.RendererSettings) + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Start_Voile_Rendering_RendererSettings_ + name: Start(RendererSettings) + nameWithType: RenderSystem.Start(RendererSettings) + fullName: Voile.Rendering.RenderSystem.Start(Voile.Rendering.RendererSettings) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.Start(Voile.Rendering.RendererSettings) + name: Start + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Start_Voile_Rendering_RendererSettings_ + - name: ( + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.Start(Voile.Rendering.RendererSettings) + name: Start + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Start_Voile_Rendering_RendererSettings_ + - name: ( + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: ) +- uid: Voile.Rendering.RenderSystem.Dispose + commentId: M:Voile.Rendering.RenderSystem.Dispose + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Dispose + name: Dispose() + nameWithType: RenderSystem.Dispose() + fullName: Voile.Rendering.RenderSystem.Dispose() + spec.csharp: + - uid: Voile.Rendering.RenderSystem.Dispose + name: Dispose + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Dispose + - name: ( + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.Dispose + name: Dispose + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Dispose + - name: ( + - name: ) +- uid: Voile.Rendering.RenderSystem.FrameTime + commentId: P:Voile.Rendering.RenderSystem.FrameTime + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_FrameTime + name: FrameTime + nameWithType: RenderSystem.FrameTime + fullName: Voile.Rendering.RenderSystem.FrameTime +- uid: Voile.Rendering.RenderSystem.ResetTransform + commentId: M:Voile.Rendering.RenderSystem.ResetTransform + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_ResetTransform + name: ResetTransform() + nameWithType: RenderSystem.ResetTransform() + fullName: Voile.Rendering.RenderSystem.ResetTransform() + spec.csharp: + - uid: Voile.Rendering.RenderSystem.ResetTransform + name: ResetTransform + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_ResetTransform + - name: ( + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.ResetTransform + name: ResetTransform + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_ResetTransform + - name: ( + - name: ) +- uid: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2,System.Numerics.Vector2,System.Single) + commentId: M:Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2,System.Numerics.Vector2,System.Single) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTransform_System_Numerics_Vector2_System_Numerics_Vector2_System_Single_ + name: SetTransform(Vector2, Vector2, float) + nameWithType: RenderSystem.SetTransform(Vector2, Vector2, float) + fullName: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2, System.Numerics.Vector2, float) + nameWithType.vb: RenderSystem.SetTransform(Vector2, Vector2, Single) + fullName.vb: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2, System.Numerics.Vector2, Single) + name.vb: SetTransform(Vector2, Vector2, Single) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2,System.Numerics.Vector2,System.Single) + name: SetTransform + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTransform_System_Numerics_Vector2_System_Numerics_Vector2_System_Single_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Vector2,System.Numerics.Vector2,System.Single) + name: SetTransform + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTransform_System_Numerics_Vector2_System_Numerics_Vector2_System_Single_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: Voile.Rendering.RenderSystem.transformPosition + commentId: F:Voile.Rendering.RenderSystem.transformPosition + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_transformPosition + name: transformPosition + nameWithType: RenderSystem.transformPosition + fullName: Voile.Rendering.RenderSystem.transformPosition +- uid: Voile.Rendering.RenderSystem.transformPivot + commentId: F:Voile.Rendering.RenderSystem.transformPivot + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_transformPivot + name: transformPivot + nameWithType: RenderSystem.transformPivot + fullName: Voile.Rendering.RenderSystem.transformPivot +- uid: Voile.Rendering.RenderSystem.transformRotation + commentId: F:Voile.Rendering.RenderSystem.transformRotation + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_transformRotation + name: transformRotation + nameWithType: RenderSystem.transformRotation + fullName: Voile.Rendering.RenderSystem.transformRotation +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.IStartableSystem`1 + commentId: T:Voile.IStartableSystem`1 + href: Voile.IStartableSystem-1.html + name: IStartableSystem + nameWithType: IStartableSystem + fullName: Voile.IStartableSystem + nameWithType.vb: IStartableSystem(Of T) + fullName.vb: Voile.IStartableSystem(Of T) + name.vb: IStartableSystem(Of T) + spec.csharp: + - uid: Voile.IStartableSystem`1 + name: IStartableSystem + href: Voile.IStartableSystem-1.html + - name: < + - name: T + - name: '>' + spec.vb: + - uid: Voile.IStartableSystem`1 + name: IStartableSystem + href: Voile.IStartableSystem-1.html + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.Rendering.RenderSystem.WindowSize + commentId: P:Voile.Rendering.RenderSystem.WindowSize + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_WindowSize + name: WindowSize + nameWithType: RenderSystem.WindowSize + fullName: Voile.Rendering.RenderSystem.WindowSize +- uid: Voile.Rendering.StandardRenderSystem.WindowSize* + commentId: Overload:Voile.Rendering.StandardRenderSystem.WindowSize + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_WindowSize + name: WindowSize + nameWithType: StandardRenderSystem.WindowSize + fullName: Voile.Rendering.StandardRenderSystem.WindowSize +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: Voile.Rendering.RenderSystem.ShouldRun + commentId: P:Voile.Rendering.RenderSystem.ShouldRun + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_ShouldRun + name: ShouldRun + nameWithType: RenderSystem.ShouldRun + fullName: Voile.Rendering.RenderSystem.ShouldRun +- uid: Voile.Rendering.StandardRenderSystem.ShouldRun* + commentId: Overload:Voile.Rendering.StandardRenderSystem.ShouldRun + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_ShouldRun + name: ShouldRun + nameWithType: StandardRenderSystem.ShouldRun + fullName: Voile.Rendering.StandardRenderSystem.ShouldRun +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: Voile.Rendering.RenderSystem.MonitorSize + commentId: P:Voile.Rendering.RenderSystem.MonitorSize + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_MonitorSize + name: MonitorSize + nameWithType: RenderSystem.MonitorSize + fullName: Voile.Rendering.RenderSystem.MonitorSize +- uid: Voile.Rendering.StandardRenderSystem.MonitorSize* + commentId: Overload:Voile.Rendering.StandardRenderSystem.MonitorSize + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_MonitorSize + name: MonitorSize + nameWithType: StandardRenderSystem.MonitorSize + fullName: Voile.Rendering.StandardRenderSystem.MonitorSize +- uid: Voile.Rendering.RenderSystem.TargetFps + commentId: P:Voile.Rendering.RenderSystem.TargetFps + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_TargetFps + name: TargetFps + nameWithType: RenderSystem.TargetFps + fullName: Voile.Rendering.RenderSystem.TargetFps +- uid: Voile.Rendering.StandardRenderSystem.TargetFps* + commentId: Overload:Voile.Rendering.StandardRenderSystem.TargetFps + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_TargetFps + name: TargetFps + nameWithType: StandardRenderSystem.TargetFps + fullName: Voile.Rendering.StandardRenderSystem.TargetFps +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: Voile.Rendering.RenderSystem.VSync + commentId: P:Voile.Rendering.RenderSystem.VSync + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_VSync + name: VSync + nameWithType: RenderSystem.VSync + fullName: Voile.Rendering.RenderSystem.VSync +- uid: Voile.Rendering.StandardRenderSystem.VSync* + commentId: Overload:Voile.Rendering.StandardRenderSystem.VSync + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_VSync + name: VSync + nameWithType: StandardRenderSystem.VSync + fullName: Voile.Rendering.StandardRenderSystem.VSync +- uid: Voile.Rendering.RenderSystem.WindowTitle + commentId: P:Voile.Rendering.RenderSystem.WindowTitle + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_WindowTitle + name: WindowTitle + nameWithType: RenderSystem.WindowTitle + fullName: Voile.Rendering.RenderSystem.WindowTitle +- uid: Voile.Rendering.StandardRenderSystem.WindowTitle* + commentId: Overload:Voile.Rendering.StandardRenderSystem.WindowTitle + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_WindowTitle + name: WindowTitle + nameWithType: StandardRenderSystem.WindowTitle + fullName: Voile.Rendering.StandardRenderSystem.WindowTitle +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.Rendering.RenderSystem.Fullscreen + commentId: P:Voile.Rendering.RenderSystem.Fullscreen + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Fullscreen + name: Fullscreen + nameWithType: RenderSystem.Fullscreen + fullName: Voile.Rendering.RenderSystem.Fullscreen +- uid: Voile.Rendering.StandardRenderSystem.Fullscreen* + commentId: Overload:Voile.Rendering.StandardRenderSystem.Fullscreen + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_Fullscreen + name: Fullscreen + nameWithType: StandardRenderSystem.Fullscreen + fullName: Voile.Rendering.StandardRenderSystem.Fullscreen +- uid: Voile.Rendering.RenderSystem.Initialize(Voile.Rendering.RendererSettings) + commentId: M:Voile.Rendering.RenderSystem.Initialize(Voile.Rendering.RendererSettings) + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Initialize_Voile_Rendering_RendererSettings_ + name: Initialize(RendererSettings) + nameWithType: RenderSystem.Initialize(RendererSettings) + fullName: Voile.Rendering.RenderSystem.Initialize(Voile.Rendering.RendererSettings) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.Initialize(Voile.Rendering.RendererSettings) + name: Initialize + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Initialize_Voile_Rendering_RendererSettings_ + - name: ( + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.Initialize(Voile.Rendering.RendererSettings) + name: Initialize + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Initialize_Voile_Rendering_RendererSettings_ + - name: ( + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.Initialize* + commentId: Overload:Voile.Rendering.StandardRenderSystem.Initialize + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_Initialize_Voile_Rendering_RendererSettings_ + name: Initialize + nameWithType: StandardRenderSystem.Initialize + fullName: Voile.Rendering.StandardRenderSystem.Initialize +- uid: Voile.Rendering.RendererSettings + commentId: T:Voile.Rendering.RendererSettings + parent: Voile.Rendering + href: Voile.Rendering.RendererSettings.html + name: RendererSettings + nameWithType: RendererSettings + fullName: Voile.Rendering.RendererSettings +- uid: Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + commentId: M:Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_CreateAndInitializeWithWindow_Voile_Rendering_RendererSettings_ + name: CreateAndInitializeWithWindow(RendererSettings) + nameWithType: RenderSystem.CreateAndInitializeWithWindow(RendererSettings) + fullName: Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + name: CreateAndInitializeWithWindow + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_CreateAndInitializeWithWindow_Voile_Rendering_RendererSettings_ + - name: ( + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.CreateAndInitializeWithWindow(Voile.Rendering.RendererSettings) + name: CreateAndInitializeWithWindow + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_CreateAndInitializeWithWindow_Voile_Rendering_RendererSettings_ + - name: ( + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + href: Voile.Rendering.RendererSettings.html + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.CreateAndInitializeWithWindow* + commentId: Overload:Voile.Rendering.StandardRenderSystem.CreateAndInitializeWithWindow + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_CreateAndInitializeWithWindow_Voile_Rendering_RendererSettings_ + name: CreateAndInitializeWithWindow + nameWithType: StandardRenderSystem.CreateAndInitializeWithWindow + fullName: Voile.Rendering.StandardRenderSystem.CreateAndInitializeWithWindow +- uid: Voile.Rendering.RenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + commentId: M:Voile.Rendering.RenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_CreateWindow_Voile_Rendering_WindowSettings_ + name: CreateWindow(WindowSettings) + nameWithType: RenderSystem.CreateWindow(WindowSettings) + fullName: Voile.Rendering.RenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + name: CreateWindow + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_CreateWindow_Voile_Rendering_WindowSettings_ + - name: ( + - uid: Voile.Rendering.WindowSettings + name: WindowSettings + href: Voile.Rendering.WindowSettings.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.CreateWindow(Voile.Rendering.WindowSettings) + name: CreateWindow + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_CreateWindow_Voile_Rendering_WindowSettings_ + - name: ( + - uid: Voile.Rendering.WindowSettings + name: WindowSettings + href: Voile.Rendering.WindowSettings.html + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.CreateWindow* + commentId: Overload:Voile.Rendering.StandardRenderSystem.CreateWindow + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_CreateWindow_Voile_Rendering_WindowSettings_ + name: CreateWindow + nameWithType: StandardRenderSystem.CreateWindow + fullName: Voile.Rendering.StandardRenderSystem.CreateWindow +- uid: Voile.Rendering.WindowSettings + commentId: T:Voile.Rendering.WindowSettings + parent: Voile.Rendering + href: Voile.Rendering.WindowSettings.html + name: WindowSettings + nameWithType: WindowSettings + fullName: Voile.Rendering.WindowSettings +- uid: Voile.Rendering.RenderSystem.BeginFrame + commentId: M:Voile.Rendering.RenderSystem.BeginFrame + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_BeginFrame + name: BeginFrame() + nameWithType: RenderSystem.BeginFrame() + fullName: Voile.Rendering.RenderSystem.BeginFrame() + spec.csharp: + - uid: Voile.Rendering.RenderSystem.BeginFrame + name: BeginFrame + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_BeginFrame + - name: ( + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.BeginFrame + name: BeginFrame + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_BeginFrame + - name: ( + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.BeginFrame* + commentId: Overload:Voile.Rendering.StandardRenderSystem.BeginFrame + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_BeginFrame + name: BeginFrame + nameWithType: StandardRenderSystem.BeginFrame + fullName: Voile.Rendering.StandardRenderSystem.BeginFrame +- uid: Voile.Rendering.RenderSystem.ClearBackground(Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.ClearBackground(Voile.Color) + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_ClearBackground_Voile_Color_ + name: ClearBackground(Color) + nameWithType: RenderSystem.ClearBackground(Color) + fullName: Voile.Rendering.RenderSystem.ClearBackground(Voile.Color) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.ClearBackground(Voile.Color) + name: ClearBackground + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_ClearBackground_Voile_Color_ + - name: ( + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.ClearBackground(Voile.Color) + name: ClearBackground + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_ClearBackground_Voile_Color_ + - name: ( + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.ClearBackground* + commentId: Overload:Voile.Rendering.StandardRenderSystem.ClearBackground + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_ClearBackground_Voile_Color_ + name: ClearBackground + nameWithType: StandardRenderSystem.ClearBackground + fullName: Voile.Rendering.StandardRenderSystem.ClearBackground +- uid: Voile.Color + commentId: T:Voile.Color + parent: Voile + href: Voile.Color.html + name: Color + nameWithType: Color + fullName: Voile.Color +- uid: Voile.Rendering.RenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawText_Voile_Font_System_String_Voile_Color_ + name: DrawText(Font, string, Color) + nameWithType: RenderSystem.DrawText(Font, string, Color) + fullName: Voile.Rendering.RenderSystem.DrawText(Voile.Font, string, Voile.Color) + nameWithType.vb: RenderSystem.DrawText(Font, String, Color) + fullName.vb: Voile.Rendering.RenderSystem.DrawText(Voile.Font, String, Voile.Color) + name.vb: DrawText(Font, String, Color) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + name: DrawText + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawText_Voile_Font_System_String_Voile_Color_ + - name: ( + - uid: Voile.Font + name: Font + href: Voile.Font.html + - name: ',' + - name: " " + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.DrawText(Voile.Font,System.String,Voile.Color) + name: DrawText + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawText_Voile_Font_System_String_Voile_Color_ + - name: ( + - uid: Voile.Font + name: Font + href: Voile.Font.html + - name: ',' + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.DrawText* + commentId: Overload:Voile.Rendering.StandardRenderSystem.DrawText + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_DrawText_Voile_Font_System_String_Voile_Color_ + name: DrawText + nameWithType: StandardRenderSystem.DrawText + fullName: Voile.Rendering.StandardRenderSystem.DrawText +- uid: Voile.Font + commentId: T:Voile.Font + parent: Voile + href: Voile.Font.html + name: Font + nameWithType: Font + fullName: Voile.Font +- uid: Voile.Rendering.RenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawSdfText_System_String_System_Int32_Voile_Color_ + name: DrawSdfText(string, int, Color) + nameWithType: RenderSystem.DrawSdfText(string, int, Color) + fullName: Voile.Rendering.RenderSystem.DrawSdfText(string, int, Voile.Color) + nameWithType.vb: RenderSystem.DrawSdfText(String, Integer, Color) + fullName.vb: Voile.Rendering.RenderSystem.DrawSdfText(String, Integer, Voile.Color) + name.vb: DrawSdfText(String, Integer, Color) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + name: DrawSdfText + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawSdfText_System_String_System_Int32_Voile_Color_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.DrawSdfText(System.String,System.Int32,Voile.Color) + name: DrawSdfText + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawSdfText_System_String_System_Int32_Voile_Color_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.DrawSdfText* + commentId: Overload:Voile.Rendering.StandardRenderSystem.DrawSdfText + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_DrawSdfText_System_String_System_Int32_Voile_Color_ + name: DrawSdfText + nameWithType: StandardRenderSystem.DrawSdfText + fullName: Voile.Rendering.StandardRenderSystem.DrawSdfText +- uid: Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + commentId: M:Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_BeginCamera2d_System_Numerics_Vector2_System_Numerics_Vector2_System_Single_System_Single_ + name: BeginCamera2d(Vector2, Vector2, float, float) + nameWithType: RenderSystem.BeginCamera2d(Vector2, Vector2, float, float) + fullName: Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2, System.Numerics.Vector2, float, float) + nameWithType.vb: RenderSystem.BeginCamera2d(Vector2, Vector2, Single, Single) + fullName.vb: Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2, System.Numerics.Vector2, Single, Single) + name.vb: BeginCamera2d(Vector2, Vector2, Single, Single) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + name: BeginCamera2d + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_BeginCamera2d_System_Numerics_Vector2_System_Numerics_Vector2_System_Single_System_Single_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.BeginCamera2d(System.Numerics.Vector2,System.Numerics.Vector2,System.Single,System.Single) + name: BeginCamera2d + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_BeginCamera2d_System_Numerics_Vector2_System_Numerics_Vector2_System_Single_System_Single_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.BeginCamera2d* + commentId: Overload:Voile.Rendering.StandardRenderSystem.BeginCamera2d + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_BeginCamera2d_System_Numerics_Vector2_System_Numerics_Vector2_System_Single_System_Single_ + name: BeginCamera2d + nameWithType: StandardRenderSystem.BeginCamera2d + fullName: Voile.Rendering.StandardRenderSystem.BeginCamera2d +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: Voile.Rendering.RenderSystem.EndCamera2d + commentId: M:Voile.Rendering.RenderSystem.EndCamera2d + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_EndCamera2d + name: EndCamera2d() + nameWithType: RenderSystem.EndCamera2d() + fullName: Voile.Rendering.RenderSystem.EndCamera2d() + spec.csharp: + - uid: Voile.Rendering.RenderSystem.EndCamera2d + name: EndCamera2d + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_EndCamera2d + - name: ( + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.EndCamera2d + name: EndCamera2d + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_EndCamera2d + - name: ( + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.EndCamera2d* + commentId: Overload:Voile.Rendering.StandardRenderSystem.EndCamera2d + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_EndCamera2d + name: EndCamera2d + nameWithType: StandardRenderSystem.EndCamera2d + fullName: Voile.Rendering.StandardRenderSystem.EndCamera2d +- uid: Voile.Rendering.RenderSystem.DrawCircle(System.Single,Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.DrawCircle(System.Single,Voile.Color) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawCircle_System_Single_Voile_Color_ + name: DrawCircle(float, Color) + nameWithType: RenderSystem.DrawCircle(float, Color) + fullName: Voile.Rendering.RenderSystem.DrawCircle(float, Voile.Color) + nameWithType.vb: RenderSystem.DrawCircle(Single, Color) + fullName.vb: Voile.Rendering.RenderSystem.DrawCircle(Single, Voile.Color) + name.vb: DrawCircle(Single, Color) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.DrawCircle(System.Single,Voile.Color) + name: DrawCircle + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawCircle_System_Single_Voile_Color_ + - name: ( + - uid: System.Single + name: float + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.DrawCircle(System.Single,Voile.Color) + name: DrawCircle + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawCircle_System_Single_Voile_Color_ + - name: ( + - uid: System.Single + name: Single + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.DrawCircle* + commentId: Overload:Voile.Rendering.StandardRenderSystem.DrawCircle + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_DrawCircle_System_Single_Voile_Color_ + name: DrawCircle + nameWithType: StandardRenderSystem.DrawCircle + fullName: Voile.Rendering.StandardRenderSystem.DrawCircle +- uid: Voile.Rendering.RenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawDebugText_System_String_System_Int32_Voile_Color_ + name: DrawDebugText(string, int, Color) + nameWithType: RenderSystem.DrawDebugText(string, int, Color) + fullName: Voile.Rendering.RenderSystem.DrawDebugText(string, int, Voile.Color) + nameWithType.vb: RenderSystem.DrawDebugText(String, Integer, Color) + fullName.vb: Voile.Rendering.RenderSystem.DrawDebugText(String, Integer, Voile.Color) + name.vb: DrawDebugText(String, Integer, Color) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + name: DrawDebugText + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawDebugText_System_String_System_Int32_Voile_Color_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.DrawDebugText(System.String,System.Int32,Voile.Color) + name: DrawDebugText + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawDebugText_System_String_System_Int32_Voile_Color_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.DrawDebugText* + commentId: Overload:Voile.Rendering.StandardRenderSystem.DrawDebugText + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_DrawDebugText_System_String_System_Int32_Voile_Color_ + name: DrawDebugText + nameWithType: StandardRenderSystem.DrawDebugText + fullName: Voile.Rendering.StandardRenderSystem.DrawDebugText +- uid: Voile.Rendering.RenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawRectangle_System_Numerics_Vector2_Voile_Color_ + name: DrawRectangle(Vector2, Color) + nameWithType: RenderSystem.DrawRectangle(Vector2, Color) + fullName: Voile.Rendering.RenderSystem.DrawRectangle(System.Numerics.Vector2, Voile.Color) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + name: DrawRectangle + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawRectangle_System_Numerics_Vector2_Voile_Color_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.DrawRectangle(System.Numerics.Vector2,Voile.Color) + name: DrawRectangle + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawRectangle_System_Numerics_Vector2_Voile_Color_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.DrawRectangle* + commentId: Overload:Voile.Rendering.StandardRenderSystem.DrawRectangle + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_DrawRectangle_System_Numerics_Vector2_Voile_Color_ + name: DrawRectangle + nameWithType: StandardRenderSystem.DrawRectangle + fullName: Voile.Rendering.StandardRenderSystem.DrawRectangle +- uid: Voile.Rendering.RenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + commentId: M:Voile.Rendering.RenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawTexture_Voile_Texture2d_Voile_Color_ + name: DrawTexture(Texture2d, Color) + nameWithType: RenderSystem.DrawTexture(Texture2d, Color) + fullName: Voile.Rendering.RenderSystem.DrawTexture(Voile.Texture2d, Voile.Color) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + name: DrawTexture + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawTexture_Voile_Texture2d_Voile_Color_ + - name: ( + - uid: Voile.Texture2d + name: Texture2d + href: Voile.Texture2d.html + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.DrawTexture(Voile.Texture2d,Voile.Color) + name: DrawTexture + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_DrawTexture_Voile_Texture2d_Voile_Color_ + - name: ( + - uid: Voile.Texture2d + name: Texture2d + href: Voile.Texture2d.html + - name: ',' + - name: " " + - uid: Voile.Color + name: Color + href: Voile.Color.html + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.DrawTexture* + commentId: Overload:Voile.Rendering.StandardRenderSystem.DrawTexture + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_DrawTexture_Voile_Texture2d_Voile_Color_ + name: DrawTexture + nameWithType: StandardRenderSystem.DrawTexture + fullName: Voile.Rendering.StandardRenderSystem.DrawTexture +- uid: Voile.Texture2d + commentId: T:Voile.Texture2d + parent: Voile + href: Voile.Texture2d.html + name: Texture2d + nameWithType: Texture2d + fullName: Voile.Texture2d +- uid: Voile.Rendering.RenderSystem.EndFrame + commentId: M:Voile.Rendering.RenderSystem.EndFrame + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_EndFrame + name: EndFrame() + nameWithType: RenderSystem.EndFrame() + fullName: Voile.Rendering.RenderSystem.EndFrame() + spec.csharp: + - uid: Voile.Rendering.RenderSystem.EndFrame + name: EndFrame + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_EndFrame + - name: ( + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.EndFrame + name: EndFrame + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_EndFrame + - name: ( + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.EndFrame* + commentId: Overload:Voile.Rendering.StandardRenderSystem.EndFrame + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_EndFrame + name: EndFrame + nameWithType: StandardRenderSystem.EndFrame + fullName: Voile.Rendering.StandardRenderSystem.EndFrame +- uid: Voile.Rendering.RenderSystem.Shutdown + commentId: M:Voile.Rendering.RenderSystem.Shutdown + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Shutdown + name: Shutdown() + nameWithType: RenderSystem.Shutdown() + fullName: Voile.Rendering.RenderSystem.Shutdown() + spec.csharp: + - uid: Voile.Rendering.RenderSystem.Shutdown + name: Shutdown + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Shutdown + - name: ( + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.Shutdown + name: Shutdown + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_Shutdown + - name: ( + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.Shutdown* + commentId: Overload:Voile.Rendering.StandardRenderSystem.Shutdown + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_Shutdown + name: Shutdown + nameWithType: StandardRenderSystem.Shutdown + fullName: Voile.Rendering.StandardRenderSystem.Shutdown +- uid: Voile.Rendering.RenderSystem.GetFrameTime + commentId: M:Voile.Rendering.RenderSystem.GetFrameTime + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetFrameTime + name: GetFrameTime() + nameWithType: RenderSystem.GetFrameTime() + fullName: Voile.Rendering.RenderSystem.GetFrameTime() + spec.csharp: + - uid: Voile.Rendering.RenderSystem.GetFrameTime + name: GetFrameTime + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetFrameTime + - name: ( + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.GetFrameTime + name: GetFrameTime + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetFrameTime + - name: ( + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.GetFrameTime* + commentId: Overload:Voile.Rendering.StandardRenderSystem.GetFrameTime + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_GetFrameTime + name: GetFrameTime + nameWithType: StandardRenderSystem.GetFrameTime + fullName: Voile.Rendering.StandardRenderSystem.GetFrameTime +- uid: System.Double + commentId: T:System.Double + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + name: double + nameWithType: double + fullName: double + nameWithType.vb: Double + fullName.vb: Double + name.vb: Double +- uid: Voile.Rendering.RenderSystem.SetTargetFps(System.Int32) + commentId: M:Voile.Rendering.RenderSystem.SetTargetFps(System.Int32) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTargetFps_System_Int32_ + name: SetTargetFps(int) + nameWithType: RenderSystem.SetTargetFps(int) + fullName: Voile.Rendering.RenderSystem.SetTargetFps(int) + nameWithType.vb: RenderSystem.SetTargetFps(Integer) + fullName.vb: Voile.Rendering.RenderSystem.SetTargetFps(Integer) + name.vb: SetTargetFps(Integer) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.SetTargetFps(System.Int32) + name: SetTargetFps + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTargetFps_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.SetTargetFps(System.Int32) + name: SetTargetFps + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTargetFps_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.SetTargetFps* + commentId: Overload:Voile.Rendering.StandardRenderSystem.SetTargetFps + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_SetTargetFps_System_Int32_ + name: SetTargetFps + nameWithType: StandardRenderSystem.SetTargetFps + fullName: Voile.Rendering.StandardRenderSystem.SetTargetFps +- uid: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Matrix4x4) + commentId: M:Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Matrix4x4) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTransform_System_Numerics_Matrix4x4_ + name: SetTransform(Matrix4x4) + nameWithType: RenderSystem.SetTransform(Matrix4x4) + fullName: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Matrix4x4) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Matrix4x4) + name: SetTransform + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTransform_System_Numerics_Matrix4x4_ + - name: ( + - uid: System.Numerics.Matrix4x4 + name: Matrix4x4 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.matrix4x4 + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.SetTransform(System.Numerics.Matrix4x4) + name: SetTransform + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetTransform_System_Numerics_Matrix4x4_ + - name: ( + - uid: System.Numerics.Matrix4x4 + name: Matrix4x4 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.matrix4x4 + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.SetTransform* + commentId: Overload:Voile.Rendering.StandardRenderSystem.SetTransform + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_SetTransform_System_Numerics_Matrix4x4_ + name: SetTransform + nameWithType: StandardRenderSystem.SetTransform + fullName: Voile.Rendering.StandardRenderSystem.SetTransform +- uid: System.Numerics.Matrix4x4 + commentId: T:System.Numerics.Matrix4x4 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.matrix4x4 + name: Matrix4x4 + nameWithType: Matrix4x4 + fullName: System.Numerics.Matrix4x4 +- uid: Voile.Rendering.RenderSystem.SetWindowTitle(System.String) + commentId: M:Voile.Rendering.RenderSystem.SetWindowTitle(System.String) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetWindowTitle_System_String_ + name: SetWindowTitle(string) + nameWithType: RenderSystem.SetWindowTitle(string) + fullName: Voile.Rendering.RenderSystem.SetWindowTitle(string) + nameWithType.vb: RenderSystem.SetWindowTitle(String) + fullName.vb: Voile.Rendering.RenderSystem.SetWindowTitle(String) + name.vb: SetWindowTitle(String) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.SetWindowTitle(System.String) + name: SetWindowTitle + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetWindowTitle_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.SetWindowTitle(System.String) + name: SetWindowTitle + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetWindowTitle_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.SetWindowTitle* + commentId: Overload:Voile.Rendering.StandardRenderSystem.SetWindowTitle + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_SetWindowTitle_System_String_ + name: SetWindowTitle + nameWithType: StandardRenderSystem.SetWindowTitle + fullName: Voile.Rendering.StandardRenderSystem.SetWindowTitle +- uid: Voile.Rendering.RenderSystem.SetWindowVSync(System.Boolean) + commentId: M:Voile.Rendering.RenderSystem.SetWindowVSync(System.Boolean) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetWindowVSync_System_Boolean_ + name: SetWindowVSync(bool) + nameWithType: RenderSystem.SetWindowVSync(bool) + fullName: Voile.Rendering.RenderSystem.SetWindowVSync(bool) + nameWithType.vb: RenderSystem.SetWindowVSync(Boolean) + fullName.vb: Voile.Rendering.RenderSystem.SetWindowVSync(Boolean) + name.vb: SetWindowVSync(Boolean) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.SetWindowVSync(System.Boolean) + name: SetWindowVSync + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetWindowVSync_System_Boolean_ + - name: ( + - uid: System.Boolean + name: bool + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.SetWindowVSync(System.Boolean) + name: SetWindowVSync + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_SetWindowVSync_System_Boolean_ + - name: ( + - uid: System.Boolean + name: Boolean + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.SetWindowVSync* + commentId: Overload:Voile.Rendering.StandardRenderSystem.SetWindowVSync + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_SetWindowVSync_System_Boolean_ + name: SetWindowVSync + nameWithType: StandardRenderSystem.SetWindowVSync + fullName: Voile.Rendering.StandardRenderSystem.SetWindowVSync +- uid: Voile.Rendering.RenderSystem.WindowShouldClose + commentId: M:Voile.Rendering.RenderSystem.WindowShouldClose + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_WindowShouldClose + name: WindowShouldClose() + nameWithType: RenderSystem.WindowShouldClose() + fullName: Voile.Rendering.RenderSystem.WindowShouldClose() + spec.csharp: + - uid: Voile.Rendering.RenderSystem.WindowShouldClose + name: WindowShouldClose + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_WindowShouldClose + - name: ( + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.WindowShouldClose + name: WindowShouldClose + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_WindowShouldClose + - name: ( + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.WindowShouldClose* + commentId: Overload:Voile.Rendering.StandardRenderSystem.WindowShouldClose + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_WindowShouldClose + name: WindowShouldClose + nameWithType: StandardRenderSystem.WindowShouldClose + fullName: Voile.Rendering.StandardRenderSystem.WindowShouldClose +- uid: Voile.Rendering.RenderSystem.GetMonitorWidth(System.Int32) + commentId: M:Voile.Rendering.RenderSystem.GetMonitorWidth(System.Int32) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetMonitorWidth_System_Int32_ + name: GetMonitorWidth(int) + nameWithType: RenderSystem.GetMonitorWidth(int) + fullName: Voile.Rendering.RenderSystem.GetMonitorWidth(int) + nameWithType.vb: RenderSystem.GetMonitorWidth(Integer) + fullName.vb: Voile.Rendering.RenderSystem.GetMonitorWidth(Integer) + name.vb: GetMonitorWidth(Integer) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.GetMonitorWidth(System.Int32) + name: GetMonitorWidth + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetMonitorWidth_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.GetMonitorWidth(System.Int32) + name: GetMonitorWidth + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetMonitorWidth_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.GetMonitorWidth* + commentId: Overload:Voile.Rendering.StandardRenderSystem.GetMonitorWidth + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_GetMonitorWidth_System_Int32_ + name: GetMonitorWidth + nameWithType: StandardRenderSystem.GetMonitorWidth + fullName: Voile.Rendering.StandardRenderSystem.GetMonitorWidth +- uid: Voile.Rendering.RenderSystem.GetMonitorHeight(System.Int32) + commentId: M:Voile.Rendering.RenderSystem.GetMonitorHeight(System.Int32) + parent: Voile.Rendering.RenderSystem + isExternal: true + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetMonitorHeight_System_Int32_ + name: GetMonitorHeight(int) + nameWithType: RenderSystem.GetMonitorHeight(int) + fullName: Voile.Rendering.RenderSystem.GetMonitorHeight(int) + nameWithType.vb: RenderSystem.GetMonitorHeight(Integer) + fullName.vb: Voile.Rendering.RenderSystem.GetMonitorHeight(Integer) + name.vb: GetMonitorHeight(Integer) + spec.csharp: + - uid: Voile.Rendering.RenderSystem.GetMonitorHeight(System.Int32) + name: GetMonitorHeight + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetMonitorHeight_System_Int32_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.GetMonitorHeight(System.Int32) + name: GetMonitorHeight + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetMonitorHeight_System_Int32_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.GetMonitorHeight* + commentId: Overload:Voile.Rendering.StandardRenderSystem.GetMonitorHeight + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_GetMonitorHeight_System_Int32_ + name: GetMonitorHeight + nameWithType: StandardRenderSystem.GetMonitorHeight + fullName: Voile.Rendering.StandardRenderSystem.GetMonitorHeight +- uid: Voile.Rendering.RenderSystem.GetCurrentMonitor + commentId: M:Voile.Rendering.RenderSystem.GetCurrentMonitor + parent: Voile.Rendering.RenderSystem + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetCurrentMonitor + name: GetCurrentMonitor() + nameWithType: RenderSystem.GetCurrentMonitor() + fullName: Voile.Rendering.RenderSystem.GetCurrentMonitor() + spec.csharp: + - uid: Voile.Rendering.RenderSystem.GetCurrentMonitor + name: GetCurrentMonitor + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetCurrentMonitor + - name: ( + - name: ) + spec.vb: + - uid: Voile.Rendering.RenderSystem.GetCurrentMonitor + name: GetCurrentMonitor + href: Voile.Rendering.RenderSystem.html#Voile_Rendering_RenderSystem_GetCurrentMonitor + - name: ( + - name: ) +- uid: Voile.Rendering.StandardRenderSystem.GetCurrentMonitor* + commentId: Overload:Voile.Rendering.StandardRenderSystem.GetCurrentMonitor + href: Voile.Rendering.StandardRenderSystem.html#Voile_Rendering_StandardRenderSystem_GetCurrentMonitor + name: GetCurrentMonitor + nameWithType: StandardRenderSystem.GetCurrentMonitor + fullName: Voile.Rendering.StandardRenderSystem.GetCurrentMonitor diff --git a/Voile/api/Voile.Rendering.UnlitMaterial.yml b/Voile/api/Voile.Rendering.UnlitMaterial.yml new file mode 100644 index 0000000..7d7d425 --- /dev/null +++ b/Voile/api/Voile.Rendering.UnlitMaterial.yml @@ -0,0 +1,316 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Rendering.UnlitMaterial + commentId: T:Voile.Rendering.UnlitMaterial + id: UnlitMaterial + parent: Voile.Rendering + children: [] + langs: + - csharp + - vb + name: UnlitMaterial + nameWithType: UnlitMaterial + fullName: Voile.Rendering.UnlitMaterial + type: Class + source: + remote: + path: Voile/Source/Rendering/UnlitMaterial.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: UnlitMaterial + path: Source/Rendering/UnlitMaterial.cs + startLine: 5 + assemblies: + - Voile + namespace: Voile.Rendering + summary: A default material for unlit objects. + example: [] + syntax: + content: 'public class UnlitMaterial : Material' + content.vb: Public Class UnlitMaterial Inherits Material + inheritance: + - System.Object + - Voile.Rendering.Material + inheritedMembers: + - Voile.Rendering.Material.Unlit + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +references: +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.Rendering.Material + commentId: T:Voile.Rendering.Material + parent: Voile.Rendering + href: Voile.Rendering.Material.html + name: Material + nameWithType: Material + fullName: Voile.Rendering.Material +- uid: Voile.Rendering.Material.Unlit + commentId: P:Voile.Rendering.Material.Unlit + parent: Voile.Rendering.Material + href: Voile.Rendering.Material.html#Voile_Rendering_Material_Unlit + name: Unlit + nameWithType: Material.Unlit + fullName: Voile.Rendering.Material.Unlit +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System diff --git a/Voile/api/Voile.Rendering.WindowSettings.yml b/Voile/api/Voile.Rendering.WindowSettings.yml new file mode 100644 index 0000000..37fdf1d --- /dev/null +++ b/Voile/api/Voile.Rendering.WindowSettings.yml @@ -0,0 +1,511 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Rendering.WindowSettings + commentId: T:Voile.Rendering.WindowSettings + id: WindowSettings + parent: Voile.Rendering + children: + - Voile.Rendering.WindowSettings.#ctor(System.String,System.Numerics.Vector2) + - Voile.Rendering.WindowSettings.Default + - Voile.Rendering.WindowSettings.Resizable + - Voile.Rendering.WindowSettings.Size + - Voile.Rendering.WindowSettings.Title + langs: + - csharp + - vb + name: WindowSettings + nameWithType: WindowSettings + fullName: Voile.Rendering.WindowSettings + type: Struct + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: WindowSettings + path: Source/Rendering/RenderSystem.cs + startLine: 185 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public struct WindowSettings + content.vb: Public Structure WindowSettings + inheritedMembers: + - System.ValueType.Equals(System.Object) + - System.ValueType.GetHashCode + - System.ValueType.ToString + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetType + - System.Object.ReferenceEquals(System.Object,System.Object) +- uid: Voile.Rendering.WindowSettings.Title + commentId: F:Voile.Rendering.WindowSettings.Title + id: Title + parent: Voile.Rendering.WindowSettings + langs: + - csharp + - vb + name: Title + nameWithType: WindowSettings.Title + fullName: Voile.Rendering.WindowSettings.Title + type: Field + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Title + path: Source/Rendering/RenderSystem.cs + startLine: 187 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public string Title + return: + type: System.String + content.vb: Public Title As String +- uid: Voile.Rendering.WindowSettings.Size + commentId: F:Voile.Rendering.WindowSettings.Size + id: Size + parent: Voile.Rendering.WindowSettings + langs: + - csharp + - vb + name: Size + nameWithType: WindowSettings.Size + fullName: Voile.Rendering.WindowSettings.Size + type: Field + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Size + path: Source/Rendering/RenderSystem.cs + startLine: 188 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public Vector2 Size + return: + type: System.Numerics.Vector2 + content.vb: Public Size As Vector2 +- uid: Voile.Rendering.WindowSettings.Resizable + commentId: P:Voile.Rendering.WindowSettings.Resizable + id: Resizable + parent: Voile.Rendering.WindowSettings + langs: + - csharp + - vb + name: Resizable + nameWithType: WindowSettings.Resizable + fullName: Voile.Rendering.WindowSettings.Resizable + type: Property + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Resizable + path: Source/Rendering/RenderSystem.cs + startLine: 189 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public bool Resizable { readonly get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property Resizable As Boolean + overload: Voile.Rendering.WindowSettings.Resizable* +- uid: Voile.Rendering.WindowSettings.#ctor(System.String,System.Numerics.Vector2) + commentId: M:Voile.Rendering.WindowSettings.#ctor(System.String,System.Numerics.Vector2) + id: '#ctor(System.String,System.Numerics.Vector2)' + parent: Voile.Rendering.WindowSettings + langs: + - csharp + - vb + name: WindowSettings(string, Vector2) + nameWithType: WindowSettings.WindowSettings(string, Vector2) + fullName: Voile.Rendering.WindowSettings.WindowSettings(string, System.Numerics.Vector2) + type: Constructor + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/Rendering/RenderSystem.cs + startLine: 191 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public WindowSettings(string title, Vector2 size) + parameters: + - id: title + type: System.String + - id: size + type: System.Numerics.Vector2 + content.vb: Public Sub New(title As String, size As Vector2) + overload: Voile.Rendering.WindowSettings.#ctor* + nameWithType.vb: WindowSettings.New(String, Vector2) + fullName.vb: Voile.Rendering.WindowSettings.New(String, System.Numerics.Vector2) + name.vb: New(String, Vector2) +- uid: Voile.Rendering.WindowSettings.Default + commentId: P:Voile.Rendering.WindowSettings.Default + id: Default + parent: Voile.Rendering.WindowSettings + langs: + - csharp + - vb + name: Default + nameWithType: WindowSettings.Default + fullName: Voile.Rendering.WindowSettings.Default + type: Property + source: + remote: + path: Voile/Source/Rendering/RenderSystem.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Default + path: Source/Rendering/RenderSystem.cs + startLine: 197 + assemblies: + - Voile + namespace: Voile.Rendering + syntax: + content: public static WindowSettings Default { get; } + parameters: [] + return: + type: Voile.Rendering.WindowSettings + content.vb: Public Shared ReadOnly Property [Default] As WindowSettings + overload: Voile.Rendering.WindowSettings.Default* +references: +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: System.ValueType.Equals(System.Object) + commentId: M:System.ValueType.Equals(System.Object) + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + name: Equals(object) + nameWithType: ValueType.Equals(object) + fullName: System.ValueType.Equals(object) + nameWithType.vb: ValueType.Equals(Object) + fullName.vb: System.ValueType.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType.GetHashCode + commentId: M:System.ValueType.GetHashCode + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + name: GetHashCode() + nameWithType: ValueType.GetHashCode() + fullName: System.ValueType.GetHashCode() + spec.csharp: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) +- uid: System.ValueType.ToString + commentId: M:System.ValueType.ToString + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + name: ToString() + nameWithType: ValueType.ToString() + fullName: System.ValueType.ToString() + spec.csharp: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType + commentId: T:System.ValueType + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype + name: ValueType + nameWithType: ValueType + fullName: System.ValueType +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: Voile.Rendering.WindowSettings.Resizable* + commentId: Overload:Voile.Rendering.WindowSettings.Resizable + href: Voile.Rendering.WindowSettings.html#Voile_Rendering_WindowSettings_Resizable + name: Resizable + nameWithType: WindowSettings.Resizable + fullName: Voile.Rendering.WindowSettings.Resizable +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: Voile.Rendering.WindowSettings.#ctor* + commentId: Overload:Voile.Rendering.WindowSettings.#ctor + href: Voile.Rendering.WindowSettings.html#Voile_Rendering_WindowSettings__ctor_System_String_System_Numerics_Vector2_ + name: WindowSettings + nameWithType: WindowSettings.WindowSettings + fullName: Voile.Rendering.WindowSettings.WindowSettings + nameWithType.vb: WindowSettings.New + fullName.vb: Voile.Rendering.WindowSettings.New + name.vb: New +- uid: Voile.Rendering.WindowSettings.Default* + commentId: Overload:Voile.Rendering.WindowSettings.Default + href: Voile.Rendering.WindowSettings.html#Voile_Rendering_WindowSettings_Default + name: Default + nameWithType: WindowSettings.Default + fullName: Voile.Rendering.WindowSettings.Default +- uid: Voile.Rendering.WindowSettings + commentId: T:Voile.Rendering.WindowSettings + parent: Voile.Rendering + href: Voile.Rendering.WindowSettings.html + name: WindowSettings + nameWithType: WindowSettings + fullName: Voile.Rendering.WindowSettings diff --git a/Voile/api/Voile.Rendering.yml b/Voile/api/Voile.Rendering.yml new file mode 100644 index 0000000..a5738bd --- /dev/null +++ b/Voile/api/Voile.Rendering.yml @@ -0,0 +1,115 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Rendering + commentId: N:Voile.Rendering + id: Voile.Rendering + children: + - Voile.Rendering.ColorRectShader + - Voile.Rendering.Material + - Voile.Rendering.Msaa + - Voile.Rendering.RaylibRenderSystem + - Voile.Rendering.RenderSystem + - Voile.Rendering.RendererSettings + - Voile.Rendering.Shader + - Voile.Rendering.StandardRenderSystem + - Voile.Rendering.UnlitMaterial + - Voile.Rendering.WindowSettings + langs: + - csharp + - vb + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + type: Namespace + assemblies: + - Voile +references: +- uid: Voile.Rendering.ColorRectShader + commentId: T:Voile.Rendering.ColorRectShader + href: Voile.Rendering.ColorRectShader.html + name: ColorRectShader + nameWithType: ColorRectShader + fullName: Voile.Rendering.ColorRectShader +- uid: Voile.Rendering.Material + commentId: T:Voile.Rendering.Material + parent: Voile.Rendering + href: Voile.Rendering.Material.html + name: Material + nameWithType: Material + fullName: Voile.Rendering.Material +- uid: Voile.Rendering.RaylibRenderSystem + commentId: T:Voile.Rendering.RaylibRenderSystem + href: Voile.Rendering.RaylibRenderSystem.html + name: RaylibRenderSystem + nameWithType: RaylibRenderSystem + fullName: Voile.Rendering.RaylibRenderSystem +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering.Msaa + commentId: T:Voile.Rendering.Msaa + parent: Voile.Rendering + href: Voile.Rendering.Msaa.html + name: Msaa + nameWithType: Msaa + fullName: Voile.Rendering.Msaa +- uid: Voile.Rendering.RendererSettings + commentId: T:Voile.Rendering.RendererSettings + parent: Voile.Rendering + href: Voile.Rendering.RendererSettings.html + name: RendererSettings + nameWithType: RendererSettings + fullName: Voile.Rendering.RendererSettings +- uid: Voile.Rendering.WindowSettings + commentId: T:Voile.Rendering.WindowSettings + parent: Voile.Rendering + href: Voile.Rendering.WindowSettings.html + name: WindowSettings + nameWithType: WindowSettings + fullName: Voile.Rendering.WindowSettings +- uid: Voile.Rendering.Shader + commentId: T:Voile.Rendering.Shader + parent: Voile.Rendering + href: Voile.Rendering.Shader.html + name: Shader + nameWithType: Shader + fullName: Voile.Rendering.Shader +- uid: Voile.Rendering.StandardRenderSystem + commentId: T:Voile.Rendering.StandardRenderSystem + href: Voile.Rendering.StandardRenderSystem.html + name: StandardRenderSystem + nameWithType: StandardRenderSystem + fullName: Voile.Rendering.StandardRenderSystem +- uid: Voile.Rendering.UnlitMaterial + commentId: T:Voile.Rendering.UnlitMaterial + parent: Voile.Rendering + href: Voile.Rendering.UnlitMaterial.html + name: UnlitMaterial + nameWithType: UnlitMaterial + fullName: Voile.Rendering.UnlitMaterial +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html diff --git a/Voile/api/Voile.Resource.yml b/Voile/api/Voile.Resource.yml new file mode 100644 index 0000000..76c87ce --- /dev/null +++ b/Voile/api/Voile.Resource.yml @@ -0,0 +1,617 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Resource + commentId: T:Voile.Resource + id: Resource + parent: Voile + children: + - Voile.Resource.#ctor(System.String,System.Byte[]) + - Voile.Resource.Buffer + - Voile.Resource.BufferSize + - Voile.Resource.Dispose + - Voile.Resource.Guid + - Voile.Resource.Path + langs: + - csharp + - vb + name: Resource + nameWithType: Resource + fullName: Voile.Resource + type: Class + source: + remote: + path: Voile/Source/Resources/Resource.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Resource + path: Source/Resources/Resource.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile + syntax: + content: 'public abstract class Resource : IDisposable' + content.vb: Public MustInherit Class Resource Implements IDisposable + inheritance: + - System.Object + derivedClasses: + - Voile.Font + - Voile.SceneGraph.SerializedScene + - Voile.Sound + - Voile.Texture2d + implements: + - System.IDisposable + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Resource.Guid + commentId: P:Voile.Resource.Guid + id: Guid + parent: Voile.Resource + langs: + - csharp + - vb + name: Guid + nameWithType: Resource.Guid + fullName: Voile.Resource.Guid + type: Property + source: + remote: + path: Voile/Source/Resources/Resource.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Guid + path: Source/Resources/Resource.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile + syntax: + content: public Guid Guid { get; set; } + parameters: [] + return: + type: System.Guid + content.vb: Public Property Guid As Guid + overload: Voile.Resource.Guid* +- uid: Voile.Resource.Path + commentId: P:Voile.Resource.Path + id: Path + parent: Voile.Resource + langs: + - csharp + - vb + name: Path + nameWithType: Resource.Path + fullName: Voile.Resource.Path + type: Property + source: + remote: + path: Voile/Source/Resources/Resource.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Path + path: Source/Resources/Resource.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile + syntax: + content: public string? Path { get; set; } + parameters: [] + return: + type: System.String + content.vb: Public Property Path As String + overload: Voile.Resource.Path* +- uid: Voile.Resource.Buffer + commentId: P:Voile.Resource.Buffer + id: Buffer + parent: Voile.Resource + langs: + - csharp + - vb + name: Buffer + nameWithType: Resource.Buffer + fullName: Voile.Resource.Buffer + type: Property + source: + remote: + path: Voile/Source/Resources/Resource.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Buffer + path: Source/Resources/Resource.cs + startLine: 10 + assemblies: + - Voile + namespace: Voile + syntax: + content: >- + [JsonIgnore] + + public byte[]? Buffer { get; set; } + parameters: [] + return: + type: System.Byte[] + content.vb: >- + + + Public Property Buffer As Byte() + overload: Voile.Resource.Buffer* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: Voile.Resource.BufferSize + commentId: P:Voile.Resource.BufferSize + id: BufferSize + parent: Voile.Resource + langs: + - csharp + - vb + name: BufferSize + nameWithType: Resource.BufferSize + fullName: Voile.Resource.BufferSize + type: Property + source: + remote: + path: Voile/Source/Resources/Resource.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: BufferSize + path: Source/Resources/Resource.cs + startLine: 13 + assemblies: + - Voile + namespace: Voile + syntax: + content: >- + [JsonIgnore] + + public long BufferSize { get; set; } + parameters: [] + return: + type: System.Int64 + content.vb: >- + + + Public Property BufferSize As Long + overload: Voile.Resource.BufferSize* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: Voile.Resource.#ctor(System.String,System.Byte[]) + commentId: M:Voile.Resource.#ctor(System.String,System.Byte[]) + id: '#ctor(System.String,System.Byte[])' + parent: Voile.Resource + langs: + - csharp + - vb + name: Resource(string, byte[]) + nameWithType: Resource.Resource(string, byte[]) + fullName: Voile.Resource.Resource(string, byte[]) + type: Constructor + source: + remote: + path: Voile/Source/Resources/Resource.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/Resources/Resource.cs + startLine: 16 + assemblies: + - Voile + namespace: Voile + syntax: + content: public Resource(string path, byte[] buffer) + parameters: + - id: path + type: System.String + - id: buffer + type: System.Byte[] + content.vb: Public Sub New(path As String, buffer As Byte()) + overload: Voile.Resource.#ctor* + nameWithType.vb: Resource.New(String, Byte()) + fullName.vb: Voile.Resource.New(String, Byte()) + name.vb: New(String, Byte()) +- uid: Voile.Resource.Dispose + commentId: M:Voile.Resource.Dispose + id: Dispose + parent: Voile.Resource + langs: + - csharp + - vb + name: Dispose() + nameWithType: Resource.Dispose() + fullName: Voile.Resource.Dispose() + type: Method + source: + remote: + path: Voile/Source/Resources/Resource.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Dispose + path: Source/Resources/Resource.cs + startLine: 24 + assemblies: + - Voile + namespace: Voile + summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + example: [] + syntax: + content: public void Dispose() + content.vb: Public Sub Dispose() + overload: Voile.Resource.Dispose* + implements: + - System.IDisposable.Dispose +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.IDisposable + commentId: T:System.IDisposable + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable + name: IDisposable + nameWithType: IDisposable + fullName: System.IDisposable +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Resource.Guid* + commentId: Overload:Voile.Resource.Guid + href: Voile.Resource.html#Voile_Resource_Guid + name: Guid + nameWithType: Resource.Guid + fullName: Voile.Resource.Guid +- uid: System.Guid + commentId: T:System.Guid + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.guid + name: Guid + nameWithType: Guid + fullName: System.Guid +- uid: Voile.Resource.Path* + commentId: Overload:Voile.Resource.Path + href: Voile.Resource.html#Voile_Resource_Path + name: Path + nameWithType: Resource.Path + fullName: Voile.Resource.Path +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.Resource.Buffer* + commentId: Overload:Voile.Resource.Buffer + href: Voile.Resource.html#Voile_Resource_Buffer + name: Buffer + nameWithType: Resource.Buffer + fullName: Voile.Resource.Buffer +- uid: System.Byte[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + name: byte[] + nameWithType: byte[] + fullName: byte[] + nameWithType.vb: Byte() + fullName.vb: Byte() + name.vb: Byte() + spec.csharp: + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '[' + - name: ']' + spec.vb: + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: ( + - name: ) +- uid: Voile.Resource.BufferSize* + commentId: Overload:Voile.Resource.BufferSize + href: Voile.Resource.html#Voile_Resource_BufferSize + name: BufferSize + nameWithType: Resource.BufferSize + fullName: Voile.Resource.BufferSize +- uid: System.Int64 + commentId: T:System.Int64 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int64 + name: long + nameWithType: long + fullName: long + nameWithType.vb: Long + fullName.vb: Long + name.vb: Long +- uid: Voile.Resource.#ctor* + commentId: Overload:Voile.Resource.#ctor + href: Voile.Resource.html#Voile_Resource__ctor_System_String_System_Byte___ + name: Resource + nameWithType: Resource.Resource + fullName: Voile.Resource.Resource + nameWithType.vb: Resource.New + fullName.vb: Voile.Resource.New + name.vb: New +- uid: Voile.Resource.Dispose* + commentId: Overload:Voile.Resource.Dispose + href: Voile.Resource.html#Voile_Resource_Dispose + name: Dispose + nameWithType: Resource.Dispose + fullName: Voile.Resource.Dispose +- uid: System.IDisposable.Dispose + commentId: M:System.IDisposable.Dispose + parent: System.IDisposable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + name: Dispose() + nameWithType: IDisposable.Dispose() + fullName: System.IDisposable.Dispose() + spec.csharp: + - uid: System.IDisposable.Dispose + name: Dispose + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + - name: ( + - name: ) + spec.vb: + - uid: System.IDisposable.Dispose + name: Dispose + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + - name: ( + - name: ) diff --git a/Voile/api/Voile.Resources.FontLoader.yml b/Voile/api/Voile.Resources.FontLoader.yml new file mode 100644 index 0000000..a52ce05 --- /dev/null +++ b/Voile/api/Voile.Resources.FontLoader.yml @@ -0,0 +1,642 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Resources.FontLoader + commentId: T:Voile.Resources.FontLoader + id: FontLoader + parent: Voile.Resources + children: + - Voile.Resources.FontLoader.Load(System.String) + - Voile.Resources.FontLoader.SupportedExtensions + langs: + - csharp + - vb + name: FontLoader + nameWithType: FontLoader + fullName: Voile.Resources.FontLoader + type: Class + source: + remote: + path: Voile/Source/Resources/Loaders/FontLoader.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: FontLoader + path: Source/Resources/Loaders/FontLoader.cs + startLine: 2 + assemblies: + - Voile + namespace: Voile.Resources + syntax: + content: 'public class FontLoader : IResourceLoader' + content.vb: Public Class FontLoader Implements IResourceLoader(Of Font) + inheritance: + - System.Object + implements: + - Voile.Resources.IResourceLoader{Voile.Font} + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Resources.FontLoader.SupportedExtensions + commentId: P:Voile.Resources.FontLoader.SupportedExtensions + id: SupportedExtensions + parent: Voile.Resources.FontLoader + langs: + - csharp + - vb + name: SupportedExtensions + nameWithType: FontLoader.SupportedExtensions + fullName: Voile.Resources.FontLoader.SupportedExtensions + type: Property + source: + remote: + path: Voile/Source/Resources/Loaders/FontLoader.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SupportedExtensions + path: Source/Resources/Loaders/FontLoader.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.Resources + example: [] + syntax: + content: public IEnumerable SupportedExtensions { get; } + parameters: [] + return: + type: System.Collections.Generic.IEnumerable{System.String} + content.vb: Public ReadOnly Property SupportedExtensions As IEnumerable(Of String) + overload: Voile.Resources.FontLoader.SupportedExtensions* + implements: + - Voile.Resources.IResourceLoader{Voile.Font}.SupportedExtensions +- uid: Voile.Resources.FontLoader.Load(System.String) + commentId: M:Voile.Resources.FontLoader.Load(System.String) + id: Load(System.String) + parent: Voile.Resources.FontLoader + langs: + - csharp + - vb + name: Load(string) + nameWithType: FontLoader.Load(string) + fullName: Voile.Resources.FontLoader.Load(string) + type: Method + source: + remote: + path: Voile/Source/Resources/Loaders/FontLoader.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Load + path: Source/Resources/Loaders/FontLoader.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile.Resources + example: [] + syntax: + content: public Font Load(string path) + parameters: + - id: path + type: System.String + return: + type: Voile.Font + content.vb: Public Function Load(path As String) As Font + overload: Voile.Resources.FontLoader.Load* + implements: + - Voile.Resources.IResourceLoader{Voile.Font}.Load(System.String) + nameWithType.vb: FontLoader.Load(String) + fullName.vb: Voile.Resources.FontLoader.Load(String) + name.vb: Load(String) +references: +- uid: Voile.Resources + commentId: N:Voile.Resources + href: Voile.html + name: Voile.Resources + nameWithType: Voile.Resources + fullName: Voile.Resources + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.Resources.IResourceLoader{Voile.Font} + commentId: T:Voile.Resources.IResourceLoader{Voile.Font} + parent: Voile.Resources + definition: Voile.Resources.IResourceLoader`1 + href: Voile.Resources.IResourceLoader-1.html + name: IResourceLoader + nameWithType: IResourceLoader + fullName: Voile.Resources.IResourceLoader + nameWithType.vb: IResourceLoader(Of Font) + fullName.vb: Voile.Resources.IResourceLoader(Of Voile.Font) + name.vb: IResourceLoader(Of Font) + spec.csharp: + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + href: Voile.Resources.IResourceLoader-1.html + - name: < + - uid: Voile.Font + name: Font + href: Voile.Font.html + - name: '>' + spec.vb: + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + href: Voile.Resources.IResourceLoader-1.html + - name: ( + - name: Of + - name: " " + - uid: Voile.Font + name: Font + href: Voile.Font.html + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Resources.IResourceLoader`1 + commentId: T:Voile.Resources.IResourceLoader`1 + href: Voile.Resources.IResourceLoader-1.html + name: IResourceLoader + nameWithType: IResourceLoader + fullName: Voile.Resources.IResourceLoader + nameWithType.vb: IResourceLoader(Of T) + fullName.vb: Voile.Resources.IResourceLoader(Of T) + name.vb: IResourceLoader(Of T) + spec.csharp: + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + href: Voile.Resources.IResourceLoader-1.html + - name: < + - name: T + - name: '>' + spec.vb: + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + href: Voile.Resources.IResourceLoader-1.html + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: Voile.Resources.FontLoader.SupportedExtensions* + commentId: Overload:Voile.Resources.FontLoader.SupportedExtensions + href: Voile.Resources.FontLoader.html#Voile_Resources_FontLoader_SupportedExtensions + name: SupportedExtensions + nameWithType: FontLoader.SupportedExtensions + fullName: Voile.Resources.FontLoader.SupportedExtensions +- uid: Voile.Resources.IResourceLoader{Voile.Font}.SupportedExtensions + commentId: P:Voile.Resources.IResourceLoader{Voile.Font}.SupportedExtensions + parent: Voile.Resources.IResourceLoader{Voile.Font} + definition: Voile.Resources.IResourceLoader`1.SupportedExtensions + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_SupportedExtensions + name: SupportedExtensions + nameWithType: IResourceLoader.SupportedExtensions + fullName: Voile.Resources.IResourceLoader.SupportedExtensions + nameWithType.vb: IResourceLoader(Of Font).SupportedExtensions + fullName.vb: Voile.Resources.IResourceLoader(Of Voile.Font).SupportedExtensions +- uid: System.Collections.Generic.IEnumerable{System.String} + commentId: T:System.Collections.Generic.IEnumerable{System.String} + parent: System.Collections.Generic + definition: System.Collections.Generic.IEnumerable`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + name: IEnumerable + nameWithType: IEnumerable + fullName: System.Collections.Generic.IEnumerable + nameWithType.vb: IEnumerable(Of String) + fullName.vb: System.Collections.Generic.IEnumerable(Of String) + name.vb: IEnumerable(Of String) + spec.csharp: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.Resources.IResourceLoader`1.SupportedExtensions + commentId: P:Voile.Resources.IResourceLoader`1.SupportedExtensions + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_SupportedExtensions + name: SupportedExtensions + nameWithType: IResourceLoader.SupportedExtensions + fullName: Voile.Resources.IResourceLoader.SupportedExtensions + nameWithType.vb: IResourceLoader(Of T).SupportedExtensions + fullName.vb: Voile.Resources.IResourceLoader(Of T).SupportedExtensions +- uid: System.Collections.Generic.IEnumerable`1 + commentId: T:System.Collections.Generic.IEnumerable`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + name: IEnumerable + nameWithType: IEnumerable + fullName: System.Collections.Generic.IEnumerable + nameWithType.vb: IEnumerable(Of T) + fullName.vb: System.Collections.Generic.IEnumerable(Of T) + name.vb: IEnumerable(Of T) + spec.csharp: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: Voile.Resources.FontLoader.Load* + commentId: Overload:Voile.Resources.FontLoader.Load + href: Voile.Resources.FontLoader.html#Voile_Resources_FontLoader_Load_System_String_ + name: Load + nameWithType: FontLoader.Load + fullName: Voile.Resources.FontLoader.Load +- uid: Voile.Resources.IResourceLoader{Voile.Font}.Load(System.String) + commentId: M:Voile.Resources.IResourceLoader{Voile.Font}.Load(System.String) + parent: Voile.Resources.IResourceLoader{Voile.Font} + definition: Voile.Resources.IResourceLoader`1.Load(System.String) + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + name: Load(string) + nameWithType: IResourceLoader.Load(string) + fullName: Voile.Resources.IResourceLoader.Load(string) + nameWithType.vb: IResourceLoader(Of Font).Load(String) + fullName.vb: Voile.Resources.IResourceLoader(Of Voile.Font).Load(String) + name.vb: Load(String) + spec.csharp: + - uid: Voile.Resources.IResourceLoader{Voile.Font}.Load(System.String) + name: Load + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Resources.IResourceLoader{Voile.Font}.Load(System.String) + name: Load + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.Font + commentId: T:Voile.Font + parent: Voile + href: Voile.Font.html + name: Font + nameWithType: Font + fullName: Voile.Font +- uid: Voile.Resources.IResourceLoader`1.Load(System.String) + commentId: M:Voile.Resources.IResourceLoader`1.Load(System.String) + isExternal: true + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + name: Load(string) + nameWithType: IResourceLoader.Load(string) + fullName: Voile.Resources.IResourceLoader.Load(string) + nameWithType.vb: IResourceLoader(Of T).Load(String) + fullName.vb: Voile.Resources.IResourceLoader(Of T).Load(String) + name.vb: Load(String) + spec.csharp: + - uid: Voile.Resources.IResourceLoader`1.Load(System.String) + name: Load + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Resources.IResourceLoader`1.Load(System.String) + name: Load + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile diff --git a/Voile/api/Voile.Resources.IResourceLoader-1.yml b/Voile/api/Voile.Resources.IResourceLoader-1.yml new file mode 100644 index 0000000..c5a9bb1 --- /dev/null +++ b/Voile/api/Voile.Resources.IResourceLoader-1.yml @@ -0,0 +1,267 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Resources.IResourceLoader`1 + commentId: T:Voile.Resources.IResourceLoader`1 + id: IResourceLoader`1 + parent: Voile.Resources + children: + - Voile.Resources.IResourceLoader`1.Load(System.String) + - Voile.Resources.IResourceLoader`1.SupportedExtensions + langs: + - csharp + - vb + name: IResourceLoader + nameWithType: IResourceLoader + fullName: Voile.Resources.IResourceLoader + type: Interface + source: + remote: + path: Voile/Source/Resources/Loaders/IResourceLoader.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IResourceLoader + path: Source/Resources/Loaders/IResourceLoader.cs + startLine: 2 + assemblies: + - Voile + namespace: Voile.Resources + syntax: + content: 'public interface IResourceLoader where T : Resource' + typeParameters: + - id: T + content.vb: Public Interface IResourceLoader(Of T As Resource) + nameWithType.vb: IResourceLoader(Of T) + fullName.vb: Voile.Resources.IResourceLoader(Of T) + name.vb: IResourceLoader(Of T) +- uid: Voile.Resources.IResourceLoader`1.SupportedExtensions + commentId: P:Voile.Resources.IResourceLoader`1.SupportedExtensions + id: SupportedExtensions + parent: Voile.Resources.IResourceLoader`1 + langs: + - csharp + - vb + name: SupportedExtensions + nameWithType: IResourceLoader.SupportedExtensions + fullName: Voile.Resources.IResourceLoader.SupportedExtensions + type: Property + source: + remote: + path: Voile/Source/Resources/Loaders/IResourceLoader.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SupportedExtensions + path: Source/Resources/Loaders/IResourceLoader.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.Resources + syntax: + content: IEnumerable SupportedExtensions { get; } + parameters: [] + return: + type: System.Collections.Generic.IEnumerable{System.String} + content.vb: ReadOnly Property SupportedExtensions As IEnumerable(Of String) + overload: Voile.Resources.IResourceLoader`1.SupportedExtensions* + nameWithType.vb: IResourceLoader(Of T).SupportedExtensions + fullName.vb: Voile.Resources.IResourceLoader(Of T).SupportedExtensions +- uid: Voile.Resources.IResourceLoader`1.Load(System.String) + commentId: M:Voile.Resources.IResourceLoader`1.Load(System.String) + id: Load(System.String) + parent: Voile.Resources.IResourceLoader`1 + langs: + - csharp + - vb + name: Load(string) + nameWithType: IResourceLoader.Load(string) + fullName: Voile.Resources.IResourceLoader.Load(string) + type: Method + source: + remote: + path: Voile/Source/Resources/Loaders/IResourceLoader.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Load + path: Source/Resources/Loaders/IResourceLoader.cs + startLine: 5 + assemblies: + - Voile + namespace: Voile.Resources + syntax: + content: T Load(string path) + parameters: + - id: path + type: System.String + return: + type: '{T}' + content.vb: Function Load(path As String) As T + overload: Voile.Resources.IResourceLoader`1.Load* + nameWithType.vb: IResourceLoader(Of T).Load(String) + fullName.vb: Voile.Resources.IResourceLoader(Of T).Load(String) + name.vb: Load(String) +references: +- uid: Voile.Resources + commentId: N:Voile.Resources + href: Voile.html + name: Voile.Resources + nameWithType: Voile.Resources + fullName: Voile.Resources + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html +- uid: Voile.Resources.IResourceLoader`1.SupportedExtensions* + commentId: Overload:Voile.Resources.IResourceLoader`1.SupportedExtensions + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_SupportedExtensions + name: SupportedExtensions + nameWithType: IResourceLoader.SupportedExtensions + fullName: Voile.Resources.IResourceLoader.SupportedExtensions + nameWithType.vb: IResourceLoader(Of T).SupportedExtensions + fullName.vb: Voile.Resources.IResourceLoader(Of T).SupportedExtensions +- uid: System.Collections.Generic.IEnumerable{System.String} + commentId: T:System.Collections.Generic.IEnumerable{System.String} + parent: System.Collections.Generic + definition: System.Collections.Generic.IEnumerable`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + name: IEnumerable + nameWithType: IEnumerable + fullName: System.Collections.Generic.IEnumerable + nameWithType.vb: IEnumerable(Of String) + fullName.vb: System.Collections.Generic.IEnumerable(Of String) + name.vb: IEnumerable(Of String) + spec.csharp: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.Collections.Generic.IEnumerable`1 + commentId: T:System.Collections.Generic.IEnumerable`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + name: IEnumerable + nameWithType: IEnumerable + fullName: System.Collections.Generic.IEnumerable + nameWithType.vb: IEnumerable(Of T) + fullName.vb: System.Collections.Generic.IEnumerable(Of T) + name.vb: IEnumerable(Of T) + spec.csharp: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: Voile.Resources.IResourceLoader`1.Load* + commentId: Overload:Voile.Resources.IResourceLoader`1.Load + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + name: Load + nameWithType: IResourceLoader.Load + fullName: Voile.Resources.IResourceLoader.Load + nameWithType.vb: IResourceLoader(Of T).Load + fullName.vb: Voile.Resources.IResourceLoader(Of T).Load +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: '{T}' + commentId: '!:T' + definition: T + name: T + nameWithType: T + fullName: T +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: T + name: T + nameWithType: T + fullName: T diff --git a/Voile/api/Voile.Resources.IResourceSaver-1.yml b/Voile/api/Voile.Resources.IResourceSaver-1.yml new file mode 100644 index 0000000..dcb156f --- /dev/null +++ b/Voile/api/Voile.Resources.IResourceSaver-1.yml @@ -0,0 +1,140 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Resources.IResourceSaver`1 + commentId: T:Voile.Resources.IResourceSaver`1 + id: IResourceSaver`1 + parent: Voile.Resources + children: + - Voile.Resources.IResourceSaver`1.TrySave(System.String,`0@) + langs: + - csharp + - vb + name: IResourceSaver + nameWithType: IResourceSaver + fullName: Voile.Resources.IResourceSaver + type: Interface + source: + remote: + path: Voile/Source/Resources/Savers/IResourceSaver.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IResourceSaver + path: Source/Resources/Savers/IResourceSaver.cs + startLine: 2 + assemblies: + - Voile + namespace: Voile.Resources + syntax: + content: 'public interface IResourceSaver where T : Resource' + typeParameters: + - id: T + content.vb: Public Interface IResourceSaver(Of T As Resource) + nameWithType.vb: IResourceSaver(Of T) + fullName.vb: Voile.Resources.IResourceSaver(Of T) + name.vb: IResourceSaver(Of T) +- uid: Voile.Resources.IResourceSaver`1.TrySave(System.String,`0@) + commentId: M:Voile.Resources.IResourceSaver`1.TrySave(System.String,`0@) + id: TrySave(System.String,`0@) + parent: Voile.Resources.IResourceSaver`1 + langs: + - csharp + - vb + name: TrySave(string, in T) + nameWithType: IResourceSaver.TrySave(string, in T) + fullName: Voile.Resources.IResourceSaver.TrySave(string, in T) + type: Method + source: + remote: + path: Voile/Source/Resources/Savers/IResourceSaver.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: TrySave + path: Source/Resources/Savers/IResourceSaver.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.Resources + syntax: + content: bool TrySave(string path, in T resource) + parameters: + - id: path + type: System.String + - id: resource + type: '{T}' + return: + type: System.Boolean + content.vb: Function TrySave(path As String, resource As T) As Boolean + overload: Voile.Resources.IResourceSaver`1.TrySave* + nameWithType.vb: IResourceSaver(Of T).TrySave(String, T) + fullName.vb: Voile.Resources.IResourceSaver(Of T).TrySave(String, T) + name.vb: TrySave(String, T) +references: +- uid: Voile.Resources + commentId: N:Voile.Resources + href: Voile.html + name: Voile.Resources + nameWithType: Voile.Resources + fullName: Voile.Resources + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html +- uid: Voile.Resources.IResourceSaver`1.TrySave* + commentId: Overload:Voile.Resources.IResourceSaver`1.TrySave + href: Voile.Resources.IResourceSaver-1.html#Voile_Resources_IResourceSaver_1_TrySave_System_String__0__ + name: TrySave + nameWithType: IResourceSaver.TrySave + fullName: Voile.Resources.IResourceSaver.TrySave + nameWithType.vb: IResourceSaver(Of T).TrySave + fullName.vb: Voile.Resources.IResourceSaver(Of T).TrySave +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: '{T}' + commentId: '!:T' + definition: T + name: T + nameWithType: T + fullName: T +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: T + name: T + nameWithType: T + fullName: T diff --git a/Voile/api/Voile.Resources.ResourceManager.yml b/Voile/api/Voile.Resources.ResourceManager.yml new file mode 100644 index 0000000..007713b --- /dev/null +++ b/Voile/api/Voile.Resources.ResourceManager.yml @@ -0,0 +1,840 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Resources.ResourceManager + commentId: T:Voile.Resources.ResourceManager + id: ResourceManager + parent: Voile.Resources + children: + - Voile.Resources.ResourceManager.AddResourceLoaderAssociation``1(Voile.Resources.IResourceLoader{``0}) + - Voile.Resources.ResourceManager.AddResourceSaverAssociation``1(Voile.Resources.IResourceSaver{``0}) + - Voile.Resources.ResourceManager.Dispose + - Voile.Resources.ResourceManager.IsResourceLoaded(System.String) + - Voile.Resources.ResourceManager.ResourceRoot + - Voile.Resources.ResourceManager.TryGetResource``1(System.String,``0@) + - Voile.Resources.ResourceManager.TryLoad``1(System.String,System.String,``0@) + - Voile.Resources.ResourceManager.TrySave``1(System.String,``0@) + - Voile.Resources.ResourceManager.TryUnload(System.String) + langs: + - csharp + - vb + name: ResourceManager + nameWithType: ResourceManager + fullName: Voile.Resources.ResourceManager + type: Class + source: + remote: + path: Voile/Source/Resources/ResourceManager.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ResourceManager + path: Source/Resources/ResourceManager.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.Resources + syntax: + content: 'public class ResourceManager : IDisposable' + content.vb: Public Class ResourceManager Implements IDisposable + inheritance: + - System.Object + implements: + - System.IDisposable + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Resources.ResourceManager.ResourceRoot + commentId: P:Voile.Resources.ResourceManager.ResourceRoot + id: ResourceRoot + parent: Voile.Resources.ResourceManager + langs: + - csharp + - vb + name: ResourceRoot + nameWithType: ResourceManager.ResourceRoot + fullName: Voile.Resources.ResourceManager.ResourceRoot + type: Property + source: + remote: + path: Voile/Source/Resources/ResourceManager.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ResourceRoot + path: Source/Resources/ResourceManager.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile.Resources + syntax: + content: public string ResourceRoot { get; set; } + parameters: [] + return: + type: System.String + content.vb: Public Property ResourceRoot As String + overload: Voile.Resources.ResourceManager.ResourceRoot* +- uid: Voile.Resources.ResourceManager.TryLoad``1(System.String,System.String,``0@) + commentId: M:Voile.Resources.ResourceManager.TryLoad``1(System.String,System.String,``0@) + id: TryLoad``1(System.String,System.String,``0@) + parent: Voile.Resources.ResourceManager + langs: + - csharp + - vb + name: TryLoad(string, string, out T?) + nameWithType: ResourceManager.TryLoad(string, string, out T?) + fullName: Voile.Resources.ResourceManager.TryLoad(string, string, out T?) + type: Method + source: + remote: + path: Voile/Source/Resources/ResourceManager.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: TryLoad + path: Source/Resources/ResourceManager.cs + startLine: 10 + assemblies: + - Voile + namespace: Voile.Resources + syntax: + content: 'public bool TryLoad(string resourceId, string path, out T? result) where T : Resource' + parameters: + - id: resourceId + type: System.String + - id: path + type: System.String + - id: result + type: '{T}' + typeParameters: + - id: T + return: + type: System.Boolean + content.vb: Public Function TryLoad(Of T As Resource)(resourceId As String, path As String, result As T) As Boolean + overload: Voile.Resources.ResourceManager.TryLoad* + nameWithType.vb: ResourceManager.TryLoad(Of T)(String, String, T) + fullName.vb: Voile.Resources.ResourceManager.TryLoad(Of T)(String, String, T) + name.vb: TryLoad(Of T)(String, String, T) +- uid: Voile.Resources.ResourceManager.TryUnload(System.String) + commentId: M:Voile.Resources.ResourceManager.TryUnload(System.String) + id: TryUnload(System.String) + parent: Voile.Resources.ResourceManager + langs: + - csharp + - vb + name: TryUnload(string) + nameWithType: ResourceManager.TryUnload(string) + fullName: Voile.Resources.ResourceManager.TryUnload(string) + type: Method + source: + remote: + path: Voile/Source/Resources/ResourceManager.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: TryUnload + path: Source/Resources/ResourceManager.cs + startLine: 53 + assemblies: + - Voile + namespace: Voile.Resources + syntax: + content: public bool TryUnload(string resourceId) + parameters: + - id: resourceId + type: System.String + return: + type: System.Boolean + content.vb: Public Function TryUnload(resourceId As String) As Boolean + overload: Voile.Resources.ResourceManager.TryUnload* + nameWithType.vb: ResourceManager.TryUnload(String) + fullName.vb: Voile.Resources.ResourceManager.TryUnload(String) + name.vb: TryUnload(String) +- uid: Voile.Resources.ResourceManager.TrySave``1(System.String,``0@) + commentId: M:Voile.Resources.ResourceManager.TrySave``1(System.String,``0@) + id: TrySave``1(System.String,``0@) + parent: Voile.Resources.ResourceManager + langs: + - csharp + - vb + name: TrySave(string, in T) + nameWithType: ResourceManager.TrySave(string, in T) + fullName: Voile.Resources.ResourceManager.TrySave(string, in T) + type: Method + source: + remote: + path: Voile/Source/Resources/ResourceManager.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: TrySave + path: Source/Resources/ResourceManager.cs + startLine: 71 + assemblies: + - Voile + namespace: Voile.Resources + syntax: + content: 'public bool TrySave(string path, in T resource) where T : Resource' + parameters: + - id: path + type: System.String + - id: resource + type: '{T}' + typeParameters: + - id: T + return: + type: System.Boolean + content.vb: Public Function TrySave(Of T As Resource)(path As String, resource As T) As Boolean + overload: Voile.Resources.ResourceManager.TrySave* + nameWithType.vb: ResourceManager.TrySave(Of T)(String, T) + fullName.vb: Voile.Resources.ResourceManager.TrySave(Of T)(String, T) + name.vb: TrySave(Of T)(String, T) +- uid: Voile.Resources.ResourceManager.TryGetResource``1(System.String,``0@) + commentId: M:Voile.Resources.ResourceManager.TryGetResource``1(System.String,``0@) + id: TryGetResource``1(System.String,``0@) + parent: Voile.Resources.ResourceManager + langs: + - csharp + - vb + name: TryGetResource(string, out T?) + nameWithType: ResourceManager.TryGetResource(string, out T?) + fullName: Voile.Resources.ResourceManager.TryGetResource(string, out T?) + type: Method + source: + remote: + path: Voile/Source/Resources/ResourceManager.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: TryGetResource + path: Source/Resources/ResourceManager.cs + startLine: 86 + assemblies: + - Voile + namespace: Voile.Resources + syntax: + content: 'public bool TryGetResource(string resourceId, out T? resource) where T : Resource' + parameters: + - id: resourceId + type: System.String + - id: resource + type: '{T}' + typeParameters: + - id: T + return: + type: System.Boolean + content.vb: Public Function TryGetResource(Of T As Resource)(resourceId As String, resource As T) As Boolean + overload: Voile.Resources.ResourceManager.TryGetResource* + nameWithType.vb: ResourceManager.TryGetResource(Of T)(String, T) + fullName.vb: Voile.Resources.ResourceManager.TryGetResource(Of T)(String, T) + name.vb: TryGetResource(Of T)(String, T) +- uid: Voile.Resources.ResourceManager.IsResourceLoaded(System.String) + commentId: M:Voile.Resources.ResourceManager.IsResourceLoaded(System.String) + id: IsResourceLoaded(System.String) + parent: Voile.Resources.ResourceManager + langs: + - csharp + - vb + name: IsResourceLoaded(string) + nameWithType: ResourceManager.IsResourceLoaded(string) + fullName: Voile.Resources.ResourceManager.IsResourceLoaded(string) + type: Method + source: + remote: + path: Voile/Source/Resources/ResourceManager.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IsResourceLoaded + path: Source/Resources/ResourceManager.cs + startLine: 109 + assemblies: + - Voile + namespace: Voile.Resources + syntax: + content: public bool IsResourceLoaded(string resourceId) + parameters: + - id: resourceId + type: System.String + return: + type: System.Boolean + content.vb: Public Function IsResourceLoaded(resourceId As String) As Boolean + overload: Voile.Resources.ResourceManager.IsResourceLoaded* + nameWithType.vb: ResourceManager.IsResourceLoaded(String) + fullName.vb: Voile.Resources.ResourceManager.IsResourceLoaded(String) + name.vb: IsResourceLoaded(String) +- uid: Voile.Resources.ResourceManager.AddResourceLoaderAssociation``1(Voile.Resources.IResourceLoader{``0}) + commentId: M:Voile.Resources.ResourceManager.AddResourceLoaderAssociation``1(Voile.Resources.IResourceLoader{``0}) + id: AddResourceLoaderAssociation``1(Voile.Resources.IResourceLoader{``0}) + parent: Voile.Resources.ResourceManager + langs: + - csharp + - vb + name: AddResourceLoaderAssociation(IResourceLoader) + nameWithType: ResourceManager.AddResourceLoaderAssociation(IResourceLoader) + fullName: Voile.Resources.ResourceManager.AddResourceLoaderAssociation(Voile.Resources.IResourceLoader) + type: Method + source: + remote: + path: Voile/Source/Resources/ResourceManager.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AddResourceLoaderAssociation + path: Source/Resources/ResourceManager.cs + startLine: 111 + assemblies: + - Voile + namespace: Voile.Resources + syntax: + content: 'public void AddResourceLoaderAssociation(IResourceLoader loader) where T : Resource' + parameters: + - id: loader + type: Voile.Resources.IResourceLoader{{T}} + typeParameters: + - id: T + content.vb: Public Sub AddResourceLoaderAssociation(Of T As Resource)(loader As IResourceLoader(Of T)) + overload: Voile.Resources.ResourceManager.AddResourceLoaderAssociation* + nameWithType.vb: ResourceManager.AddResourceLoaderAssociation(Of T)(IResourceLoader(Of T)) + fullName.vb: Voile.Resources.ResourceManager.AddResourceLoaderAssociation(Of T)(Voile.Resources.IResourceLoader(Of T)) + name.vb: AddResourceLoaderAssociation(Of T)(IResourceLoader(Of T)) +- uid: Voile.Resources.ResourceManager.AddResourceSaverAssociation``1(Voile.Resources.IResourceSaver{``0}) + commentId: M:Voile.Resources.ResourceManager.AddResourceSaverAssociation``1(Voile.Resources.IResourceSaver{``0}) + id: AddResourceSaverAssociation``1(Voile.Resources.IResourceSaver{``0}) + parent: Voile.Resources.ResourceManager + langs: + - csharp + - vb + name: AddResourceSaverAssociation(IResourceSaver) + nameWithType: ResourceManager.AddResourceSaverAssociation(IResourceSaver) + fullName: Voile.Resources.ResourceManager.AddResourceSaverAssociation(Voile.Resources.IResourceSaver) + type: Method + source: + remote: + path: Voile/Source/Resources/ResourceManager.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AddResourceSaverAssociation + path: Source/Resources/ResourceManager.cs + startLine: 117 + assemblies: + - Voile + namespace: Voile.Resources + syntax: + content: 'public void AddResourceSaverAssociation(IResourceSaver saver) where T : Resource' + parameters: + - id: saver + type: Voile.Resources.IResourceSaver{{T}} + typeParameters: + - id: T + content.vb: Public Sub AddResourceSaverAssociation(Of T As Resource)(saver As IResourceSaver(Of T)) + overload: Voile.Resources.ResourceManager.AddResourceSaverAssociation* + nameWithType.vb: ResourceManager.AddResourceSaverAssociation(Of T)(IResourceSaver(Of T)) + fullName.vb: Voile.Resources.ResourceManager.AddResourceSaverAssociation(Of T)(Voile.Resources.IResourceSaver(Of T)) + name.vb: AddResourceSaverAssociation(Of T)(IResourceSaver(Of T)) +- uid: Voile.Resources.ResourceManager.Dispose + commentId: M:Voile.Resources.ResourceManager.Dispose + id: Dispose + parent: Voile.Resources.ResourceManager + langs: + - csharp + - vb + name: Dispose() + nameWithType: ResourceManager.Dispose() + fullName: Voile.Resources.ResourceManager.Dispose() + type: Method + source: + remote: + path: Voile/Source/Resources/ResourceManager.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Dispose + path: Source/Resources/ResourceManager.cs + startLine: 173 + assemblies: + - Voile + namespace: Voile.Resources + summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + example: [] + syntax: + content: public void Dispose() + content.vb: Public Sub Dispose() + overload: Voile.Resources.ResourceManager.Dispose* + implements: + - System.IDisposable.Dispose +references: +- uid: Voile.Resources + commentId: N:Voile.Resources + href: Voile.html + name: Voile.Resources + nameWithType: Voile.Resources + fullName: Voile.Resources + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.IDisposable + commentId: T:System.IDisposable + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable + name: IDisposable + nameWithType: IDisposable + fullName: System.IDisposable +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Resources.ResourceManager.ResourceRoot* + commentId: Overload:Voile.Resources.ResourceManager.ResourceRoot + href: Voile.Resources.ResourceManager.html#Voile_Resources_ResourceManager_ResourceRoot + name: ResourceRoot + nameWithType: ResourceManager.ResourceRoot + fullName: Voile.Resources.ResourceManager.ResourceRoot +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.Resources.ResourceManager.TryLoad* + commentId: Overload:Voile.Resources.ResourceManager.TryLoad + href: Voile.Resources.ResourceManager.html#Voile_Resources_ResourceManager_TryLoad__1_System_String_System_String___0__ + name: TryLoad + nameWithType: ResourceManager.TryLoad + fullName: Voile.Resources.ResourceManager.TryLoad +- uid: '{T}' + commentId: '!:T' + definition: T + name: T + nameWithType: T + fullName: T +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: T + name: T + nameWithType: T + fullName: T +- uid: Voile.Resources.ResourceManager.TryUnload* + commentId: Overload:Voile.Resources.ResourceManager.TryUnload + href: Voile.Resources.ResourceManager.html#Voile_Resources_ResourceManager_TryUnload_System_String_ + name: TryUnload + nameWithType: ResourceManager.TryUnload + fullName: Voile.Resources.ResourceManager.TryUnload +- uid: Voile.Resources.ResourceManager.TrySave* + commentId: Overload:Voile.Resources.ResourceManager.TrySave + href: Voile.Resources.ResourceManager.html#Voile_Resources_ResourceManager_TrySave__1_System_String___0__ + name: TrySave + nameWithType: ResourceManager.TrySave + fullName: Voile.Resources.ResourceManager.TrySave +- uid: Voile.Resources.ResourceManager.TryGetResource* + commentId: Overload:Voile.Resources.ResourceManager.TryGetResource + href: Voile.Resources.ResourceManager.html#Voile_Resources_ResourceManager_TryGetResource__1_System_String___0__ + name: TryGetResource + nameWithType: ResourceManager.TryGetResource + fullName: Voile.Resources.ResourceManager.TryGetResource +- uid: Voile.Resources.ResourceManager.IsResourceLoaded* + commentId: Overload:Voile.Resources.ResourceManager.IsResourceLoaded + href: Voile.Resources.ResourceManager.html#Voile_Resources_ResourceManager_IsResourceLoaded_System_String_ + name: IsResourceLoaded + nameWithType: ResourceManager.IsResourceLoaded + fullName: Voile.Resources.ResourceManager.IsResourceLoaded +- uid: Voile.Resources.ResourceManager.AddResourceLoaderAssociation* + commentId: Overload:Voile.Resources.ResourceManager.AddResourceLoaderAssociation + href: Voile.Resources.ResourceManager.html#Voile_Resources_ResourceManager_AddResourceLoaderAssociation__1_Voile_Resources_IResourceLoader___0__ + name: AddResourceLoaderAssociation + nameWithType: ResourceManager.AddResourceLoaderAssociation + fullName: Voile.Resources.ResourceManager.AddResourceLoaderAssociation +- uid: Voile.Resources.IResourceLoader{{T}} + commentId: T:Voile.Resources.IResourceLoader{``0} + parent: Voile.Resources + definition: Voile.Resources.IResourceLoader`1 + href: Voile.Resources.IResourceLoader-1.html + name: IResourceLoader + nameWithType: IResourceLoader + fullName: Voile.Resources.IResourceLoader + nameWithType.vb: IResourceLoader(Of T) + fullName.vb: Voile.Resources.IResourceLoader(Of T) + name.vb: IResourceLoader(Of T) + spec.csharp: + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + href: Voile.Resources.IResourceLoader-1.html + - name: < + - name: T + - name: '>' + spec.vb: + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + href: Voile.Resources.IResourceLoader-1.html + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: Voile.Resources.IResourceLoader`1 + commentId: T:Voile.Resources.IResourceLoader`1 + href: Voile.Resources.IResourceLoader-1.html + name: IResourceLoader + nameWithType: IResourceLoader + fullName: Voile.Resources.IResourceLoader + nameWithType.vb: IResourceLoader(Of T) + fullName.vb: Voile.Resources.IResourceLoader(Of T) + name.vb: IResourceLoader(Of T) + spec.csharp: + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + href: Voile.Resources.IResourceLoader-1.html + - name: < + - name: T + - name: '>' + spec.vb: + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + href: Voile.Resources.IResourceLoader-1.html + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: Voile.Resources.ResourceManager.AddResourceSaverAssociation* + commentId: Overload:Voile.Resources.ResourceManager.AddResourceSaverAssociation + href: Voile.Resources.ResourceManager.html#Voile_Resources_ResourceManager_AddResourceSaverAssociation__1_Voile_Resources_IResourceSaver___0__ + name: AddResourceSaverAssociation + nameWithType: ResourceManager.AddResourceSaverAssociation + fullName: Voile.Resources.ResourceManager.AddResourceSaverAssociation +- uid: Voile.Resources.IResourceSaver{{T}} + commentId: T:Voile.Resources.IResourceSaver{``0} + parent: Voile.Resources + definition: Voile.Resources.IResourceSaver`1 + href: Voile.Resources.IResourceSaver-1.html + name: IResourceSaver + nameWithType: IResourceSaver + fullName: Voile.Resources.IResourceSaver + nameWithType.vb: IResourceSaver(Of T) + fullName.vb: Voile.Resources.IResourceSaver(Of T) + name.vb: IResourceSaver(Of T) + spec.csharp: + - uid: Voile.Resources.IResourceSaver`1 + name: IResourceSaver + href: Voile.Resources.IResourceSaver-1.html + - name: < + - name: T + - name: '>' + spec.vb: + - uid: Voile.Resources.IResourceSaver`1 + name: IResourceSaver + href: Voile.Resources.IResourceSaver-1.html + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: Voile.Resources.IResourceSaver`1 + commentId: T:Voile.Resources.IResourceSaver`1 + href: Voile.Resources.IResourceSaver-1.html + name: IResourceSaver + nameWithType: IResourceSaver + fullName: Voile.Resources.IResourceSaver + nameWithType.vb: IResourceSaver(Of T) + fullName.vb: Voile.Resources.IResourceSaver(Of T) + name.vb: IResourceSaver(Of T) + spec.csharp: + - uid: Voile.Resources.IResourceSaver`1 + name: IResourceSaver + href: Voile.Resources.IResourceSaver-1.html + - name: < + - name: T + - name: '>' + spec.vb: + - uid: Voile.Resources.IResourceSaver`1 + name: IResourceSaver + href: Voile.Resources.IResourceSaver-1.html + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: Voile.Resources.ResourceManager.Dispose* + commentId: Overload:Voile.Resources.ResourceManager.Dispose + href: Voile.Resources.ResourceManager.html#Voile_Resources_ResourceManager_Dispose + name: Dispose + nameWithType: ResourceManager.Dispose + fullName: Voile.Resources.ResourceManager.Dispose +- uid: System.IDisposable.Dispose + commentId: M:System.IDisposable.Dispose + parent: System.IDisposable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + name: Dispose() + nameWithType: IDisposable.Dispose() + fullName: System.IDisposable.Dispose() + spec.csharp: + - uid: System.IDisposable.Dispose + name: Dispose + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + - name: ( + - name: ) + spec.vb: + - uid: System.IDisposable.Dispose + name: Dispose + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + - name: ( + - name: ) diff --git a/Voile/api/Voile.Resources.SoundLoader.yml b/Voile/api/Voile.Resources.SoundLoader.yml new file mode 100644 index 0000000..8d57db6 --- /dev/null +++ b/Voile/api/Voile.Resources.SoundLoader.yml @@ -0,0 +1,642 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Resources.SoundLoader + commentId: T:Voile.Resources.SoundLoader + id: SoundLoader + parent: Voile.Resources + children: + - Voile.Resources.SoundLoader.Load(System.String) + - Voile.Resources.SoundLoader.SupportedExtensions + langs: + - csharp + - vb + name: SoundLoader + nameWithType: SoundLoader + fullName: Voile.Resources.SoundLoader + type: Class + source: + remote: + path: Voile/Source/Resources/Loaders/SoundLoader.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SoundLoader + path: Source/Resources/Loaders/SoundLoader.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.Resources + syntax: + content: 'public class SoundLoader : IResourceLoader' + content.vb: Public Class SoundLoader Implements IResourceLoader(Of Sound) + inheritance: + - System.Object + implements: + - Voile.Resources.IResourceLoader{Voile.Sound} + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Resources.SoundLoader.SupportedExtensions + commentId: P:Voile.Resources.SoundLoader.SupportedExtensions + id: SupportedExtensions + parent: Voile.Resources.SoundLoader + langs: + - csharp + - vb + name: SupportedExtensions + nameWithType: SoundLoader.SupportedExtensions + fullName: Voile.Resources.SoundLoader.SupportedExtensions + type: Property + source: + remote: + path: Voile/Source/Resources/Loaders/SoundLoader.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SupportedExtensions + path: Source/Resources/Loaders/SoundLoader.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.Resources + example: [] + syntax: + content: public IEnumerable SupportedExtensions { get; } + parameters: [] + return: + type: System.Collections.Generic.IEnumerable{System.String} + content.vb: Public ReadOnly Property SupportedExtensions As IEnumerable(Of String) + overload: Voile.Resources.SoundLoader.SupportedExtensions* + implements: + - Voile.Resources.IResourceLoader{Voile.Sound}.SupportedExtensions +- uid: Voile.Resources.SoundLoader.Load(System.String) + commentId: M:Voile.Resources.SoundLoader.Load(System.String) + id: Load(System.String) + parent: Voile.Resources.SoundLoader + langs: + - csharp + - vb + name: Load(string) + nameWithType: SoundLoader.Load(string) + fullName: Voile.Resources.SoundLoader.Load(string) + type: Method + source: + remote: + path: Voile/Source/Resources/Loaders/SoundLoader.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Load + path: Source/Resources/Loaders/SoundLoader.cs + startLine: 11 + assemblies: + - Voile + namespace: Voile.Resources + example: [] + syntax: + content: public Sound Load(string path) + parameters: + - id: path + type: System.String + return: + type: Voile.Sound + content.vb: Public Function Load(path As String) As Sound + overload: Voile.Resources.SoundLoader.Load* + implements: + - Voile.Resources.IResourceLoader{Voile.Sound}.Load(System.String) + nameWithType.vb: SoundLoader.Load(String) + fullName.vb: Voile.Resources.SoundLoader.Load(String) + name.vb: Load(String) +references: +- uid: Voile.Resources + commentId: N:Voile.Resources + href: Voile.html + name: Voile.Resources + nameWithType: Voile.Resources + fullName: Voile.Resources + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.Resources.IResourceLoader{Voile.Sound} + commentId: T:Voile.Resources.IResourceLoader{Voile.Sound} + parent: Voile.Resources + definition: Voile.Resources.IResourceLoader`1 + href: Voile.Resources.IResourceLoader-1.html + name: IResourceLoader + nameWithType: IResourceLoader + fullName: Voile.Resources.IResourceLoader + nameWithType.vb: IResourceLoader(Of Sound) + fullName.vb: Voile.Resources.IResourceLoader(Of Voile.Sound) + name.vb: IResourceLoader(Of Sound) + spec.csharp: + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + href: Voile.Resources.IResourceLoader-1.html + - name: < + - uid: Voile.Sound + name: Sound + href: Voile.Sound.html + - name: '>' + spec.vb: + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + href: Voile.Resources.IResourceLoader-1.html + - name: ( + - name: Of + - name: " " + - uid: Voile.Sound + name: Sound + href: Voile.Sound.html + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Resources.IResourceLoader`1 + commentId: T:Voile.Resources.IResourceLoader`1 + href: Voile.Resources.IResourceLoader-1.html + name: IResourceLoader + nameWithType: IResourceLoader + fullName: Voile.Resources.IResourceLoader + nameWithType.vb: IResourceLoader(Of T) + fullName.vb: Voile.Resources.IResourceLoader(Of T) + name.vb: IResourceLoader(Of T) + spec.csharp: + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + href: Voile.Resources.IResourceLoader-1.html + - name: < + - name: T + - name: '>' + spec.vb: + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + href: Voile.Resources.IResourceLoader-1.html + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: Voile.Resources.SoundLoader.SupportedExtensions* + commentId: Overload:Voile.Resources.SoundLoader.SupportedExtensions + href: Voile.Resources.SoundLoader.html#Voile_Resources_SoundLoader_SupportedExtensions + name: SupportedExtensions + nameWithType: SoundLoader.SupportedExtensions + fullName: Voile.Resources.SoundLoader.SupportedExtensions +- uid: Voile.Resources.IResourceLoader{Voile.Sound}.SupportedExtensions + commentId: P:Voile.Resources.IResourceLoader{Voile.Sound}.SupportedExtensions + parent: Voile.Resources.IResourceLoader{Voile.Sound} + definition: Voile.Resources.IResourceLoader`1.SupportedExtensions + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_SupportedExtensions + name: SupportedExtensions + nameWithType: IResourceLoader.SupportedExtensions + fullName: Voile.Resources.IResourceLoader.SupportedExtensions + nameWithType.vb: IResourceLoader(Of Sound).SupportedExtensions + fullName.vb: Voile.Resources.IResourceLoader(Of Voile.Sound).SupportedExtensions +- uid: System.Collections.Generic.IEnumerable{System.String} + commentId: T:System.Collections.Generic.IEnumerable{System.String} + parent: System.Collections.Generic + definition: System.Collections.Generic.IEnumerable`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + name: IEnumerable + nameWithType: IEnumerable + fullName: System.Collections.Generic.IEnumerable + nameWithType.vb: IEnumerable(Of String) + fullName.vb: System.Collections.Generic.IEnumerable(Of String) + name.vb: IEnumerable(Of String) + spec.csharp: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.Resources.IResourceLoader`1.SupportedExtensions + commentId: P:Voile.Resources.IResourceLoader`1.SupportedExtensions + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_SupportedExtensions + name: SupportedExtensions + nameWithType: IResourceLoader.SupportedExtensions + fullName: Voile.Resources.IResourceLoader.SupportedExtensions + nameWithType.vb: IResourceLoader(Of T).SupportedExtensions + fullName.vb: Voile.Resources.IResourceLoader(Of T).SupportedExtensions +- uid: System.Collections.Generic.IEnumerable`1 + commentId: T:System.Collections.Generic.IEnumerable`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + name: IEnumerable + nameWithType: IEnumerable + fullName: System.Collections.Generic.IEnumerable + nameWithType.vb: IEnumerable(Of T) + fullName.vb: System.Collections.Generic.IEnumerable(Of T) + name.vb: IEnumerable(Of T) + spec.csharp: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: Voile.Resources.SoundLoader.Load* + commentId: Overload:Voile.Resources.SoundLoader.Load + href: Voile.Resources.SoundLoader.html#Voile_Resources_SoundLoader_Load_System_String_ + name: Load + nameWithType: SoundLoader.Load + fullName: Voile.Resources.SoundLoader.Load +- uid: Voile.Resources.IResourceLoader{Voile.Sound}.Load(System.String) + commentId: M:Voile.Resources.IResourceLoader{Voile.Sound}.Load(System.String) + parent: Voile.Resources.IResourceLoader{Voile.Sound} + definition: Voile.Resources.IResourceLoader`1.Load(System.String) + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + name: Load(string) + nameWithType: IResourceLoader.Load(string) + fullName: Voile.Resources.IResourceLoader.Load(string) + nameWithType.vb: IResourceLoader(Of Sound).Load(String) + fullName.vb: Voile.Resources.IResourceLoader(Of Voile.Sound).Load(String) + name.vb: Load(String) + spec.csharp: + - uid: Voile.Resources.IResourceLoader{Voile.Sound}.Load(System.String) + name: Load + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Resources.IResourceLoader{Voile.Sound}.Load(System.String) + name: Load + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.Sound + commentId: T:Voile.Sound + parent: Voile + href: Voile.Sound.html + name: Sound + nameWithType: Sound + fullName: Voile.Sound +- uid: Voile.Resources.IResourceLoader`1.Load(System.String) + commentId: M:Voile.Resources.IResourceLoader`1.Load(System.String) + isExternal: true + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + name: Load(string) + nameWithType: IResourceLoader.Load(string) + fullName: Voile.Resources.IResourceLoader.Load(string) + nameWithType.vb: IResourceLoader(Of T).Load(String) + fullName.vb: Voile.Resources.IResourceLoader(Of T).Load(String) + name.vb: Load(String) + spec.csharp: + - uid: Voile.Resources.IResourceLoader`1.Load(System.String) + name: Load + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Resources.IResourceLoader`1.Load(System.String) + name: Load + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile diff --git a/Voile/api/Voile.Resources.yml b/Voile/api/Voile.Resources.yml new file mode 100644 index 0000000..72ef76f --- /dev/null +++ b/Voile/api/Voile.Resources.yml @@ -0,0 +1,112 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Resources + commentId: N:Voile.Resources + id: Voile.Resources + children: + - Voile.Resources.FontLoader + - Voile.Resources.IResourceLoader`1 + - Voile.Resources.IResourceSaver`1 + - Voile.Resources.ResourceManager + - Voile.Resources.SoundLoader + langs: + - csharp + - vb + name: Voile.Resources + nameWithType: Voile.Resources + fullName: Voile.Resources + type: Namespace + assemblies: + - Voile +references: +- uid: Voile.Resources.FontLoader + commentId: T:Voile.Resources.FontLoader + href: Voile.Resources.FontLoader.html + name: FontLoader + nameWithType: FontLoader + fullName: Voile.Resources.FontLoader +- uid: Voile.Resources.IResourceLoader`1 + commentId: T:Voile.Resources.IResourceLoader`1 + href: Voile.Resources.IResourceLoader-1.html + name: IResourceLoader + nameWithType: IResourceLoader + fullName: Voile.Resources.IResourceLoader + nameWithType.vb: IResourceLoader(Of T) + fullName.vb: Voile.Resources.IResourceLoader(Of T) + name.vb: IResourceLoader(Of T) + spec.csharp: + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + href: Voile.Resources.IResourceLoader-1.html + - name: < + - name: T + - name: '>' + spec.vb: + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + href: Voile.Resources.IResourceLoader-1.html + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: Voile.Resources.SoundLoader + commentId: T:Voile.Resources.SoundLoader + href: Voile.Resources.SoundLoader.html + name: SoundLoader + nameWithType: SoundLoader + fullName: Voile.Resources.SoundLoader +- uid: Voile.Resources.ResourceManager + commentId: T:Voile.Resources.ResourceManager + parent: Voile.Resources + href: Voile.Resources.ResourceManager.html + name: ResourceManager + nameWithType: ResourceManager + fullName: Voile.Resources.ResourceManager +- uid: Voile.Resources.IResourceSaver`1 + commentId: T:Voile.Resources.IResourceSaver`1 + href: Voile.Resources.IResourceSaver-1.html + name: IResourceSaver + nameWithType: IResourceSaver + fullName: Voile.Resources.IResourceSaver + nameWithType.vb: IResourceSaver(Of T) + fullName.vb: Voile.Resources.IResourceSaver(Of T) + name.vb: IResourceSaver(Of T) + spec.csharp: + - uid: Voile.Resources.IResourceSaver`1 + name: IResourceSaver + href: Voile.Resources.IResourceSaver-1.html + - name: < + - name: T + - name: '>' + spec.vb: + - uid: Voile.Resources.IResourceSaver`1 + name: IResourceSaver + href: Voile.Resources.IResourceSaver-1.html + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: Voile.Resources + commentId: N:Voile.Resources + href: Voile.html + name: Voile.Resources + nameWithType: Voile.Resources + fullName: Voile.Resources + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html diff --git a/Voile/api/Voile.SceneGraph.Camera2d.yml b/Voile/api/Voile.SceneGraph.Camera2d.yml new file mode 100644 index 0000000..e38f9e0 --- /dev/null +++ b/Voile/api/Voile.SceneGraph.Camera2d.yml @@ -0,0 +1,765 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.Camera2d + commentId: T:Voile.SceneGraph.Camera2d + id: Camera2d + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.Camera2d.Current + - Voile.SceneGraph.Camera2d.Offset + - Voile.SceneGraph.Camera2d.OnStart + - Voile.SceneGraph.Camera2d.Zoom + langs: + - csharp + - vb + name: Camera2d + nameWithType: Camera2d + fullName: Voile.SceneGraph.Camera2d + type: Class + source: + remote: + path: Voile/Source/SceneGraph/Camera2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Camera2d + path: Source/SceneGraph/Camera2d.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: 'public class Camera2d : Entity2d' + content.vb: Public Class Camera2d Inherits Entity2d + inheritance: + - System.Object + - Voile.SceneGraph.Entity + - Voile.SceneGraph.Entity2d + inheritedMembers: + - Voile.SceneGraph.Entity2d.Position + - Voile.SceneGraph.Entity2d.Rotation + - Voile.SceneGraph.Entity.Layer + - Voile.SceneGraph.Entity.Input + - Voile.SceneGraph.Entity.Audio + - Voile.SceneGraph.Entity.Renderer + - Voile.SceneGraph.Entity.Id + - Voile.SceneGraph.Entity.Start + - Voile.SceneGraph.Entity.Update(System.Double) + - Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Entity.OnDestroy + - Voile.SceneGraph.Entity.OnUpdate(System.Double) + - Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Entity.Destroy + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.SceneGraph.Camera2d.Offset + commentId: P:Voile.SceneGraph.Camera2d.Offset + id: Offset + parent: Voile.SceneGraph.Camera2d + langs: + - csharp + - vb + name: Offset + nameWithType: Camera2d.Offset + fullName: Voile.SceneGraph.Camera2d.Offset + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Camera2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Offset + path: Source/SceneGraph/Camera2d.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Vector2 Offset { get; set; } + parameters: [] + return: + type: System.Numerics.Vector2 + content.vb: Public Property Offset As Vector2 + overload: Voile.SceneGraph.Camera2d.Offset* +- uid: Voile.SceneGraph.Camera2d.Zoom + commentId: P:Voile.SceneGraph.Camera2d.Zoom + id: Zoom + parent: Voile.SceneGraph.Camera2d + langs: + - csharp + - vb + name: Zoom + nameWithType: Camera2d.Zoom + fullName: Voile.SceneGraph.Camera2d.Zoom + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Camera2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Zoom + path: Source/SceneGraph/Camera2d.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public float Zoom { get; set; } + parameters: [] + return: + type: System.Single + content.vb: Public Property Zoom As Single + overload: Voile.SceneGraph.Camera2d.Zoom* +- uid: Voile.SceneGraph.Camera2d.Current + commentId: P:Voile.SceneGraph.Camera2d.Current + id: Current + parent: Voile.SceneGraph.Camera2d + langs: + - csharp + - vb + name: Current + nameWithType: Camera2d.Current + fullName: Voile.SceneGraph.Camera2d.Current + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Camera2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Current + path: Source/SceneGraph/Camera2d.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public bool Current { get; set; } + parameters: [] + return: + type: System.Boolean + content.vb: Public Property Current As Boolean + overload: Voile.SceneGraph.Camera2d.Current* +- uid: Voile.SceneGraph.Camera2d.OnStart + commentId: M:Voile.SceneGraph.Camera2d.OnStart + id: OnStart + parent: Voile.SceneGraph.Camera2d + langs: + - csharp + - vb + name: OnStart() + nameWithType: Camera2d.OnStart() + fullName: Voile.SceneGraph.Camera2d.OnStart() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Camera2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnStart + path: Source/SceneGraph/Camera2d.cs + startLine: 17 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: protected override void OnStart() + content.vb: Protected Overrides Sub OnStart() + overridden: Voile.SceneGraph.Entity.OnStart + overload: Voile.SceneGraph.Camera2d.OnStart* +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.SceneGraph.Entity + commentId: T:Voile.SceneGraph.Entity + parent: Voile.SceneGraph + href: Voile.SceneGraph.Entity.html + name: Entity + nameWithType: Entity + fullName: Voile.SceneGraph.Entity +- uid: Voile.SceneGraph.Entity2d + commentId: T:Voile.SceneGraph.Entity2d + parent: Voile.SceneGraph + href: Voile.SceneGraph.Entity2d.html + name: Entity2d + nameWithType: Entity2d + fullName: Voile.SceneGraph.Entity2d +- uid: Voile.SceneGraph.Entity2d.Position + commentId: P:Voile.SceneGraph.Entity2d.Position + parent: Voile.SceneGraph.Entity2d + href: Voile.SceneGraph.Entity2d.html#Voile_SceneGraph_Entity2d_Position + name: Position + nameWithType: Entity2d.Position + fullName: Voile.SceneGraph.Entity2d.Position +- uid: Voile.SceneGraph.Entity2d.Rotation + commentId: P:Voile.SceneGraph.Entity2d.Rotation + parent: Voile.SceneGraph.Entity2d + href: Voile.SceneGraph.Entity2d.html#Voile_SceneGraph_Entity2d_Rotation + name: Rotation + nameWithType: Entity2d.Rotation + fullName: Voile.SceneGraph.Entity2d.Rotation +- uid: Voile.SceneGraph.Entity.Layer + commentId: P:Voile.SceneGraph.Entity.Layer + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Layer + name: Layer + nameWithType: Entity.Layer + fullName: Voile.SceneGraph.Entity.Layer +- uid: Voile.SceneGraph.Entity.Input + commentId: P:Voile.SceneGraph.Entity.Input + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Input + name: Input + nameWithType: Entity.Input + fullName: Voile.SceneGraph.Entity.Input +- uid: Voile.SceneGraph.Entity.Audio + commentId: P:Voile.SceneGraph.Entity.Audio + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Audio + name: Audio + nameWithType: Entity.Audio + fullName: Voile.SceneGraph.Entity.Audio +- uid: Voile.SceneGraph.Entity.Renderer + commentId: P:Voile.SceneGraph.Entity.Renderer + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Renderer + name: Renderer + nameWithType: Entity.Renderer + fullName: Voile.SceneGraph.Entity.Renderer +- uid: Voile.SceneGraph.Entity.Id + commentId: P:Voile.SceneGraph.Entity.Id + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Id + name: Id + nameWithType: Entity.Id + fullName: Voile.SceneGraph.Entity.Id +- uid: Voile.SceneGraph.Entity.Start + commentId: M:Voile.SceneGraph.Entity.Start + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + name: Start() + nameWithType: Entity.Start() + fullName: Voile.SceneGraph.Entity.Start() + spec.csharp: + - uid: Voile.SceneGraph.Entity.Start + name: Start + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Start + name: Start + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.Update(System.Double) + commentId: M:Voile.SceneGraph.Entity.Update(System.Double) + parent: Voile.SceneGraph.Entity + isExternal: true + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + name: Update(double) + nameWithType: Entity.Update(double) + fullName: Voile.SceneGraph.Entity.Update(double) + nameWithType.vb: Entity.Update(Double) + fullName.vb: Voile.SceneGraph.Entity.Update(Double) + name.vb: Update(Double) + spec.csharp: + - uid: Voile.SceneGraph.Entity.Update(System.Double) + name: Update + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Update(System.Double) + name: Update + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + name: ReceiveInput(InputSystem) + nameWithType: Entity.ReceiveInput(InputSystem) + fullName: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity.OnDestroy + commentId: M:Voile.SceneGraph.Entity.OnDestroy + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + name: OnDestroy() + nameWithType: Entity.OnDestroy() + fullName: Voile.SceneGraph.Entity.OnDestroy() + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnDestroy + name: OnDestroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnDestroy + name: OnDestroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + commentId: M:Voile.SceneGraph.Entity.OnUpdate(System.Double) + parent: Voile.SceneGraph.Entity + isExternal: true + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + name: OnUpdate(double) + nameWithType: Entity.OnUpdate(double) + fullName: Voile.SceneGraph.Entity.OnUpdate(double) + nameWithType.vb: Entity.OnUpdate(Double) + fullName.vb: Voile.SceneGraph.Entity.OnUpdate(Double) + name.vb: OnUpdate(Double) + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + name: OnInput(InputSystem) + nameWithType: Entity.OnInput(InputSystem) + fullName: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity.Destroy + commentId: M:Voile.SceneGraph.Entity.Destroy + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + name: Destroy() + nameWithType: Entity.Destroy() + fullName: Voile.SceneGraph.Entity.Destroy() + spec.csharp: + - uid: Voile.SceneGraph.Entity.Destroy + name: Destroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Destroy + name: Destroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.SceneGraph.Camera2d.Offset* + commentId: Overload:Voile.SceneGraph.Camera2d.Offset + href: Voile.SceneGraph.Camera2d.html#Voile_SceneGraph_Camera2d_Offset + name: Offset + nameWithType: Camera2d.Offset + fullName: Voile.SceneGraph.Camera2d.Offset +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: Voile.SceneGraph.Camera2d.Zoom* + commentId: Overload:Voile.SceneGraph.Camera2d.Zoom + href: Voile.SceneGraph.Camera2d.html#Voile_SceneGraph_Camera2d_Zoom + name: Zoom + nameWithType: Camera2d.Zoom + fullName: Voile.SceneGraph.Camera2d.Zoom +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: Voile.SceneGraph.Camera2d.Current* + commentId: Overload:Voile.SceneGraph.Camera2d.Current + href: Voile.SceneGraph.Camera2d.html#Voile_SceneGraph_Camera2d_Current + name: Current + nameWithType: Camera2d.Current + fullName: Voile.SceneGraph.Camera2d.Current +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: Voile.SceneGraph.Entity.OnStart + commentId: M:Voile.SceneGraph.Entity.OnStart + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + name: OnStart() + nameWithType: Entity.OnStart() + fullName: Voile.SceneGraph.Entity.OnStart() + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnStart + name: OnStart + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnStart + name: OnStart + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + - name: ( + - name: ) +- uid: Voile.SceneGraph.Camera2d.OnStart* + commentId: Overload:Voile.SceneGraph.Camera2d.OnStart + href: Voile.SceneGraph.Camera2d.html#Voile_SceneGraph_Camera2d_OnStart + name: OnStart + nameWithType: Camera2d.OnStart + fullName: Voile.SceneGraph.Camera2d.OnStart diff --git a/Voile/api/Voile.SceneGraph.CircleShape2d.yml b/Voile/api/Voile.SceneGraph.CircleShape2d.yml new file mode 100644 index 0000000..b57930d --- /dev/null +++ b/Voile/api/Voile.SceneGraph.CircleShape2d.yml @@ -0,0 +1,805 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.CircleShape2d + commentId: T:Voile.SceneGraph.CircleShape2d + id: CircleShape2d + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.CircleShape2d.Color + - Voile.SceneGraph.CircleShape2d.OnDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.CircleShape2d.Radius + langs: + - csharp + - vb + name: CircleShape2d + nameWithType: CircleShape2d + fullName: Voile.SceneGraph.CircleShape2d + type: Class + source: + remote: + path: Voile/Source/SceneGraph/Entities/CircleShape2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CircleShape2d + path: Source/SceneGraph/Entities/CircleShape2d.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: 'public class CircleShape2d : Drawable2d, IDrawable' + content.vb: Public Class CircleShape2d Inherits Drawable2d Implements IDrawable + inheritance: + - System.Object + - Voile.SceneGraph.Entity + - Voile.SceneGraph.Entity2d + - Voile.SceneGraph.Drawable2d + implements: + - Voile.SceneGraph.IDrawable + inheritedMembers: + - Voile.SceneGraph.Drawable2d.PivotOffset + - Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Entity2d.Position + - Voile.SceneGraph.Entity2d.Rotation + - Voile.SceneGraph.Entity.Layer + - Voile.SceneGraph.Entity.Input + - Voile.SceneGraph.Entity.Audio + - Voile.SceneGraph.Entity.Renderer + - Voile.SceneGraph.Entity.Id + - Voile.SceneGraph.Entity.Start + - Voile.SceneGraph.Entity.Update(System.Double) + - Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Entity.OnStart + - Voile.SceneGraph.Entity.OnDestroy + - Voile.SceneGraph.Entity.OnUpdate(System.Double) + - Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Entity.Destroy + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.SceneGraph.CircleShape2d.Radius + commentId: P:Voile.SceneGraph.CircleShape2d.Radius + id: Radius + parent: Voile.SceneGraph.CircleShape2d + langs: + - csharp + - vb + name: Radius + nameWithType: CircleShape2d.Radius + fullName: Voile.SceneGraph.CircleShape2d.Radius + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Entities/CircleShape2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Radius + path: Source/SceneGraph/Entities/CircleShape2d.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public float Radius { get; set; } + parameters: [] + return: + type: System.Single + content.vb: Public Property Radius As Single + overload: Voile.SceneGraph.CircleShape2d.Radius* +- uid: Voile.SceneGraph.CircleShape2d.Color + commentId: P:Voile.SceneGraph.CircleShape2d.Color + id: Color + parent: Voile.SceneGraph.CircleShape2d + langs: + - csharp + - vb + name: Color + nameWithType: CircleShape2d.Color + fullName: Voile.SceneGraph.CircleShape2d.Color + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Entities/CircleShape2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Color + path: Source/SceneGraph/Entities/CircleShape2d.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Color Color { get; set; } + parameters: [] + return: + type: Voile.Color + content.vb: Public Property Color As Color + overload: Voile.SceneGraph.CircleShape2d.Color* +- uid: Voile.SceneGraph.CircleShape2d.OnDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.CircleShape2d.OnDraw(Voile.Rendering.RenderSystem) + id: OnDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.CircleShape2d + langs: + - csharp + - vb + name: OnDraw(RenderSystem) + nameWithType: CircleShape2d.OnDraw(RenderSystem) + fullName: Voile.SceneGraph.CircleShape2d.OnDraw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/CircleShape2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnDraw + path: Source/SceneGraph/Entities/CircleShape2d.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: public override void OnDraw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Public Overrides Sub OnDraw(renderer As RenderSystem) + overridden: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + overload: Voile.SceneGraph.CircleShape2d.OnDraw* +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.SceneGraph.Entity + commentId: T:Voile.SceneGraph.Entity + parent: Voile.SceneGraph + href: Voile.SceneGraph.Entity.html + name: Entity + nameWithType: Entity + fullName: Voile.SceneGraph.Entity +- uid: Voile.SceneGraph.Entity2d + commentId: T:Voile.SceneGraph.Entity2d + parent: Voile.SceneGraph + href: Voile.SceneGraph.Entity2d.html + name: Entity2d + nameWithType: Entity2d + fullName: Voile.SceneGraph.Entity2d +- uid: Voile.SceneGraph.Drawable2d + commentId: T:Voile.SceneGraph.Drawable2d + parent: Voile.SceneGraph + href: Voile.SceneGraph.Drawable2d.html + name: Drawable2d + nameWithType: Drawable2d + fullName: Voile.SceneGraph.Drawable2d +- uid: Voile.SceneGraph.IDrawable + commentId: T:Voile.SceneGraph.IDrawable + parent: Voile.SceneGraph + href: Voile.SceneGraph.IDrawable.html + name: IDrawable + nameWithType: IDrawable + fullName: Voile.SceneGraph.IDrawable +- uid: Voile.SceneGraph.Drawable2d.PivotOffset + commentId: P:Voile.SceneGraph.Drawable2d.PivotOffset + parent: Voile.SceneGraph.Drawable2d + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_PivotOffset + name: PivotOffset + nameWithType: Drawable2d.PivotOffset + fullName: Voile.SceneGraph.Drawable2d.PivotOffset +- uid: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Drawable2d + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_Draw_Voile_Rendering_RenderSystem_ + name: Draw(RenderSystem) + nameWithType: Drawable2d.Draw(RenderSystem) + fullName: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity2d.Position + commentId: P:Voile.SceneGraph.Entity2d.Position + parent: Voile.SceneGraph.Entity2d + href: Voile.SceneGraph.Entity2d.html#Voile_SceneGraph_Entity2d_Position + name: Position + nameWithType: Entity2d.Position + fullName: Voile.SceneGraph.Entity2d.Position +- uid: Voile.SceneGraph.Entity2d.Rotation + commentId: P:Voile.SceneGraph.Entity2d.Rotation + parent: Voile.SceneGraph.Entity2d + href: Voile.SceneGraph.Entity2d.html#Voile_SceneGraph_Entity2d_Rotation + name: Rotation + nameWithType: Entity2d.Rotation + fullName: Voile.SceneGraph.Entity2d.Rotation +- uid: Voile.SceneGraph.Entity.Layer + commentId: P:Voile.SceneGraph.Entity.Layer + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Layer + name: Layer + nameWithType: Entity.Layer + fullName: Voile.SceneGraph.Entity.Layer +- uid: Voile.SceneGraph.Entity.Input + commentId: P:Voile.SceneGraph.Entity.Input + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Input + name: Input + nameWithType: Entity.Input + fullName: Voile.SceneGraph.Entity.Input +- uid: Voile.SceneGraph.Entity.Audio + commentId: P:Voile.SceneGraph.Entity.Audio + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Audio + name: Audio + nameWithType: Entity.Audio + fullName: Voile.SceneGraph.Entity.Audio +- uid: Voile.SceneGraph.Entity.Renderer + commentId: P:Voile.SceneGraph.Entity.Renderer + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Renderer + name: Renderer + nameWithType: Entity.Renderer + fullName: Voile.SceneGraph.Entity.Renderer +- uid: Voile.SceneGraph.Entity.Id + commentId: P:Voile.SceneGraph.Entity.Id + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Id + name: Id + nameWithType: Entity.Id + fullName: Voile.SceneGraph.Entity.Id +- uid: Voile.SceneGraph.Entity.Start + commentId: M:Voile.SceneGraph.Entity.Start + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + name: Start() + nameWithType: Entity.Start() + fullName: Voile.SceneGraph.Entity.Start() + spec.csharp: + - uid: Voile.SceneGraph.Entity.Start + name: Start + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Start + name: Start + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.Update(System.Double) + commentId: M:Voile.SceneGraph.Entity.Update(System.Double) + parent: Voile.SceneGraph.Entity + isExternal: true + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + name: Update(double) + nameWithType: Entity.Update(double) + fullName: Voile.SceneGraph.Entity.Update(double) + nameWithType.vb: Entity.Update(Double) + fullName.vb: Voile.SceneGraph.Entity.Update(Double) + name.vb: Update(Double) + spec.csharp: + - uid: Voile.SceneGraph.Entity.Update(System.Double) + name: Update + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Update(System.Double) + name: Update + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + name: ReceiveInput(InputSystem) + nameWithType: Entity.ReceiveInput(InputSystem) + fullName: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity.OnStart + commentId: M:Voile.SceneGraph.Entity.OnStart + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + name: OnStart() + nameWithType: Entity.OnStart() + fullName: Voile.SceneGraph.Entity.OnStart() + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnStart + name: OnStart + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnStart + name: OnStart + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.OnDestroy + commentId: M:Voile.SceneGraph.Entity.OnDestroy + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + name: OnDestroy() + nameWithType: Entity.OnDestroy() + fullName: Voile.SceneGraph.Entity.OnDestroy() + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnDestroy + name: OnDestroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnDestroy + name: OnDestroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + commentId: M:Voile.SceneGraph.Entity.OnUpdate(System.Double) + parent: Voile.SceneGraph.Entity + isExternal: true + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + name: OnUpdate(double) + nameWithType: Entity.OnUpdate(double) + fullName: Voile.SceneGraph.Entity.OnUpdate(double) + nameWithType.vb: Entity.OnUpdate(Double) + fullName.vb: Voile.SceneGraph.Entity.OnUpdate(Double) + name.vb: OnUpdate(Double) + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + name: OnInput(InputSystem) + nameWithType: Entity.OnInput(InputSystem) + fullName: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity.Destroy + commentId: M:Voile.SceneGraph.Entity.Destroy + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + name: Destroy() + nameWithType: Entity.Destroy() + fullName: Voile.SceneGraph.Entity.Destroy() + spec.csharp: + - uid: Voile.SceneGraph.Entity.Destroy + name: Destroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Destroy + name: Destroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.SceneGraph.CircleShape2d.Radius* + commentId: Overload:Voile.SceneGraph.CircleShape2d.Radius + href: Voile.SceneGraph.CircleShape2d.html#Voile_SceneGraph_CircleShape2d_Radius + name: Radius + nameWithType: CircleShape2d.Radius + fullName: Voile.SceneGraph.CircleShape2d.Radius +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: Voile.SceneGraph.CircleShape2d.Color* + commentId: Overload:Voile.SceneGraph.CircleShape2d.Color + href: Voile.SceneGraph.CircleShape2d.html#Voile_SceneGraph_CircleShape2d_Color + name: Color + nameWithType: CircleShape2d.Color + fullName: Voile.SceneGraph.CircleShape2d.Color +- uid: Voile.Color + commentId: T:Voile.Color + parent: Voile + href: Voile.Color.html + name: Color + nameWithType: Color + fullName: Voile.Color +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Drawable2d + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_OnDraw_Voile_Rendering_RenderSystem_ + name: OnDraw(RenderSystem) + nameWithType: Drawable2d.OnDraw(RenderSystem) + fullName: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + name: OnDraw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_OnDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + name: OnDraw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_OnDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.CircleShape2d.OnDraw* + commentId: Overload:Voile.SceneGraph.CircleShape2d.OnDraw + href: Voile.SceneGraph.CircleShape2d.html#Voile_SceneGraph_CircleShape2d_OnDraw_Voile_Rendering_RenderSystem_ + name: OnDraw + nameWithType: CircleShape2d.OnDraw + fullName: Voile.SceneGraph.CircleShape2d.OnDraw +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html diff --git a/Voile/api/Voile.SceneGraph.Drawable2d.yml b/Voile/api/Voile.SceneGraph.Drawable2d.yml new file mode 100644 index 0000000..e3a0ba2 --- /dev/null +++ b/Voile/api/Voile.SceneGraph.Drawable2d.yml @@ -0,0 +1,781 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.Drawable2d + commentId: T:Voile.SceneGraph.Drawable2d + id: Drawable2d + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Drawable2d.PivotOffset + langs: + - csharp + - vb + name: Drawable2d + nameWithType: Drawable2d + fullName: Voile.SceneGraph.Drawable2d + type: Class + source: + remote: + path: Voile/Source/SceneGraph/Entities/Drawable2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Drawable2d + path: Source/SceneGraph/Entities/Drawable2d.cs + startLine: 5 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: 'public abstract class Drawable2d : Entity2d, IDrawable' + content.vb: Public MustInherit Class Drawable2d Inherits Entity2d Implements IDrawable + inheritance: + - System.Object + - Voile.SceneGraph.Entity + - Voile.SceneGraph.Entity2d + derivedClasses: + - Voile.SceneGraph.CircleShape2d + - Voile.SceneGraph.Particles2d + - Voile.SceneGraph.RectangleShape2d + - Voile.SceneGraph.Sprite2d + - Voile.SceneGraph.Text2d + implements: + - Voile.SceneGraph.IDrawable + inheritedMembers: + - Voile.SceneGraph.Entity2d.Position + - Voile.SceneGraph.Entity2d.Rotation + - Voile.SceneGraph.Entity.Layer + - Voile.SceneGraph.Entity.Input + - Voile.SceneGraph.Entity.Audio + - Voile.SceneGraph.Entity.Renderer + - Voile.SceneGraph.Entity.Id + - Voile.SceneGraph.Entity.Start + - Voile.SceneGraph.Entity.Update(System.Double) + - Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Entity.OnStart + - Voile.SceneGraph.Entity.OnDestroy + - Voile.SceneGraph.Entity.OnUpdate(System.Double) + - Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Entity.Destroy + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.SceneGraph.Drawable2d.PivotOffset + commentId: P:Voile.SceneGraph.Drawable2d.PivotOffset + id: PivotOffset + parent: Voile.SceneGraph.Drawable2d + langs: + - csharp + - vb + name: PivotOffset + nameWithType: Drawable2d.PivotOffset + fullName: Voile.SceneGraph.Drawable2d.PivotOffset + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Entities/Drawable2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: PivotOffset + path: Source/SceneGraph/Entities/Drawable2d.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Vector2 PivotOffset { get; set; } + parameters: [] + return: + type: System.Numerics.Vector2 + content.vb: Public Property PivotOffset As Vector2 + overload: Voile.SceneGraph.Drawable2d.PivotOffset* +- uid: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + id: Draw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Drawable2d + langs: + - csharp + - vb + name: Draw(RenderSystem) + nameWithType: Drawable2d.Draw(RenderSystem) + fullName: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/Drawable2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Draw + path: Source/SceneGraph/Entities/Drawable2d.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: public void Draw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Public Sub Draw(renderer As RenderSystem) + overload: Voile.SceneGraph.Drawable2d.Draw* + implements: + - Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) +- uid: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + id: OnDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Drawable2d + langs: + - csharp + - vb + name: OnDraw(RenderSystem) + nameWithType: Drawable2d.OnDraw(RenderSystem) + fullName: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/Drawable2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnDraw + path: Source/SceneGraph/Entities/Drawable2d.cs + startLine: 14 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public abstract void OnDraw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Public MustOverride Sub OnDraw(renderer As RenderSystem) + overload: Voile.SceneGraph.Drawable2d.OnDraw* +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.SceneGraph.Entity + commentId: T:Voile.SceneGraph.Entity + parent: Voile.SceneGraph + href: Voile.SceneGraph.Entity.html + name: Entity + nameWithType: Entity + fullName: Voile.SceneGraph.Entity +- uid: Voile.SceneGraph.Entity2d + commentId: T:Voile.SceneGraph.Entity2d + parent: Voile.SceneGraph + href: Voile.SceneGraph.Entity2d.html + name: Entity2d + nameWithType: Entity2d + fullName: Voile.SceneGraph.Entity2d +- uid: Voile.SceneGraph.IDrawable + commentId: T:Voile.SceneGraph.IDrawable + parent: Voile.SceneGraph + href: Voile.SceneGraph.IDrawable.html + name: IDrawable + nameWithType: IDrawable + fullName: Voile.SceneGraph.IDrawable +- uid: Voile.SceneGraph.Entity2d.Position + commentId: P:Voile.SceneGraph.Entity2d.Position + parent: Voile.SceneGraph.Entity2d + href: Voile.SceneGraph.Entity2d.html#Voile_SceneGraph_Entity2d_Position + name: Position + nameWithType: Entity2d.Position + fullName: Voile.SceneGraph.Entity2d.Position +- uid: Voile.SceneGraph.Entity2d.Rotation + commentId: P:Voile.SceneGraph.Entity2d.Rotation + parent: Voile.SceneGraph.Entity2d + href: Voile.SceneGraph.Entity2d.html#Voile_SceneGraph_Entity2d_Rotation + name: Rotation + nameWithType: Entity2d.Rotation + fullName: Voile.SceneGraph.Entity2d.Rotation +- uid: Voile.SceneGraph.Entity.Layer + commentId: P:Voile.SceneGraph.Entity.Layer + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Layer + name: Layer + nameWithType: Entity.Layer + fullName: Voile.SceneGraph.Entity.Layer +- uid: Voile.SceneGraph.Entity.Input + commentId: P:Voile.SceneGraph.Entity.Input + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Input + name: Input + nameWithType: Entity.Input + fullName: Voile.SceneGraph.Entity.Input +- uid: Voile.SceneGraph.Entity.Audio + commentId: P:Voile.SceneGraph.Entity.Audio + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Audio + name: Audio + nameWithType: Entity.Audio + fullName: Voile.SceneGraph.Entity.Audio +- uid: Voile.SceneGraph.Entity.Renderer + commentId: P:Voile.SceneGraph.Entity.Renderer + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Renderer + name: Renderer + nameWithType: Entity.Renderer + fullName: Voile.SceneGraph.Entity.Renderer +- uid: Voile.SceneGraph.Entity.Id + commentId: P:Voile.SceneGraph.Entity.Id + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Id + name: Id + nameWithType: Entity.Id + fullName: Voile.SceneGraph.Entity.Id +- uid: Voile.SceneGraph.Entity.Start + commentId: M:Voile.SceneGraph.Entity.Start + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + name: Start() + nameWithType: Entity.Start() + fullName: Voile.SceneGraph.Entity.Start() + spec.csharp: + - uid: Voile.SceneGraph.Entity.Start + name: Start + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Start + name: Start + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.Update(System.Double) + commentId: M:Voile.SceneGraph.Entity.Update(System.Double) + parent: Voile.SceneGraph.Entity + isExternal: true + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + name: Update(double) + nameWithType: Entity.Update(double) + fullName: Voile.SceneGraph.Entity.Update(double) + nameWithType.vb: Entity.Update(Double) + fullName.vb: Voile.SceneGraph.Entity.Update(Double) + name.vb: Update(Double) + spec.csharp: + - uid: Voile.SceneGraph.Entity.Update(System.Double) + name: Update + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Update(System.Double) + name: Update + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + name: ReceiveInput(InputSystem) + nameWithType: Entity.ReceiveInput(InputSystem) + fullName: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity.OnStart + commentId: M:Voile.SceneGraph.Entity.OnStart + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + name: OnStart() + nameWithType: Entity.OnStart() + fullName: Voile.SceneGraph.Entity.OnStart() + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnStart + name: OnStart + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnStart + name: OnStart + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.OnDestroy + commentId: M:Voile.SceneGraph.Entity.OnDestroy + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + name: OnDestroy() + nameWithType: Entity.OnDestroy() + fullName: Voile.SceneGraph.Entity.OnDestroy() + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnDestroy + name: OnDestroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnDestroy + name: OnDestroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + commentId: M:Voile.SceneGraph.Entity.OnUpdate(System.Double) + parent: Voile.SceneGraph.Entity + isExternal: true + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + name: OnUpdate(double) + nameWithType: Entity.OnUpdate(double) + fullName: Voile.SceneGraph.Entity.OnUpdate(double) + nameWithType.vb: Entity.OnUpdate(Double) + fullName.vb: Voile.SceneGraph.Entity.OnUpdate(Double) + name.vb: OnUpdate(Double) + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + name: OnInput(InputSystem) + nameWithType: Entity.OnInput(InputSystem) + fullName: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity.Destroy + commentId: M:Voile.SceneGraph.Entity.Destroy + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + name: Destroy() + nameWithType: Entity.Destroy() + fullName: Voile.SceneGraph.Entity.Destroy() + spec.csharp: + - uid: Voile.SceneGraph.Entity.Destroy + name: Destroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Destroy + name: Destroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.SceneGraph.Drawable2d.PivotOffset* + commentId: Overload:Voile.SceneGraph.Drawable2d.PivotOffset + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_PivotOffset + name: PivotOffset + nameWithType: Drawable2d.PivotOffset + fullName: Voile.SceneGraph.Drawable2d.PivotOffset +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: Voile.SceneGraph.Drawable2d.Draw* + commentId: Overload:Voile.SceneGraph.Drawable2d.Draw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_Draw_Voile_Rendering_RenderSystem_ + name: Draw + nameWithType: Drawable2d.Draw + fullName: Voile.SceneGraph.Drawable2d.Draw +- uid: Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.IDrawable + href: Voile.SceneGraph.IDrawable.html#Voile_SceneGraph_IDrawable_Draw_Voile_Rendering_RenderSystem_ + name: Draw(RenderSystem) + nameWithType: IDrawable.Draw(RenderSystem) + fullName: Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.IDrawable.html#Voile_SceneGraph_IDrawable_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.IDrawable.html#Voile_SceneGraph_IDrawable_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: Voile.SceneGraph.Drawable2d.OnDraw* + commentId: Overload:Voile.SceneGraph.Drawable2d.OnDraw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_OnDraw_Voile_Rendering_RenderSystem_ + name: OnDraw + nameWithType: Drawable2d.OnDraw + fullName: Voile.SceneGraph.Drawable2d.OnDraw diff --git a/Voile/api/Voile.SceneGraph.Entity.yml b/Voile/api/Voile.SceneGraph.Entity.yml new file mode 100644 index 0000000..a120567 --- /dev/null +++ b/Voile/api/Voile.SceneGraph.Entity.yml @@ -0,0 +1,918 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.Entity + commentId: T:Voile.SceneGraph.Entity + id: Entity + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.Entity.Audio + - Voile.SceneGraph.Entity.Destroy + - Voile.SceneGraph.Entity.Id + - Voile.SceneGraph.Entity.Input + - Voile.SceneGraph.Entity.Layer + - Voile.SceneGraph.Entity.OnDestroy + - Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Entity.OnStart + - Voile.SceneGraph.Entity.OnUpdate(System.Double) + - Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Entity.Renderer + - Voile.SceneGraph.Entity.Start + - Voile.SceneGraph.Entity.Update(System.Double) + langs: + - csharp + - vb + name: Entity + nameWithType: Entity + fullName: Voile.SceneGraph.Entity + type: Class + source: + remote: + path: Voile/Source/SceneGraph/Entities/Entity.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Entity + path: Source/SceneGraph/Entities/Entity.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public class Entity + content.vb: Public Class Entity + inheritance: + - System.Object + derivedClasses: + - Voile.SceneGraph.Entity2d + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.SceneGraph.Entity.Layer + commentId: P:Voile.SceneGraph.Entity.Layer + id: Layer + parent: Voile.SceneGraph.Entity + langs: + - csharp + - vb + name: Layer + nameWithType: Entity.Layer + fullName: Voile.SceneGraph.Entity.Layer + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Entities/Entity.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Layer + path: Source/SceneGraph/Entities/Entity.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: >- + [JsonIgnore] + + public EntityLayer? Layer { get; set; } + parameters: [] + return: + type: Voile.SceneGraph.EntityLayer + content.vb: >- + + + Public Property Layer As EntityLayer + overload: Voile.SceneGraph.Entity.Layer* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: Voile.SceneGraph.Entity.Input + commentId: P:Voile.SceneGraph.Entity.Input + id: Input + parent: Voile.SceneGraph.Entity + langs: + - csharp + - vb + name: Input + nameWithType: Entity.Input + fullName: Voile.SceneGraph.Entity.Input + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Entities/Entity.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Input + path: Source/SceneGraph/Entities/Entity.cs + startLine: 10 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: >- + [JsonIgnore] + + public InputSystem Input { get; } + parameters: [] + return: + type: Voile.Input.InputSystem + content.vb: >- + + + Public ReadOnly Property Input As InputSystem + overload: Voile.SceneGraph.Entity.Input* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: Voile.SceneGraph.Entity.Audio + commentId: P:Voile.SceneGraph.Entity.Audio + id: Audio + parent: Voile.SceneGraph.Entity + langs: + - csharp + - vb + name: Audio + nameWithType: Entity.Audio + fullName: Voile.SceneGraph.Entity.Audio + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Entities/Entity.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Audio + path: Source/SceneGraph/Entities/Entity.cs + startLine: 11 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: >- + [JsonIgnore] + + public AudioSystem Audio { get; } + parameters: [] + return: + type: Voile.Audio.AudioSystem + content.vb: >- + + + Public ReadOnly Property Audio As AudioSystem + overload: Voile.SceneGraph.Entity.Audio* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: Voile.SceneGraph.Entity.Renderer + commentId: P:Voile.SceneGraph.Entity.Renderer + id: Renderer + parent: Voile.SceneGraph.Entity + langs: + - csharp + - vb + name: Renderer + nameWithType: Entity.Renderer + fullName: Voile.SceneGraph.Entity.Renderer + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Entities/Entity.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Renderer + path: Source/SceneGraph/Entities/Entity.cs + startLine: 12 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: >- + [JsonIgnore] + + public RenderSystem Renderer { get; } + parameters: [] + return: + type: Voile.Rendering.RenderSystem + content.vb: >- + + + Public ReadOnly Property Renderer As RenderSystem + overload: Voile.SceneGraph.Entity.Renderer* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: Voile.SceneGraph.Entity.Id + commentId: P:Voile.SceneGraph.Entity.Id + id: Id + parent: Voile.SceneGraph.Entity + langs: + - csharp + - vb + name: Id + nameWithType: Entity.Id + fullName: Voile.SceneGraph.Entity.Id + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Entities/Entity.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Id + path: Source/SceneGraph/Entities/Entity.cs + startLine: 13 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public int Id { get; set; } + parameters: [] + return: + type: System.Int32 + content.vb: Public Property Id As Integer + overload: Voile.SceneGraph.Entity.Id* +- uid: Voile.SceneGraph.Entity.Start + commentId: M:Voile.SceneGraph.Entity.Start + id: Start + parent: Voile.SceneGraph.Entity + langs: + - csharp + - vb + name: Start() + nameWithType: Entity.Start() + fullName: Voile.SceneGraph.Entity.Start() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/Entity.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Start + path: Source/SceneGraph/Entities/Entity.cs + startLine: 15 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void Start() + content.vb: Public Sub Start() + overload: Voile.SceneGraph.Entity.Start* +- uid: Voile.SceneGraph.Entity.Update(System.Double) + commentId: M:Voile.SceneGraph.Entity.Update(System.Double) + id: Update(System.Double) + parent: Voile.SceneGraph.Entity + langs: + - csharp + - vb + name: Update(double) + nameWithType: Entity.Update(double) + fullName: Voile.SceneGraph.Entity.Update(double) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/Entity.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Update + path: Source/SceneGraph/Entities/Entity.cs + startLine: 16 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void Update(double dt) + parameters: + - id: dt + type: System.Double + content.vb: Public Sub Update(dt As Double) + overload: Voile.SceneGraph.Entity.Update* + nameWithType.vb: Entity.Update(Double) + fullName.vb: Voile.SceneGraph.Entity.Update(Double) + name.vb: Update(Double) +- uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + id: ReceiveInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Entity + langs: + - csharp + - vb + name: ReceiveInput(InputSystem) + nameWithType: Entity.ReceiveInput(InputSystem) + fullName: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/Entity.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ReceiveInput + path: Source/SceneGraph/Entities/Entity.cs + startLine: 17 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void ReceiveInput(InputSystem input) + parameters: + - id: input + type: Voile.Input.InputSystem + content.vb: Public Sub ReceiveInput(input As InputSystem) + overload: Voile.SceneGraph.Entity.ReceiveInput* +- uid: Voile.SceneGraph.Entity.OnStart + commentId: M:Voile.SceneGraph.Entity.OnStart + id: OnStart + parent: Voile.SceneGraph.Entity + langs: + - csharp + - vb + name: OnStart() + nameWithType: Entity.OnStart() + fullName: Voile.SceneGraph.Entity.OnStart() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/Entity.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnStart + path: Source/SceneGraph/Entities/Entity.cs + startLine: 19 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: protected virtual void OnStart() + content.vb: Protected Overridable Sub OnStart() + overload: Voile.SceneGraph.Entity.OnStart* +- uid: Voile.SceneGraph.Entity.OnDestroy + commentId: M:Voile.SceneGraph.Entity.OnDestroy + id: OnDestroy + parent: Voile.SceneGraph.Entity + langs: + - csharp + - vb + name: OnDestroy() + nameWithType: Entity.OnDestroy() + fullName: Voile.SceneGraph.Entity.OnDestroy() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/Entity.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnDestroy + path: Source/SceneGraph/Entities/Entity.cs + startLine: 20 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: protected virtual void OnDestroy() + content.vb: Protected Overridable Sub OnDestroy() + overload: Voile.SceneGraph.Entity.OnDestroy* +- uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + commentId: M:Voile.SceneGraph.Entity.OnUpdate(System.Double) + id: OnUpdate(System.Double) + parent: Voile.SceneGraph.Entity + langs: + - csharp + - vb + name: OnUpdate(double) + nameWithType: Entity.OnUpdate(double) + fullName: Voile.SceneGraph.Entity.OnUpdate(double) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/Entity.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnUpdate + path: Source/SceneGraph/Entities/Entity.cs + startLine: 21 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: protected virtual void OnUpdate(double dt) + parameters: + - id: dt + type: System.Double + content.vb: Protected Overridable Sub OnUpdate(dt As Double) + overload: Voile.SceneGraph.Entity.OnUpdate* + nameWithType.vb: Entity.OnUpdate(Double) + fullName.vb: Voile.SceneGraph.Entity.OnUpdate(Double) + name.vb: OnUpdate(Double) +- uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + id: OnInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Entity + langs: + - csharp + - vb + name: OnInput(InputSystem) + nameWithType: Entity.OnInput(InputSystem) + fullName: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/Entity.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnInput + path: Source/SceneGraph/Entities/Entity.cs + startLine: 22 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: protected virtual void OnInput(InputSystem input) + parameters: + - id: input + type: Voile.Input.InputSystem + content.vb: Protected Overridable Sub OnInput(input As InputSystem) + overload: Voile.SceneGraph.Entity.OnInput* +- uid: Voile.SceneGraph.Entity.Destroy + commentId: M:Voile.SceneGraph.Entity.Destroy + id: Destroy + parent: Voile.SceneGraph.Entity + langs: + - csharp + - vb + name: Destroy() + nameWithType: Entity.Destroy() + fullName: Voile.SceneGraph.Entity.Destroy() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/Entity.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Destroy + path: Source/SceneGraph/Entities/Entity.cs + startLine: 24 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void Destroy() + content.vb: Public Sub Destroy() + overload: Voile.SceneGraph.Entity.Destroy* +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.SceneGraph.Entity.Layer* + commentId: Overload:Voile.SceneGraph.Entity.Layer + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Layer + name: Layer + nameWithType: Entity.Layer + fullName: Voile.SceneGraph.Entity.Layer +- uid: Voile.SceneGraph.EntityLayer + commentId: T:Voile.SceneGraph.EntityLayer + parent: Voile.SceneGraph + href: Voile.SceneGraph.EntityLayer.html + name: EntityLayer + nameWithType: EntityLayer + fullName: Voile.SceneGraph.EntityLayer +- uid: Voile.SceneGraph.Entity.Input* + commentId: Overload:Voile.SceneGraph.Entity.Input + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Input + name: Input + nameWithType: Entity.Input + fullName: Voile.SceneGraph.Entity.Input +- uid: Voile.Input.InputSystem + commentId: T:Voile.Input.InputSystem + parent: Voile.Input + href: Voile.Input.InputSystem.html + name: InputSystem + nameWithType: InputSystem + fullName: Voile.Input.InputSystem +- uid: Voile.Input + commentId: N:Voile.Input + href: Voile.html + name: Voile.Input + nameWithType: Voile.Input + fullName: Voile.Input + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html +- uid: Voile.SceneGraph.Entity.Audio* + commentId: Overload:Voile.SceneGraph.Entity.Audio + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Audio + name: Audio + nameWithType: Entity.Audio + fullName: Voile.SceneGraph.Entity.Audio +- uid: Voile.Audio.AudioSystem + commentId: T:Voile.Audio.AudioSystem + parent: Voile.Audio + href: Voile.Audio.AudioSystem.html + name: AudioSystem + nameWithType: AudioSystem + fullName: Voile.Audio.AudioSystem +- uid: Voile.Audio + commentId: N:Voile.Audio + href: Voile.html + name: Voile.Audio + nameWithType: Voile.Audio + fullName: Voile.Audio + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Audio + name: Audio + href: Voile.Audio.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Audio + name: Audio + href: Voile.Audio.html +- uid: Voile.SceneGraph.Entity.Renderer* + commentId: Overload:Voile.SceneGraph.Entity.Renderer + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Renderer + name: Renderer + nameWithType: Entity.Renderer + fullName: Voile.SceneGraph.Entity.Renderer +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: Voile.SceneGraph.Entity.Id* + commentId: Overload:Voile.SceneGraph.Entity.Id + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Id + name: Id + nameWithType: Entity.Id + fullName: Voile.SceneGraph.Entity.Id +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: Voile.SceneGraph.Entity.Start* + commentId: Overload:Voile.SceneGraph.Entity.Start + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + name: Start + nameWithType: Entity.Start + fullName: Voile.SceneGraph.Entity.Start +- uid: Voile.SceneGraph.Entity.Update* + commentId: Overload:Voile.SceneGraph.Entity.Update + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + name: Update + nameWithType: Entity.Update + fullName: Voile.SceneGraph.Entity.Update +- uid: System.Double + commentId: T:System.Double + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + name: double + nameWithType: double + fullName: double + nameWithType.vb: Double + fullName.vb: Double + name.vb: Double +- uid: Voile.SceneGraph.Entity.ReceiveInput* + commentId: Overload:Voile.SceneGraph.Entity.ReceiveInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + name: ReceiveInput + nameWithType: Entity.ReceiveInput + fullName: Voile.SceneGraph.Entity.ReceiveInput +- uid: Voile.SceneGraph.Entity.OnStart* + commentId: Overload:Voile.SceneGraph.Entity.OnStart + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + name: OnStart + nameWithType: Entity.OnStart + fullName: Voile.SceneGraph.Entity.OnStart +- uid: Voile.SceneGraph.Entity.OnDestroy* + commentId: Overload:Voile.SceneGraph.Entity.OnDestroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + name: OnDestroy + nameWithType: Entity.OnDestroy + fullName: Voile.SceneGraph.Entity.OnDestroy +- uid: Voile.SceneGraph.Entity.OnUpdate* + commentId: Overload:Voile.SceneGraph.Entity.OnUpdate + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + name: OnUpdate + nameWithType: Entity.OnUpdate + fullName: Voile.SceneGraph.Entity.OnUpdate +- uid: Voile.SceneGraph.Entity.OnInput* + commentId: Overload:Voile.SceneGraph.Entity.OnInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + name: OnInput + nameWithType: Entity.OnInput + fullName: Voile.SceneGraph.Entity.OnInput +- uid: Voile.SceneGraph.Entity.Destroy* + commentId: Overload:Voile.SceneGraph.Entity.Destroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + name: Destroy + nameWithType: Entity.Destroy + fullName: Voile.SceneGraph.Entity.Destroy diff --git a/Voile/api/Voile.SceneGraph.Entity2d.yml b/Voile/api/Voile.SceneGraph.Entity2d.yml new file mode 100644 index 0000000..a68a96b --- /dev/null +++ b/Voile/api/Voile.SceneGraph.Entity2d.yml @@ -0,0 +1,663 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.Entity2d + commentId: T:Voile.SceneGraph.Entity2d + id: Entity2d + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.Entity2d.Position + - Voile.SceneGraph.Entity2d.Rotation + langs: + - csharp + - vb + name: Entity2d + nameWithType: Entity2d + fullName: Voile.SceneGraph.Entity2d + type: Class + source: + remote: + path: Voile/Source/SceneGraph/Entities/Entity2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Entity2d + path: Source/SceneGraph/Entities/Entity2d.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: 'public class Entity2d : Entity' + content.vb: Public Class Entity2d Inherits Entity + inheritance: + - System.Object + - Voile.SceneGraph.Entity + derivedClasses: + - Voile.SceneGraph.Camera2d + - Voile.SceneGraph.Drawable2d + inheritedMembers: + - Voile.SceneGraph.Entity.Layer + - Voile.SceneGraph.Entity.Input + - Voile.SceneGraph.Entity.Audio + - Voile.SceneGraph.Entity.Renderer + - Voile.SceneGraph.Entity.Id + - Voile.SceneGraph.Entity.Start + - Voile.SceneGraph.Entity.Update(System.Double) + - Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Entity.OnStart + - Voile.SceneGraph.Entity.OnDestroy + - Voile.SceneGraph.Entity.OnUpdate(System.Double) + - Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Entity.Destroy + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.SceneGraph.Entity2d.Position + commentId: P:Voile.SceneGraph.Entity2d.Position + id: Position + parent: Voile.SceneGraph.Entity2d + langs: + - csharp + - vb + name: Position + nameWithType: Entity2d.Position + fullName: Voile.SceneGraph.Entity2d.Position + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Entities/Entity2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Position + path: Source/SceneGraph/Entities/Entity2d.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Vector2 Position { get; set; } + parameters: [] + return: + type: System.Numerics.Vector2 + content.vb: Public Property Position As Vector2 + overload: Voile.SceneGraph.Entity2d.Position* +- uid: Voile.SceneGraph.Entity2d.Rotation + commentId: P:Voile.SceneGraph.Entity2d.Rotation + id: Rotation + parent: Voile.SceneGraph.Entity2d + langs: + - csharp + - vb + name: Rotation + nameWithType: Entity2d.Rotation + fullName: Voile.SceneGraph.Entity2d.Rotation + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Entities/Entity2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Rotation + path: Source/SceneGraph/Entities/Entity2d.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public float Rotation { get; set; } + parameters: [] + return: + type: System.Single + content.vb: Public Property Rotation As Single + overload: Voile.SceneGraph.Entity2d.Rotation* +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.SceneGraph.Entity + commentId: T:Voile.SceneGraph.Entity + parent: Voile.SceneGraph + href: Voile.SceneGraph.Entity.html + name: Entity + nameWithType: Entity + fullName: Voile.SceneGraph.Entity +- uid: Voile.SceneGraph.Entity.Layer + commentId: P:Voile.SceneGraph.Entity.Layer + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Layer + name: Layer + nameWithType: Entity.Layer + fullName: Voile.SceneGraph.Entity.Layer +- uid: Voile.SceneGraph.Entity.Input + commentId: P:Voile.SceneGraph.Entity.Input + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Input + name: Input + nameWithType: Entity.Input + fullName: Voile.SceneGraph.Entity.Input +- uid: Voile.SceneGraph.Entity.Audio + commentId: P:Voile.SceneGraph.Entity.Audio + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Audio + name: Audio + nameWithType: Entity.Audio + fullName: Voile.SceneGraph.Entity.Audio +- uid: Voile.SceneGraph.Entity.Renderer + commentId: P:Voile.SceneGraph.Entity.Renderer + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Renderer + name: Renderer + nameWithType: Entity.Renderer + fullName: Voile.SceneGraph.Entity.Renderer +- uid: Voile.SceneGraph.Entity.Id + commentId: P:Voile.SceneGraph.Entity.Id + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Id + name: Id + nameWithType: Entity.Id + fullName: Voile.SceneGraph.Entity.Id +- uid: Voile.SceneGraph.Entity.Start + commentId: M:Voile.SceneGraph.Entity.Start + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + name: Start() + nameWithType: Entity.Start() + fullName: Voile.SceneGraph.Entity.Start() + spec.csharp: + - uid: Voile.SceneGraph.Entity.Start + name: Start + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Start + name: Start + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.Update(System.Double) + commentId: M:Voile.SceneGraph.Entity.Update(System.Double) + parent: Voile.SceneGraph.Entity + isExternal: true + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + name: Update(double) + nameWithType: Entity.Update(double) + fullName: Voile.SceneGraph.Entity.Update(double) + nameWithType.vb: Entity.Update(Double) + fullName.vb: Voile.SceneGraph.Entity.Update(Double) + name.vb: Update(Double) + spec.csharp: + - uid: Voile.SceneGraph.Entity.Update(System.Double) + name: Update + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Update(System.Double) + name: Update + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + name: ReceiveInput(InputSystem) + nameWithType: Entity.ReceiveInput(InputSystem) + fullName: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity.OnStart + commentId: M:Voile.SceneGraph.Entity.OnStart + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + name: OnStart() + nameWithType: Entity.OnStart() + fullName: Voile.SceneGraph.Entity.OnStart() + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnStart + name: OnStart + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnStart + name: OnStart + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.OnDestroy + commentId: M:Voile.SceneGraph.Entity.OnDestroy + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + name: OnDestroy() + nameWithType: Entity.OnDestroy() + fullName: Voile.SceneGraph.Entity.OnDestroy() + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnDestroy + name: OnDestroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnDestroy + name: OnDestroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + commentId: M:Voile.SceneGraph.Entity.OnUpdate(System.Double) + parent: Voile.SceneGraph.Entity + isExternal: true + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + name: OnUpdate(double) + nameWithType: Entity.OnUpdate(double) + fullName: Voile.SceneGraph.Entity.OnUpdate(double) + nameWithType.vb: Entity.OnUpdate(Double) + fullName.vb: Voile.SceneGraph.Entity.OnUpdate(Double) + name.vb: OnUpdate(Double) + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + name: OnInput(InputSystem) + nameWithType: Entity.OnInput(InputSystem) + fullName: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity.Destroy + commentId: M:Voile.SceneGraph.Entity.Destroy + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + name: Destroy() + nameWithType: Entity.Destroy() + fullName: Voile.SceneGraph.Entity.Destroy() + spec.csharp: + - uid: Voile.SceneGraph.Entity.Destroy + name: Destroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Destroy + name: Destroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.SceneGraph.Entity2d.Position* + commentId: Overload:Voile.SceneGraph.Entity2d.Position + href: Voile.SceneGraph.Entity2d.html#Voile_SceneGraph_Entity2d_Position + name: Position + nameWithType: Entity2d.Position + fullName: Voile.SceneGraph.Entity2d.Position +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: Voile.SceneGraph.Entity2d.Rotation* + commentId: Overload:Voile.SceneGraph.Entity2d.Rotation + href: Voile.SceneGraph.Entity2d.html#Voile_SceneGraph_Entity2d_Rotation + name: Rotation + nameWithType: Entity2d.Rotation + fullName: Voile.SceneGraph.Entity2d.Rotation +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single diff --git a/Voile/api/Voile.SceneGraph.EntityLayer.yml b/Voile/api/Voile.SceneGraph.EntityLayer.yml new file mode 100644 index 0000000..18f6c17 --- /dev/null +++ b/Voile/api/Voile.SceneGraph.EntityLayer.yml @@ -0,0 +1,1264 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.EntityLayer + commentId: T:Voile.SceneGraph.EntityLayer + id: EntityLayer + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.EntityLayer.#ctor + - Voile.SceneGraph.EntityLayer.#ctor(System.Collections.Generic.List{Voile.SceneGraph.Entity}) + - Voile.SceneGraph.EntityLayer.AddEntity(Voile.SceneGraph.Entity) + - Voile.SceneGraph.EntityLayer.CurrentCamera + - Voile.SceneGraph.EntityLayer.DestroyEntity(System.Int32) + - Voile.SceneGraph.EntityLayer.Entities + - Voile.SceneGraph.EntityLayer.OnBeginDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.EntityLayer.OnDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.EntityLayer.OnEndDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.EntityLayer.OnStart + - Voile.SceneGraph.EntityLayer.OnUpdate(System.Double) + - Voile.SceneGraph.EntityLayer.UpdateCurrentCamera + langs: + - csharp + - vb + name: EntityLayer + nameWithType: EntityLayer + fullName: Voile.SceneGraph.EntityLayer + type: Class + source: + remote: + path: Voile/Source/SceneGraph/EntityLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: EntityLayer + path: Source/SceneGraph/EntityLayer.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: 'public class EntityLayer : Layer, IDrawable' + content.vb: Public Class EntityLayer Inherits Layer Implements IDrawable + inheritance: + - System.Object + - Voile.SceneGraph.Layer + implements: + - Voile.SceneGraph.IDrawable + inheritedMembers: + - Voile.SceneGraph.Layer.Scene + - Voile.SceneGraph.Layer.Input + - Voile.SceneGraph.Layer.ResourceManager + - Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Layer.Start + - Voile.SceneGraph.Layer.Update(System.Double) + - Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem) + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.SceneGraph.EntityLayer.Entities + commentId: P:Voile.SceneGraph.EntityLayer.Entities + id: Entities + parent: Voile.SceneGraph.EntityLayer + langs: + - csharp + - vb + name: Entities + nameWithType: EntityLayer.Entities + fullName: Voile.SceneGraph.EntityLayer.Entities + type: Property + source: + remote: + path: Voile/Source/SceneGraph/EntityLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Entities + path: Source/SceneGraph/EntityLayer.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public List Entities { get; set; } + parameters: [] + return: + type: System.Collections.Generic.List{Voile.SceneGraph.Entity} + content.vb: Public Property Entities As List(Of Entity) + overload: Voile.SceneGraph.EntityLayer.Entities* +- uid: Voile.SceneGraph.EntityLayer.CurrentCamera + commentId: P:Voile.SceneGraph.EntityLayer.CurrentCamera + id: CurrentCamera + parent: Voile.SceneGraph.EntityLayer + langs: + - csharp + - vb + name: CurrentCamera + nameWithType: EntityLayer.CurrentCamera + fullName: Voile.SceneGraph.EntityLayer.CurrentCamera + type: Property + source: + remote: + path: Voile/Source/SceneGraph/EntityLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CurrentCamera + path: Source/SceneGraph/EntityLayer.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Camera2d? CurrentCamera { get; set; } + parameters: [] + return: + type: Voile.SceneGraph.Camera2d + content.vb: Public Property CurrentCamera As Camera2d + overload: Voile.SceneGraph.EntityLayer.CurrentCamera* +- uid: Voile.SceneGraph.EntityLayer.#ctor(System.Collections.Generic.List{Voile.SceneGraph.Entity}) + commentId: M:Voile.SceneGraph.EntityLayer.#ctor(System.Collections.Generic.List{Voile.SceneGraph.Entity}) + id: '#ctor(System.Collections.Generic.List{Voile.SceneGraph.Entity})' + parent: Voile.SceneGraph.EntityLayer + langs: + - csharp + - vb + name: EntityLayer(List) + nameWithType: EntityLayer.EntityLayer(List) + fullName: Voile.SceneGraph.EntityLayer.EntityLayer(System.Collections.Generic.List) + type: Constructor + source: + remote: + path: Voile/Source/SceneGraph/EntityLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/SceneGraph/EntityLayer.cs + startLine: 11 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public EntityLayer(List entities) + parameters: + - id: entities + type: System.Collections.Generic.List{Voile.SceneGraph.Entity} + content.vb: Public Sub New(entities As List(Of Entity)) + overload: Voile.SceneGraph.EntityLayer.#ctor* + nameWithType.vb: EntityLayer.New(List(Of Entity)) + fullName.vb: Voile.SceneGraph.EntityLayer.New(System.Collections.Generic.List(Of Voile.SceneGraph.Entity)) + name.vb: New(List(Of Entity)) +- uid: Voile.SceneGraph.EntityLayer.#ctor + commentId: M:Voile.SceneGraph.EntityLayer.#ctor + id: '#ctor' + parent: Voile.SceneGraph.EntityLayer + langs: + - csharp + - vb + name: EntityLayer() + nameWithType: EntityLayer.EntityLayer() + fullName: Voile.SceneGraph.EntityLayer.EntityLayer() + type: Constructor + source: + remote: + path: Voile/Source/SceneGraph/EntityLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/SceneGraph/EntityLayer.cs + startLine: 16 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public EntityLayer() + content.vb: Public Sub New() + overload: Voile.SceneGraph.EntityLayer.#ctor* + nameWithType.vb: EntityLayer.New() + fullName.vb: Voile.SceneGraph.EntityLayer.New() + name.vb: New() +- uid: Voile.SceneGraph.EntityLayer.UpdateCurrentCamera + commentId: M:Voile.SceneGraph.EntityLayer.UpdateCurrentCamera + id: UpdateCurrentCamera + parent: Voile.SceneGraph.EntityLayer + langs: + - csharp + - vb + name: UpdateCurrentCamera() + nameWithType: EntityLayer.UpdateCurrentCamera() + fullName: Voile.SceneGraph.EntityLayer.UpdateCurrentCamera() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/EntityLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: UpdateCurrentCamera + path: Source/SceneGraph/EntityLayer.cs + startLine: 21 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void UpdateCurrentCamera() + content.vb: Public Sub UpdateCurrentCamera() + overload: Voile.SceneGraph.EntityLayer.UpdateCurrentCamera* +- uid: Voile.SceneGraph.EntityLayer.AddEntity(Voile.SceneGraph.Entity) + commentId: M:Voile.SceneGraph.EntityLayer.AddEntity(Voile.SceneGraph.Entity) + id: AddEntity(Voile.SceneGraph.Entity) + parent: Voile.SceneGraph.EntityLayer + langs: + - csharp + - vb + name: AddEntity(Entity) + nameWithType: EntityLayer.AddEntity(Entity) + fullName: Voile.SceneGraph.EntityLayer.AddEntity(Voile.SceneGraph.Entity) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/EntityLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AddEntity + path: Source/SceneGraph/EntityLayer.cs + startLine: 37 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public bool AddEntity(Entity entity) + parameters: + - id: entity + type: Voile.SceneGraph.Entity + return: + type: System.Boolean + content.vb: Public Function AddEntity(entity As Entity) As Boolean + overload: Voile.SceneGraph.EntityLayer.AddEntity* +- uid: Voile.SceneGraph.EntityLayer.DestroyEntity(System.Int32) + commentId: M:Voile.SceneGraph.EntityLayer.DestroyEntity(System.Int32) + id: DestroyEntity(System.Int32) + parent: Voile.SceneGraph.EntityLayer + langs: + - csharp + - vb + name: DestroyEntity(int) + nameWithType: EntityLayer.DestroyEntity(int) + fullName: Voile.SceneGraph.EntityLayer.DestroyEntity(int) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/EntityLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DestroyEntity + path: Source/SceneGraph/EntityLayer.cs + startLine: 54 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void DestroyEntity(int at) + parameters: + - id: at + type: System.Int32 + content.vb: Public Sub DestroyEntity(at As Integer) + overload: Voile.SceneGraph.EntityLayer.DestroyEntity* + nameWithType.vb: EntityLayer.DestroyEntity(Integer) + fullName.vb: Voile.SceneGraph.EntityLayer.DestroyEntity(Integer) + name.vb: DestroyEntity(Integer) +- uid: Voile.SceneGraph.EntityLayer.OnStart + commentId: M:Voile.SceneGraph.EntityLayer.OnStart + id: OnStart + parent: Voile.SceneGraph.EntityLayer + langs: + - csharp + - vb + name: OnStart() + nameWithType: EntityLayer.OnStart() + fullName: Voile.SceneGraph.EntityLayer.OnStart() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/EntityLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnStart + path: Source/SceneGraph/EntityLayer.cs + startLine: 59 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: protected override void OnStart() + content.vb: Protected Overrides Sub OnStart() + overridden: Voile.SceneGraph.Layer.OnStart + overload: Voile.SceneGraph.EntityLayer.OnStart* +- uid: Voile.SceneGraph.EntityLayer.OnUpdate(System.Double) + commentId: M:Voile.SceneGraph.EntityLayer.OnUpdate(System.Double) + id: OnUpdate(System.Double) + parent: Voile.SceneGraph.EntityLayer + langs: + - csharp + - vb + name: OnUpdate(double) + nameWithType: EntityLayer.OnUpdate(double) + fullName: Voile.SceneGraph.EntityLayer.OnUpdate(double) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/EntityLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnUpdate + path: Source/SceneGraph/EntityLayer.cs + startLine: 69 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: protected override void OnUpdate(double dt) + parameters: + - id: dt + type: System.Double + content.vb: Protected Overrides Sub OnUpdate(dt As Double) + overridden: Voile.SceneGraph.Layer.OnUpdate(System.Double) + overload: Voile.SceneGraph.EntityLayer.OnUpdate* + nameWithType.vb: EntityLayer.OnUpdate(Double) + fullName.vb: Voile.SceneGraph.EntityLayer.OnUpdate(Double) + name.vb: OnUpdate(Double) +- uid: Voile.SceneGraph.EntityLayer.OnBeginDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.EntityLayer.OnBeginDraw(Voile.Rendering.RenderSystem) + id: OnBeginDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.EntityLayer + langs: + - csharp + - vb + name: OnBeginDraw(RenderSystem) + nameWithType: EntityLayer.OnBeginDraw(RenderSystem) + fullName: Voile.SceneGraph.EntityLayer.OnBeginDraw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/EntityLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnBeginDraw + path: Source/SceneGraph/EntityLayer.cs + startLine: 77 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: protected override void OnBeginDraw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Protected Overrides Sub OnBeginDraw(renderer As RenderSystem) + overridden: Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem) + overload: Voile.SceneGraph.EntityLayer.OnBeginDraw* +- uid: Voile.SceneGraph.EntityLayer.OnEndDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.EntityLayer.OnEndDraw(Voile.Rendering.RenderSystem) + id: OnEndDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.EntityLayer + langs: + - csharp + - vb + name: OnEndDraw(RenderSystem) + nameWithType: EntityLayer.OnEndDraw(RenderSystem) + fullName: Voile.SceneGraph.EntityLayer.OnEndDraw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/EntityLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnEndDraw + path: Source/SceneGraph/EntityLayer.cs + startLine: 85 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: protected override void OnEndDraw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Protected Overrides Sub OnEndDraw(renderer As RenderSystem) + overridden: Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem) + overload: Voile.SceneGraph.EntityLayer.OnEndDraw* +- uid: Voile.SceneGraph.EntityLayer.OnDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.EntityLayer.OnDraw(Voile.Rendering.RenderSystem) + id: OnDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.EntityLayer + langs: + - csharp + - vb + name: OnDraw(RenderSystem) + nameWithType: EntityLayer.OnDraw(RenderSystem) + fullName: Voile.SceneGraph.EntityLayer.OnDraw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/EntityLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnDraw + path: Source/SceneGraph/EntityLayer.cs + startLine: 94 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: protected override void OnDraw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Protected Overrides Sub OnDraw(renderer As RenderSystem) + overridden: Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem) + overload: Voile.SceneGraph.EntityLayer.OnDraw* +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.SceneGraph.Layer + commentId: T:Voile.SceneGraph.Layer + parent: Voile.SceneGraph + href: Voile.SceneGraph.Layer.html + name: Layer + nameWithType: Layer + fullName: Voile.SceneGraph.Layer +- uid: Voile.SceneGraph.IDrawable + commentId: T:Voile.SceneGraph.IDrawable + parent: Voile.SceneGraph + href: Voile.SceneGraph.IDrawable.html + name: IDrawable + nameWithType: IDrawable + fullName: Voile.SceneGraph.IDrawable +- uid: Voile.SceneGraph.Layer.Scene + commentId: P:Voile.SceneGraph.Layer.Scene + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Scene + name: Scene + nameWithType: Layer.Scene + fullName: Voile.SceneGraph.Layer.Scene +- uid: Voile.SceneGraph.Layer.Input + commentId: P:Voile.SceneGraph.Layer.Input + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Input + name: Input + nameWithType: Layer.Input + fullName: Voile.SceneGraph.Layer.Input +- uid: Voile.SceneGraph.Layer.ResourceManager + commentId: P:Voile.SceneGraph.Layer.ResourceManager + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_ResourceManager + name: ResourceManager + nameWithType: Layer.ResourceManager + fullName: Voile.SceneGraph.Layer.ResourceManager +- uid: Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_BeginDraw_Voile_Rendering_RenderSystem_ + name: BeginDraw(RenderSystem) + nameWithType: Layer.BeginDraw(RenderSystem) + fullName: Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem) + name: BeginDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_BeginDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem) + name: BeginDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_BeginDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Draw_Voile_Rendering_RenderSystem_ + name: Draw(RenderSystem) + nameWithType: Layer.Draw(RenderSystem) + fullName: Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_EndDraw_Voile_Rendering_RenderSystem_ + name: EndDraw(RenderSystem) + nameWithType: Layer.EndDraw(RenderSystem) + fullName: Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem) + name: EndDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_EndDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem) + name: EndDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_EndDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.Layer.Start + commentId: M:Voile.SceneGraph.Layer.Start + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Start + name: Start() + nameWithType: Layer.Start() + fullName: Voile.SceneGraph.Layer.Start() + spec.csharp: + - uid: Voile.SceneGraph.Layer.Start + name: Start + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Start + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.Start + name: Start + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Start + - name: ( + - name: ) +- uid: Voile.SceneGraph.Layer.Update(System.Double) + commentId: M:Voile.SceneGraph.Layer.Update(System.Double) + parent: Voile.SceneGraph.Layer + isExternal: true + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Update_System_Double_ + name: Update(double) + nameWithType: Layer.Update(double) + fullName: Voile.SceneGraph.Layer.Update(double) + nameWithType.vb: Layer.Update(Double) + fullName.vb: Voile.SceneGraph.Layer.Update(Double) + name.vb: Update(Double) + spec.csharp: + - uid: Voile.SceneGraph.Layer.Update(System.Double) + name: Update + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Update_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.Update(System.Double) + name: Update + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Update_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_ReceiveInput_Voile_Input_InputSystem_ + name: ReceiveInput(InputSystem) + nameWithType: Layer.ReceiveInput(InputSystem) + fullName: Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnInput_Voile_Input_InputSystem_ + name: OnInput(InputSystem) + nameWithType: Layer.OnInput(InputSystem) + fullName: Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.SceneGraph.EntityLayer.Entities* + commentId: Overload:Voile.SceneGraph.EntityLayer.Entities + href: Voile.SceneGraph.EntityLayer.html#Voile_SceneGraph_EntityLayer_Entities + name: Entities + nameWithType: EntityLayer.Entities + fullName: Voile.SceneGraph.EntityLayer.Entities +- uid: System.Collections.Generic.List{Voile.SceneGraph.Entity} + commentId: T:System.Collections.Generic.List{Voile.SceneGraph.Entity} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of Entity) + fullName.vb: System.Collections.Generic.List(Of Voile.SceneGraph.Entity) + name.vb: List(Of Entity) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: Voile.SceneGraph.Entity + name: Entity + href: Voile.SceneGraph.Entity.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: Voile.SceneGraph.Entity + name: Entity + href: Voile.SceneGraph.Entity.html + - name: ) +- uid: System.Collections.Generic.List`1 + commentId: T:System.Collections.Generic.List`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of T) + fullName.vb: System.Collections.Generic.List(Of T) + name.vb: List(Of T) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: Voile.SceneGraph.EntityLayer.CurrentCamera* + commentId: Overload:Voile.SceneGraph.EntityLayer.CurrentCamera + href: Voile.SceneGraph.EntityLayer.html#Voile_SceneGraph_EntityLayer_CurrentCamera + name: CurrentCamera + nameWithType: EntityLayer.CurrentCamera + fullName: Voile.SceneGraph.EntityLayer.CurrentCamera +- uid: Voile.SceneGraph.Camera2d + commentId: T:Voile.SceneGraph.Camera2d + parent: Voile.SceneGraph + href: Voile.SceneGraph.Camera2d.html + name: Camera2d + nameWithType: Camera2d + fullName: Voile.SceneGraph.Camera2d +- uid: Voile.SceneGraph.EntityLayer.#ctor* + commentId: Overload:Voile.SceneGraph.EntityLayer.#ctor + href: Voile.SceneGraph.EntityLayer.html#Voile_SceneGraph_EntityLayer__ctor_System_Collections_Generic_List_Voile_SceneGraph_Entity__ + name: EntityLayer + nameWithType: EntityLayer.EntityLayer + fullName: Voile.SceneGraph.EntityLayer.EntityLayer + nameWithType.vb: EntityLayer.New + fullName.vb: Voile.SceneGraph.EntityLayer.New + name.vb: New +- uid: Voile.SceneGraph.EntityLayer.UpdateCurrentCamera* + commentId: Overload:Voile.SceneGraph.EntityLayer.UpdateCurrentCamera + href: Voile.SceneGraph.EntityLayer.html#Voile_SceneGraph_EntityLayer_UpdateCurrentCamera + name: UpdateCurrentCamera + nameWithType: EntityLayer.UpdateCurrentCamera + fullName: Voile.SceneGraph.EntityLayer.UpdateCurrentCamera +- uid: Voile.SceneGraph.EntityLayer.AddEntity* + commentId: Overload:Voile.SceneGraph.EntityLayer.AddEntity + href: Voile.SceneGraph.EntityLayer.html#Voile_SceneGraph_EntityLayer_AddEntity_Voile_SceneGraph_Entity_ + name: AddEntity + nameWithType: EntityLayer.AddEntity + fullName: Voile.SceneGraph.EntityLayer.AddEntity +- uid: Voile.SceneGraph.Entity + commentId: T:Voile.SceneGraph.Entity + parent: Voile.SceneGraph + href: Voile.SceneGraph.Entity.html + name: Entity + nameWithType: Entity + fullName: Voile.SceneGraph.Entity +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: Voile.SceneGraph.EntityLayer.DestroyEntity* + commentId: Overload:Voile.SceneGraph.EntityLayer.DestroyEntity + href: Voile.SceneGraph.EntityLayer.html#Voile_SceneGraph_EntityLayer_DestroyEntity_System_Int32_ + name: DestroyEntity + nameWithType: EntityLayer.DestroyEntity + fullName: Voile.SceneGraph.EntityLayer.DestroyEntity +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: Voile.SceneGraph.Layer.OnStart + commentId: M:Voile.SceneGraph.Layer.OnStart + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnStart + name: OnStart() + nameWithType: Layer.OnStart() + fullName: Voile.SceneGraph.Layer.OnStart() + spec.csharp: + - uid: Voile.SceneGraph.Layer.OnStart + name: OnStart + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnStart + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.OnStart + name: OnStart + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnStart + - name: ( + - name: ) +- uid: Voile.SceneGraph.EntityLayer.OnStart* + commentId: Overload:Voile.SceneGraph.EntityLayer.OnStart + href: Voile.SceneGraph.EntityLayer.html#Voile_SceneGraph_EntityLayer_OnStart + name: OnStart + nameWithType: EntityLayer.OnStart + fullName: Voile.SceneGraph.EntityLayer.OnStart +- uid: Voile.SceneGraph.Layer.OnUpdate(System.Double) + commentId: M:Voile.SceneGraph.Layer.OnUpdate(System.Double) + parent: Voile.SceneGraph.Layer + isExternal: true + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnUpdate_System_Double_ + name: OnUpdate(double) + nameWithType: Layer.OnUpdate(double) + fullName: Voile.SceneGraph.Layer.OnUpdate(double) + nameWithType.vb: Layer.OnUpdate(Double) + fullName.vb: Voile.SceneGraph.Layer.OnUpdate(Double) + name.vb: OnUpdate(Double) + spec.csharp: + - uid: Voile.SceneGraph.Layer.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.EntityLayer.OnUpdate* + commentId: Overload:Voile.SceneGraph.EntityLayer.OnUpdate + href: Voile.SceneGraph.EntityLayer.html#Voile_SceneGraph_EntityLayer_OnUpdate_System_Double_ + name: OnUpdate + nameWithType: EntityLayer.OnUpdate + fullName: Voile.SceneGraph.EntityLayer.OnUpdate +- uid: System.Double + commentId: T:System.Double + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + name: double + nameWithType: double + fullName: double + nameWithType.vb: Double + fullName.vb: Double + name.vb: Double +- uid: Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnBeginDraw_Voile_Rendering_RenderSystem_ + name: OnBeginDraw(RenderSystem) + nameWithType: Layer.OnBeginDraw(RenderSystem) + fullName: Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem) + name: OnBeginDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnBeginDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem) + name: OnBeginDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnBeginDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.EntityLayer.OnBeginDraw* + commentId: Overload:Voile.SceneGraph.EntityLayer.OnBeginDraw + href: Voile.SceneGraph.EntityLayer.html#Voile_SceneGraph_EntityLayer_OnBeginDraw_Voile_Rendering_RenderSystem_ + name: OnBeginDraw + nameWithType: EntityLayer.OnBeginDraw + fullName: Voile.SceneGraph.EntityLayer.OnBeginDraw +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnEndDraw_Voile_Rendering_RenderSystem_ + name: OnEndDraw(RenderSystem) + nameWithType: Layer.OnEndDraw(RenderSystem) + fullName: Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem) + name: OnEndDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnEndDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem) + name: OnEndDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnEndDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.EntityLayer.OnEndDraw* + commentId: Overload:Voile.SceneGraph.EntityLayer.OnEndDraw + href: Voile.SceneGraph.EntityLayer.html#Voile_SceneGraph_EntityLayer_OnEndDraw_Voile_Rendering_RenderSystem_ + name: OnEndDraw + nameWithType: EntityLayer.OnEndDraw + fullName: Voile.SceneGraph.EntityLayer.OnEndDraw +- uid: Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnDraw_Voile_Rendering_RenderSystem_ + name: OnDraw(RenderSystem) + nameWithType: Layer.OnDraw(RenderSystem) + fullName: Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem) + name: OnDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem) + name: OnDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.EntityLayer.OnDraw* + commentId: Overload:Voile.SceneGraph.EntityLayer.OnDraw + href: Voile.SceneGraph.EntityLayer.html#Voile_SceneGraph_EntityLayer_OnDraw_Voile_Rendering_RenderSystem_ + name: OnDraw + nameWithType: EntityLayer.OnDraw + fullName: Voile.SceneGraph.EntityLayer.OnDraw diff --git a/Voile/api/Voile.SceneGraph.IDrawable.yml b/Voile/api/Voile.SceneGraph.IDrawable.yml new file mode 100644 index 0000000..7c6f698 --- /dev/null +++ b/Voile/api/Voile.SceneGraph.IDrawable.yml @@ -0,0 +1,116 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.IDrawable + commentId: T:Voile.SceneGraph.IDrawable + id: IDrawable + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + langs: + - csharp + - vb + name: IDrawable + nameWithType: IDrawable + fullName: Voile.SceneGraph.IDrawable + type: Interface + source: + remote: + path: Voile/Source/SceneGraph/Entities/IDrawable.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IDrawable + path: Source/SceneGraph/Entities/IDrawable.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public interface IDrawable + content.vb: Public Interface IDrawable +- uid: Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + id: Draw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.IDrawable + langs: + - csharp + - vb + name: Draw(RenderSystem) + nameWithType: IDrawable.Draw(RenderSystem) + fullName: Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/IDrawable.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Draw + path: Source/SceneGraph/Entities/IDrawable.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: void Draw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Sub Draw(renderer As RenderSystem) + overload: Voile.SceneGraph.IDrawable.Draw* +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: Voile.SceneGraph.IDrawable.Draw* + commentId: Overload:Voile.SceneGraph.IDrawable.Draw + href: Voile.SceneGraph.IDrawable.html#Voile_SceneGraph_IDrawable_Draw_Voile_Rendering_RenderSystem_ + name: Draw + nameWithType: IDrawable.Draw + fullName: Voile.SceneGraph.IDrawable.Draw +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html diff --git a/Voile/api/Voile.SceneGraph.IMainLoop.yml b/Voile/api/Voile.SceneGraph.IMainLoop.yml new file mode 100644 index 0000000..96ab334 --- /dev/null +++ b/Voile/api/Voile.SceneGraph.IMainLoop.yml @@ -0,0 +1,251 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.IMainLoop + commentId: T:Voile.SceneGraph.IMainLoop + id: IMainLoop + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.IMainLoop.DeltaTime + - Voile.SceneGraph.IMainLoop.Init + - Voile.SceneGraph.IMainLoop.ShouldRun + - Voile.SceneGraph.IMainLoop.Start + - Voile.SceneGraph.IMainLoop.Update + langs: + - csharp + - vb + name: IMainLoop + nameWithType: IMainLoop + fullName: Voile.SceneGraph.IMainLoop + type: Interface + source: + remote: + path: Voile/Source/SceneGraph/IMainLoop.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: IMainLoop + path: Source/SceneGraph/IMainLoop.cs + startLine: 2 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public interface IMainLoop + content.vb: Public Interface IMainLoop +- uid: Voile.SceneGraph.IMainLoop.Init + commentId: M:Voile.SceneGraph.IMainLoop.Init + id: Init + parent: Voile.SceneGraph.IMainLoop + langs: + - csharp + - vb + name: Init() + nameWithType: IMainLoop.Init() + fullName: Voile.SceneGraph.IMainLoop.Init() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/IMainLoop.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Init + path: Source/SceneGraph/IMainLoop.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: void Init() + content.vb: Sub Init() + overload: Voile.SceneGraph.IMainLoop.Init* +- uid: Voile.SceneGraph.IMainLoop.Start + commentId: M:Voile.SceneGraph.IMainLoop.Start + id: Start + parent: Voile.SceneGraph.IMainLoop + langs: + - csharp + - vb + name: Start() + nameWithType: IMainLoop.Start() + fullName: Voile.SceneGraph.IMainLoop.Start() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/IMainLoop.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Start + path: Source/SceneGraph/IMainLoop.cs + startLine: 5 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: void Start() + content.vb: Sub Start() + overload: Voile.SceneGraph.IMainLoop.Start* +- uid: Voile.SceneGraph.IMainLoop.Update + commentId: M:Voile.SceneGraph.IMainLoop.Update + id: Update + parent: Voile.SceneGraph.IMainLoop + langs: + - csharp + - vb + name: Update() + nameWithType: IMainLoop.Update() + fullName: Voile.SceneGraph.IMainLoop.Update() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/IMainLoop.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Update + path: Source/SceneGraph/IMainLoop.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: void Update() + content.vb: Sub Update() + overload: Voile.SceneGraph.IMainLoop.Update* +- uid: Voile.SceneGraph.IMainLoop.DeltaTime + commentId: P:Voile.SceneGraph.IMainLoop.DeltaTime + id: DeltaTime + parent: Voile.SceneGraph.IMainLoop + langs: + - csharp + - vb + name: DeltaTime + nameWithType: IMainLoop.DeltaTime + fullName: Voile.SceneGraph.IMainLoop.DeltaTime + type: Property + source: + remote: + path: Voile/Source/SceneGraph/IMainLoop.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DeltaTime + path: Source/SceneGraph/IMainLoop.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: double DeltaTime { get; } + parameters: [] + return: + type: System.Double + content.vb: ReadOnly Property DeltaTime As Double + overload: Voile.SceneGraph.IMainLoop.DeltaTime* +- uid: Voile.SceneGraph.IMainLoop.ShouldRun + commentId: P:Voile.SceneGraph.IMainLoop.ShouldRun + id: ShouldRun + parent: Voile.SceneGraph.IMainLoop + langs: + - csharp + - vb + name: ShouldRun + nameWithType: IMainLoop.ShouldRun + fullName: Voile.SceneGraph.IMainLoop.ShouldRun + type: Property + source: + remote: + path: Voile/Source/SceneGraph/IMainLoop.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ShouldRun + path: Source/SceneGraph/IMainLoop.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: bool ShouldRun { get; } + parameters: [] + return: + type: System.Boolean + content.vb: ReadOnly Property ShouldRun As Boolean + overload: Voile.SceneGraph.IMainLoop.ShouldRun* +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: Voile.SceneGraph.IMainLoop.Init* + commentId: Overload:Voile.SceneGraph.IMainLoop.Init + href: Voile.SceneGraph.IMainLoop.html#Voile_SceneGraph_IMainLoop_Init + name: Init + nameWithType: IMainLoop.Init + fullName: Voile.SceneGraph.IMainLoop.Init +- uid: Voile.SceneGraph.IMainLoop.Start* + commentId: Overload:Voile.SceneGraph.IMainLoop.Start + href: Voile.SceneGraph.IMainLoop.html#Voile_SceneGraph_IMainLoop_Start + name: Start + nameWithType: IMainLoop.Start + fullName: Voile.SceneGraph.IMainLoop.Start +- uid: Voile.SceneGraph.IMainLoop.Update* + commentId: Overload:Voile.SceneGraph.IMainLoop.Update + href: Voile.SceneGraph.IMainLoop.html#Voile_SceneGraph_IMainLoop_Update + name: Update + nameWithType: IMainLoop.Update + fullName: Voile.SceneGraph.IMainLoop.Update +- uid: Voile.SceneGraph.IMainLoop.DeltaTime* + commentId: Overload:Voile.SceneGraph.IMainLoop.DeltaTime + href: Voile.SceneGraph.IMainLoop.html#Voile_SceneGraph_IMainLoop_DeltaTime + name: DeltaTime + nameWithType: IMainLoop.DeltaTime + fullName: Voile.SceneGraph.IMainLoop.DeltaTime +- uid: System.Double + commentId: T:System.Double + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + name: double + nameWithType: double + fullName: double + nameWithType.vb: Double + fullName.vb: Double + name.vb: Double +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.SceneGraph.IMainLoop.ShouldRun* + commentId: Overload:Voile.SceneGraph.IMainLoop.ShouldRun + href: Voile.SceneGraph.IMainLoop.html#Voile_SceneGraph_IMainLoop_ShouldRun + name: ShouldRun + nameWithType: IMainLoop.ShouldRun + fullName: Voile.SceneGraph.IMainLoop.ShouldRun +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean diff --git a/Voile/api/Voile.SceneGraph.ImGuiController.yml b/Voile/api/Voile.SceneGraph.ImGuiController.yml new file mode 100644 index 0000000..78247ad --- /dev/null +++ b/Voile/api/Voile.SceneGraph.ImGuiController.yml @@ -0,0 +1,695 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.ImGuiController + commentId: T:Voile.SceneGraph.ImGuiController + id: ImGuiController + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.ImGuiController.#ctor + - Voile.SceneGraph.ImGuiController.Dispose + - Voile.SceneGraph.ImGuiController.Draw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.ImGuiController.Load(System.Numerics.Vector2) + - Voile.SceneGraph.ImGuiController.Resize(System.Numerics.Vector2) + - Voile.SceneGraph.ImGuiController.Update(System.Double,Voile.Input.InputSystem) + langs: + - csharp + - vb + name: ImGuiController + nameWithType: ImGuiController + fullName: Voile.SceneGraph.ImGuiController + type: Class + source: + remote: + path: Voile/Source/Utils/ImGuiRenderLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ImGuiController + path: Source/Utils/ImGuiRenderLayer.cs + startLine: 44 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: 'public class ImGuiController : IDisposable, IDrawable' + content.vb: Public Class ImGuiController Implements IDisposable, IDrawable + inheritance: + - System.Object + implements: + - System.IDisposable + - Voile.SceneGraph.IDrawable + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.SceneGraph.ImGuiController.#ctor + commentId: M:Voile.SceneGraph.ImGuiController.#ctor + id: '#ctor' + parent: Voile.SceneGraph.ImGuiController + langs: + - csharp + - vb + name: ImGuiController() + nameWithType: ImGuiController.ImGuiController() + fullName: Voile.SceneGraph.ImGuiController.ImGuiController() + type: Constructor + source: + remote: + path: Voile/Source/Utils/ImGuiRenderLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/Utils/ImGuiRenderLayer.cs + startLine: 46 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public ImGuiController() + content.vb: Public Sub New() + overload: Voile.SceneGraph.ImGuiController.#ctor* + nameWithType.vb: ImGuiController.New() + fullName.vb: Voile.SceneGraph.ImGuiController.New() + name.vb: New() +- uid: Voile.SceneGraph.ImGuiController.Dispose + commentId: M:Voile.SceneGraph.ImGuiController.Dispose + id: Dispose + parent: Voile.SceneGraph.ImGuiController + langs: + - csharp + - vb + name: Dispose() + nameWithType: ImGuiController.Dispose() + fullName: Voile.SceneGraph.ImGuiController.Dispose() + type: Method + source: + remote: + path: Voile/Source/Utils/ImGuiRenderLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Dispose + path: Source/Utils/ImGuiRenderLayer.cs + startLine: 51 + assemblies: + - Voile + namespace: Voile.SceneGraph + summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + example: [] + syntax: + content: public void Dispose() + content.vb: Public Sub Dispose() + overload: Voile.SceneGraph.ImGuiController.Dispose* + implements: + - System.IDisposable.Dispose +- uid: Voile.SceneGraph.ImGuiController.Load(System.Numerics.Vector2) + commentId: M:Voile.SceneGraph.ImGuiController.Load(System.Numerics.Vector2) + id: Load(System.Numerics.Vector2) + parent: Voile.SceneGraph.ImGuiController + langs: + - csharp + - vb + name: Load(Vector2) + nameWithType: ImGuiController.Load(Vector2) + fullName: Voile.SceneGraph.ImGuiController.Load(System.Numerics.Vector2) + type: Method + source: + remote: + path: Voile/Source/Utils/ImGuiRenderLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Load + path: Source/Utils/ImGuiRenderLayer.cs + startLine: 56 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void Load(Vector2 size) + parameters: + - id: size + type: System.Numerics.Vector2 + content.vb: Public Sub Load(size As Vector2) + overload: Voile.SceneGraph.ImGuiController.Load* +- uid: Voile.SceneGraph.ImGuiController.Resize(System.Numerics.Vector2) + commentId: M:Voile.SceneGraph.ImGuiController.Resize(System.Numerics.Vector2) + id: Resize(System.Numerics.Vector2) + parent: Voile.SceneGraph.ImGuiController + langs: + - csharp + - vb + name: Resize(Vector2) + nameWithType: ImGuiController.Resize(Vector2) + fullName: Voile.SceneGraph.ImGuiController.Resize(System.Numerics.Vector2) + type: Method + source: + remote: + path: Voile/Source/Utils/ImGuiRenderLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Resize + path: Source/Utils/ImGuiRenderLayer.cs + startLine: 122 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void Resize(Vector2 size) + parameters: + - id: size + type: System.Numerics.Vector2 + content.vb: Public Sub Resize(size As Vector2) + overload: Voile.SceneGraph.ImGuiController.Resize* +- uid: Voile.SceneGraph.ImGuiController.Update(System.Double,Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.ImGuiController.Update(System.Double,Voile.Input.InputSystem) + id: Update(System.Double,Voile.Input.InputSystem) + parent: Voile.SceneGraph.ImGuiController + langs: + - csharp + - vb + name: Update(double, InputSystem) + nameWithType: ImGuiController.Update(double, InputSystem) + fullName: Voile.SceneGraph.ImGuiController.Update(double, Voile.Input.InputSystem) + type: Method + source: + remote: + path: Voile/Source/Utils/ImGuiRenderLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Update + path: Source/Utils/ImGuiRenderLayer.cs + startLine: 128 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void Update(double dt, InputSystem input) + parameters: + - id: dt + type: System.Double + - id: input + type: Voile.Input.InputSystem + content.vb: Public Sub Update(dt As Double, input As InputSystem) + overload: Voile.SceneGraph.ImGuiController.Update* + nameWithType.vb: ImGuiController.Update(Double, InputSystem) + fullName.vb: Voile.SceneGraph.ImGuiController.Update(Double, Voile.Input.InputSystem) + name.vb: Update(Double, InputSystem) +- uid: Voile.SceneGraph.ImGuiController.Draw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.ImGuiController.Draw(Voile.Rendering.RenderSystem) + id: Draw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.ImGuiController + langs: + - csharp + - vb + name: Draw(RenderSystem) + nameWithType: ImGuiController.Draw(RenderSystem) + fullName: Voile.SceneGraph.ImGuiController.Draw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/Utils/ImGuiRenderLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Draw + path: Source/Utils/ImGuiRenderLayer.cs + startLine: 321 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: public void Draw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Public Sub Draw(renderer As RenderSystem) + overload: Voile.SceneGraph.ImGuiController.Draw* + implements: + - Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.IDisposable + commentId: T:System.IDisposable + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable + name: IDisposable + nameWithType: IDisposable + fullName: System.IDisposable +- uid: Voile.SceneGraph.IDrawable + commentId: T:Voile.SceneGraph.IDrawable + parent: Voile.SceneGraph + href: Voile.SceneGraph.IDrawable.html + name: IDrawable + nameWithType: IDrawable + fullName: Voile.SceneGraph.IDrawable +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.SceneGraph.ImGuiController.#ctor* + commentId: Overload:Voile.SceneGraph.ImGuiController.#ctor + href: Voile.SceneGraph.ImGuiController.html#Voile_SceneGraph_ImGuiController__ctor + name: ImGuiController + nameWithType: ImGuiController.ImGuiController + fullName: Voile.SceneGraph.ImGuiController.ImGuiController + nameWithType.vb: ImGuiController.New + fullName.vb: Voile.SceneGraph.ImGuiController.New + name.vb: New +- uid: Voile.SceneGraph.ImGuiController.Dispose* + commentId: Overload:Voile.SceneGraph.ImGuiController.Dispose + href: Voile.SceneGraph.ImGuiController.html#Voile_SceneGraph_ImGuiController_Dispose + name: Dispose + nameWithType: ImGuiController.Dispose + fullName: Voile.SceneGraph.ImGuiController.Dispose +- uid: System.IDisposable.Dispose + commentId: M:System.IDisposable.Dispose + parent: System.IDisposable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + name: Dispose() + nameWithType: IDisposable.Dispose() + fullName: System.IDisposable.Dispose() + spec.csharp: + - uid: System.IDisposable.Dispose + name: Dispose + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + - name: ( + - name: ) + spec.vb: + - uid: System.IDisposable.Dispose + name: Dispose + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose + - name: ( + - name: ) +- uid: Voile.SceneGraph.ImGuiController.Load* + commentId: Overload:Voile.SceneGraph.ImGuiController.Load + href: Voile.SceneGraph.ImGuiController.html#Voile_SceneGraph_ImGuiController_Load_System_Numerics_Vector2_ + name: Load + nameWithType: ImGuiController.Load + fullName: Voile.SceneGraph.ImGuiController.Load +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: Voile.SceneGraph.ImGuiController.Resize* + commentId: Overload:Voile.SceneGraph.ImGuiController.Resize + href: Voile.SceneGraph.ImGuiController.html#Voile_SceneGraph_ImGuiController_Resize_System_Numerics_Vector2_ + name: Resize + nameWithType: ImGuiController.Resize + fullName: Voile.SceneGraph.ImGuiController.Resize +- uid: Voile.SceneGraph.ImGuiController.Update* + commentId: Overload:Voile.SceneGraph.ImGuiController.Update + href: Voile.SceneGraph.ImGuiController.html#Voile_SceneGraph_ImGuiController_Update_System_Double_Voile_Input_InputSystem_ + name: Update + nameWithType: ImGuiController.Update + fullName: Voile.SceneGraph.ImGuiController.Update +- uid: System.Double + commentId: T:System.Double + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + name: double + nameWithType: double + fullName: double + nameWithType.vb: Double + fullName.vb: Double + name.vb: Double +- uid: Voile.Input.InputSystem + commentId: T:Voile.Input.InputSystem + parent: Voile.Input + href: Voile.Input.InputSystem.html + name: InputSystem + nameWithType: InputSystem + fullName: Voile.Input.InputSystem +- uid: Voile.Input + commentId: N:Voile.Input + href: Voile.html + name: Voile.Input + nameWithType: Voile.Input + fullName: Voile.Input + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html +- uid: Voile.SceneGraph.ImGuiController.Draw* + commentId: Overload:Voile.SceneGraph.ImGuiController.Draw + href: Voile.SceneGraph.ImGuiController.html#Voile_SceneGraph_ImGuiController_Draw_Voile_Rendering_RenderSystem_ + name: Draw + nameWithType: ImGuiController.Draw + fullName: Voile.SceneGraph.ImGuiController.Draw +- uid: Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.IDrawable + href: Voile.SceneGraph.IDrawable.html#Voile_SceneGraph_IDrawable_Draw_Voile_Rendering_RenderSystem_ + name: Draw(RenderSystem) + nameWithType: IDrawable.Draw(RenderSystem) + fullName: Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.IDrawable.html#Voile_SceneGraph_IDrawable_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.IDrawable.html#Voile_SceneGraph_IDrawable_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html diff --git a/Voile/api/Voile.SceneGraph.ImGuiRenderLayer.yml b/Voile/api/Voile.SceneGraph.ImGuiRenderLayer.yml new file mode 100644 index 0000000..6b2a283 --- /dev/null +++ b/Voile/api/Voile.SceneGraph.ImGuiRenderLayer.yml @@ -0,0 +1,909 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.ImGuiRenderLayer + commentId: T:Voile.SceneGraph.ImGuiRenderLayer + id: ImGuiRenderLayer + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.ImGuiRenderLayer.Layout + - Voile.SceneGraph.ImGuiRenderLayer.OnBeginDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.ImGuiRenderLayer.OnDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.ImGuiRenderLayer.OnEndDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.ImGuiRenderLayer.OnStart + - Voile.SceneGraph.ImGuiRenderLayer.OnUpdate(System.Double) + langs: + - csharp + - vb + name: ImGuiRenderLayer + nameWithType: ImGuiRenderLayer + fullName: Voile.SceneGraph.ImGuiRenderLayer + type: Class + source: + remote: + path: Voile/Source/Utils/ImGuiRenderLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ImGuiRenderLayer + path: Source/Utils/ImGuiRenderLayer.cs + startLine: 10 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: 'public class ImGuiRenderLayer : Layer, IDrawable' + content.vb: Public Class ImGuiRenderLayer Inherits Layer Implements IDrawable + inheritance: + - System.Object + - Voile.SceneGraph.Layer + implements: + - Voile.SceneGraph.IDrawable + inheritedMembers: + - Voile.SceneGraph.Layer.Scene + - Voile.SceneGraph.Layer.Input + - Voile.SceneGraph.Layer.ResourceManager + - Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Layer.Start + - Voile.SceneGraph.Layer.Update(System.Double) + - Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem) + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.SceneGraph.ImGuiRenderLayer.OnDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.ImGuiRenderLayer.OnDraw(Voile.Rendering.RenderSystem) + id: OnDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.ImGuiRenderLayer + langs: + - csharp + - vb + name: OnDraw(RenderSystem) + nameWithType: ImGuiRenderLayer.OnDraw(RenderSystem) + fullName: Voile.SceneGraph.ImGuiRenderLayer.OnDraw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/Utils/ImGuiRenderLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnDraw + path: Source/Utils/ImGuiRenderLayer.cs + startLine: 12 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: protected override void OnDraw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Protected Overrides Sub OnDraw(renderer As RenderSystem) + overridden: Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem) + overload: Voile.SceneGraph.ImGuiRenderLayer.OnDraw* +- uid: Voile.SceneGraph.ImGuiRenderLayer.Layout + commentId: M:Voile.SceneGraph.ImGuiRenderLayer.Layout + id: Layout + parent: Voile.SceneGraph.ImGuiRenderLayer + langs: + - csharp + - vb + name: Layout() + nameWithType: ImGuiRenderLayer.Layout() + fullName: Voile.SceneGraph.ImGuiRenderLayer.Layout() + type: Method + source: + remote: + path: Voile/Source/Utils/ImGuiRenderLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Layout + path: Source/Utils/ImGuiRenderLayer.cs + startLine: 18 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: protected virtual void Layout() + content.vb: Protected Overridable Sub Layout() + overload: Voile.SceneGraph.ImGuiRenderLayer.Layout* +- uid: Voile.SceneGraph.ImGuiRenderLayer.OnStart + commentId: M:Voile.SceneGraph.ImGuiRenderLayer.OnStart + id: OnStart + parent: Voile.SceneGraph.ImGuiRenderLayer + langs: + - csharp + - vb + name: OnStart() + nameWithType: ImGuiRenderLayer.OnStart() + fullName: Voile.SceneGraph.ImGuiRenderLayer.OnStart() + type: Method + source: + remote: + path: Voile/Source/Utils/ImGuiRenderLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnStart + path: Source/Utils/ImGuiRenderLayer.cs + startLine: 20 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: protected override void OnStart() + content.vb: Protected Overrides Sub OnStart() + overridden: Voile.SceneGraph.Layer.OnStart + overload: Voile.SceneGraph.ImGuiRenderLayer.OnStart* +- uid: Voile.SceneGraph.ImGuiRenderLayer.OnUpdate(System.Double) + commentId: M:Voile.SceneGraph.ImGuiRenderLayer.OnUpdate(System.Double) + id: OnUpdate(System.Double) + parent: Voile.SceneGraph.ImGuiRenderLayer + langs: + - csharp + - vb + name: OnUpdate(double) + nameWithType: ImGuiRenderLayer.OnUpdate(double) + fullName: Voile.SceneGraph.ImGuiRenderLayer.OnUpdate(double) + type: Method + source: + remote: + path: Voile/Source/Utils/ImGuiRenderLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnUpdate + path: Source/Utils/ImGuiRenderLayer.cs + startLine: 26 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: protected override void OnUpdate(double dt) + parameters: + - id: dt + type: System.Double + content.vb: Protected Overrides Sub OnUpdate(dt As Double) + overridden: Voile.SceneGraph.Layer.OnUpdate(System.Double) + overload: Voile.SceneGraph.ImGuiRenderLayer.OnUpdate* + nameWithType.vb: ImGuiRenderLayer.OnUpdate(Double) + fullName.vb: Voile.SceneGraph.ImGuiRenderLayer.OnUpdate(Double) + name.vb: OnUpdate(Double) +- uid: Voile.SceneGraph.ImGuiRenderLayer.OnBeginDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.ImGuiRenderLayer.OnBeginDraw(Voile.Rendering.RenderSystem) + id: OnBeginDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.ImGuiRenderLayer + langs: + - csharp + - vb + name: OnBeginDraw(RenderSystem) + nameWithType: ImGuiRenderLayer.OnBeginDraw(RenderSystem) + fullName: Voile.SceneGraph.ImGuiRenderLayer.OnBeginDraw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/Utils/ImGuiRenderLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnBeginDraw + path: Source/Utils/ImGuiRenderLayer.cs + startLine: 31 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: protected override void OnBeginDraw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Protected Overrides Sub OnBeginDraw(renderer As RenderSystem) + overridden: Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem) + overload: Voile.SceneGraph.ImGuiRenderLayer.OnBeginDraw* +- uid: Voile.SceneGraph.ImGuiRenderLayer.OnEndDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.ImGuiRenderLayer.OnEndDraw(Voile.Rendering.RenderSystem) + id: OnEndDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.ImGuiRenderLayer + langs: + - csharp + - vb + name: OnEndDraw(RenderSystem) + nameWithType: ImGuiRenderLayer.OnEndDraw(RenderSystem) + fullName: Voile.SceneGraph.ImGuiRenderLayer.OnEndDraw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/Utils/ImGuiRenderLayer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnEndDraw + path: Source/Utils/ImGuiRenderLayer.cs + startLine: 36 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: protected override void OnEndDraw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Protected Overrides Sub OnEndDraw(renderer As RenderSystem) + overridden: Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem) + overload: Voile.SceneGraph.ImGuiRenderLayer.OnEndDraw* +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.SceneGraph.Layer + commentId: T:Voile.SceneGraph.Layer + parent: Voile.SceneGraph + href: Voile.SceneGraph.Layer.html + name: Layer + nameWithType: Layer + fullName: Voile.SceneGraph.Layer +- uid: Voile.SceneGraph.IDrawable + commentId: T:Voile.SceneGraph.IDrawable + parent: Voile.SceneGraph + href: Voile.SceneGraph.IDrawable.html + name: IDrawable + nameWithType: IDrawable + fullName: Voile.SceneGraph.IDrawable +- uid: Voile.SceneGraph.Layer.Scene + commentId: P:Voile.SceneGraph.Layer.Scene + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Scene + name: Scene + nameWithType: Layer.Scene + fullName: Voile.SceneGraph.Layer.Scene +- uid: Voile.SceneGraph.Layer.Input + commentId: P:Voile.SceneGraph.Layer.Input + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Input + name: Input + nameWithType: Layer.Input + fullName: Voile.SceneGraph.Layer.Input +- uid: Voile.SceneGraph.Layer.ResourceManager + commentId: P:Voile.SceneGraph.Layer.ResourceManager + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_ResourceManager + name: ResourceManager + nameWithType: Layer.ResourceManager + fullName: Voile.SceneGraph.Layer.ResourceManager +- uid: Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_BeginDraw_Voile_Rendering_RenderSystem_ + name: BeginDraw(RenderSystem) + nameWithType: Layer.BeginDraw(RenderSystem) + fullName: Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem) + name: BeginDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_BeginDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem) + name: BeginDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_BeginDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Draw_Voile_Rendering_RenderSystem_ + name: Draw(RenderSystem) + nameWithType: Layer.Draw(RenderSystem) + fullName: Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_EndDraw_Voile_Rendering_RenderSystem_ + name: EndDraw(RenderSystem) + nameWithType: Layer.EndDraw(RenderSystem) + fullName: Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem) + name: EndDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_EndDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem) + name: EndDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_EndDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.Layer.Start + commentId: M:Voile.SceneGraph.Layer.Start + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Start + name: Start() + nameWithType: Layer.Start() + fullName: Voile.SceneGraph.Layer.Start() + spec.csharp: + - uid: Voile.SceneGraph.Layer.Start + name: Start + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Start + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.Start + name: Start + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Start + - name: ( + - name: ) +- uid: Voile.SceneGraph.Layer.Update(System.Double) + commentId: M:Voile.SceneGraph.Layer.Update(System.Double) + parent: Voile.SceneGraph.Layer + isExternal: true + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Update_System_Double_ + name: Update(double) + nameWithType: Layer.Update(double) + fullName: Voile.SceneGraph.Layer.Update(double) + nameWithType.vb: Layer.Update(Double) + fullName.vb: Voile.SceneGraph.Layer.Update(Double) + name.vb: Update(Double) + spec.csharp: + - uid: Voile.SceneGraph.Layer.Update(System.Double) + name: Update + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Update_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.Update(System.Double) + name: Update + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Update_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_ReceiveInput_Voile_Input_InputSystem_ + name: ReceiveInput(InputSystem) + nameWithType: Layer.ReceiveInput(InputSystem) + fullName: Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnInput_Voile_Input_InputSystem_ + name: OnInput(InputSystem) + nameWithType: Layer.OnInput(InputSystem) + fullName: Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnDraw_Voile_Rendering_RenderSystem_ + name: OnDraw(RenderSystem) + nameWithType: Layer.OnDraw(RenderSystem) + fullName: Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem) + name: OnDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem) + name: OnDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.ImGuiRenderLayer.OnDraw* + commentId: Overload:Voile.SceneGraph.ImGuiRenderLayer.OnDraw + href: Voile.SceneGraph.ImGuiRenderLayer.html#Voile_SceneGraph_ImGuiRenderLayer_OnDraw_Voile_Rendering_RenderSystem_ + name: OnDraw + nameWithType: ImGuiRenderLayer.OnDraw + fullName: Voile.SceneGraph.ImGuiRenderLayer.OnDraw +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: Voile.SceneGraph.ImGuiRenderLayer.Layout* + commentId: Overload:Voile.SceneGraph.ImGuiRenderLayer.Layout + href: Voile.SceneGraph.ImGuiRenderLayer.html#Voile_SceneGraph_ImGuiRenderLayer_Layout + name: Layout + nameWithType: ImGuiRenderLayer.Layout + fullName: Voile.SceneGraph.ImGuiRenderLayer.Layout +- uid: Voile.SceneGraph.Layer.OnStart + commentId: M:Voile.SceneGraph.Layer.OnStart + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnStart + name: OnStart() + nameWithType: Layer.OnStart() + fullName: Voile.SceneGraph.Layer.OnStart() + spec.csharp: + - uid: Voile.SceneGraph.Layer.OnStart + name: OnStart + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnStart + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.OnStart + name: OnStart + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnStart + - name: ( + - name: ) +- uid: Voile.SceneGraph.ImGuiRenderLayer.OnStart* + commentId: Overload:Voile.SceneGraph.ImGuiRenderLayer.OnStart + href: Voile.SceneGraph.ImGuiRenderLayer.html#Voile_SceneGraph_ImGuiRenderLayer_OnStart + name: OnStart + nameWithType: ImGuiRenderLayer.OnStart + fullName: Voile.SceneGraph.ImGuiRenderLayer.OnStart +- uid: Voile.SceneGraph.Layer.OnUpdate(System.Double) + commentId: M:Voile.SceneGraph.Layer.OnUpdate(System.Double) + parent: Voile.SceneGraph.Layer + isExternal: true + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnUpdate_System_Double_ + name: OnUpdate(double) + nameWithType: Layer.OnUpdate(double) + fullName: Voile.SceneGraph.Layer.OnUpdate(double) + nameWithType.vb: Layer.OnUpdate(Double) + fullName.vb: Voile.SceneGraph.Layer.OnUpdate(Double) + name.vb: OnUpdate(Double) + spec.csharp: + - uid: Voile.SceneGraph.Layer.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.ImGuiRenderLayer.OnUpdate* + commentId: Overload:Voile.SceneGraph.ImGuiRenderLayer.OnUpdate + href: Voile.SceneGraph.ImGuiRenderLayer.html#Voile_SceneGraph_ImGuiRenderLayer_OnUpdate_System_Double_ + name: OnUpdate + nameWithType: ImGuiRenderLayer.OnUpdate + fullName: Voile.SceneGraph.ImGuiRenderLayer.OnUpdate +- uid: System.Double + commentId: T:System.Double + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + name: double + nameWithType: double + fullName: double + nameWithType.vb: Double + fullName.vb: Double + name.vb: Double +- uid: Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnBeginDraw_Voile_Rendering_RenderSystem_ + name: OnBeginDraw(RenderSystem) + nameWithType: Layer.OnBeginDraw(RenderSystem) + fullName: Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem) + name: OnBeginDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnBeginDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem) + name: OnBeginDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnBeginDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.ImGuiRenderLayer.OnBeginDraw* + commentId: Overload:Voile.SceneGraph.ImGuiRenderLayer.OnBeginDraw + href: Voile.SceneGraph.ImGuiRenderLayer.html#Voile_SceneGraph_ImGuiRenderLayer_OnBeginDraw_Voile_Rendering_RenderSystem_ + name: OnBeginDraw + nameWithType: ImGuiRenderLayer.OnBeginDraw + fullName: Voile.SceneGraph.ImGuiRenderLayer.OnBeginDraw +- uid: Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Layer + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnEndDraw_Voile_Rendering_RenderSystem_ + name: OnEndDraw(RenderSystem) + nameWithType: Layer.OnEndDraw(RenderSystem) + fullName: Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem) + name: OnEndDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnEndDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem) + name: OnEndDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnEndDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.ImGuiRenderLayer.OnEndDraw* + commentId: Overload:Voile.SceneGraph.ImGuiRenderLayer.OnEndDraw + href: Voile.SceneGraph.ImGuiRenderLayer.html#Voile_SceneGraph_ImGuiRenderLayer_OnEndDraw_Voile_Rendering_RenderSystem_ + name: OnEndDraw + nameWithType: ImGuiRenderLayer.OnEndDraw + fullName: Voile.SceneGraph.ImGuiRenderLayer.OnEndDraw diff --git a/Voile/api/Voile.SceneGraph.Layer.yml b/Voile/api/Voile.SceneGraph.Layer.yml new file mode 100644 index 0000000..e366580 --- /dev/null +++ b/Voile/api/Voile.SceneGraph.Layer.yml @@ -0,0 +1,1013 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.Layer + commentId: T:Voile.SceneGraph.Layer + id: Layer + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Layer.Input + - Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Layer.OnStart + - Voile.SceneGraph.Layer.OnUpdate(System.Double) + - Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Layer.ResourceManager + - Voile.SceneGraph.Layer.Scene + - Voile.SceneGraph.Layer.Start + - Voile.SceneGraph.Layer.Update(System.Double) + langs: + - csharp + - vb + name: Layer + nameWithType: Layer + fullName: Voile.SceneGraph.Layer + type: Class + source: + remote: + path: Voile/Source/SceneGraph/Layer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Layer + path: Source/SceneGraph/Layer.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: 'public abstract class Layer : IDrawable' + content.vb: Public MustInherit Class Layer Implements IDrawable + inheritance: + - System.Object + derivedClasses: + - Voile.SceneGraph.EntityLayer + - Voile.SceneGraph.ImGuiRenderLayer + implements: + - Voile.SceneGraph.IDrawable + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.SceneGraph.Layer.Scene + commentId: P:Voile.SceneGraph.Layer.Scene + id: Scene + parent: Voile.SceneGraph.Layer + langs: + - csharp + - vb + name: Scene + nameWithType: Layer.Scene + fullName: Voile.SceneGraph.Layer.Scene + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Layer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Scene + path: Source/SceneGraph/Layer.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: >- + [JsonIgnore] + + public Scene? Scene { get; set; } + parameters: [] + return: + type: Voile.SceneGraph.Scene + content.vb: >- + + + Public Property Scene As Scene + overload: Voile.SceneGraph.Layer.Scene* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: Voile.SceneGraph.Layer.Input + commentId: P:Voile.SceneGraph.Layer.Input + id: Input + parent: Voile.SceneGraph.Layer + langs: + - csharp + - vb + name: Input + nameWithType: Layer.Input + fullName: Voile.SceneGraph.Layer.Input + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Layer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Input + path: Source/SceneGraph/Layer.cs + startLine: 10 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: >- + [JsonIgnore] + + public InputSystem? Input { get; set; } + parameters: [] + return: + type: Voile.Input.InputSystem + content.vb: >- + + + Public Property Input As InputSystem + overload: Voile.SceneGraph.Layer.Input* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: Voile.SceneGraph.Layer.ResourceManager + commentId: P:Voile.SceneGraph.Layer.ResourceManager + id: ResourceManager + parent: Voile.SceneGraph.Layer + langs: + - csharp + - vb + name: ResourceManager + nameWithType: Layer.ResourceManager + fullName: Voile.SceneGraph.Layer.ResourceManager + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Layer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ResourceManager + path: Source/SceneGraph/Layer.cs + startLine: 11 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: >- + [JsonIgnore] + + public ResourceManager ResourceManager { get; } + parameters: [] + return: + type: Voile.Resources.ResourceManager + content.vb: >- + + + Public ReadOnly Property ResourceManager As ResourceManager + overload: Voile.SceneGraph.Layer.ResourceManager* + attributes: + - type: System.Text.Json.Serialization.JsonIgnoreAttribute + ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor + arguments: [] +- uid: Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem) + id: BeginDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Layer + langs: + - csharp + - vb + name: BeginDraw(RenderSystem) + nameWithType: Layer.BeginDraw(RenderSystem) + fullName: Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Layer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: BeginDraw + path: Source/SceneGraph/Layer.cs + startLine: 13 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void BeginDraw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Public Sub BeginDraw(renderer As RenderSystem) + overload: Voile.SceneGraph.Layer.BeginDraw* +- uid: Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem) + id: Draw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Layer + langs: + - csharp + - vb + name: Draw(RenderSystem) + nameWithType: Layer.Draw(RenderSystem) + fullName: Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Layer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Draw + path: Source/SceneGraph/Layer.cs + startLine: 14 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: public void Draw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Public Sub Draw(renderer As RenderSystem) + overload: Voile.SceneGraph.Layer.Draw* + implements: + - Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) +- uid: Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem) + id: EndDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Layer + langs: + - csharp + - vb + name: EndDraw(RenderSystem) + nameWithType: Layer.EndDraw(RenderSystem) + fullName: Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Layer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: EndDraw + path: Source/SceneGraph/Layer.cs + startLine: 15 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void EndDraw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Public Sub EndDraw(renderer As RenderSystem) + overload: Voile.SceneGraph.Layer.EndDraw* +- uid: Voile.SceneGraph.Layer.Start + commentId: M:Voile.SceneGraph.Layer.Start + id: Start + parent: Voile.SceneGraph.Layer + langs: + - csharp + - vb + name: Start() + nameWithType: Layer.Start() + fullName: Voile.SceneGraph.Layer.Start() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Layer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Start + path: Source/SceneGraph/Layer.cs + startLine: 17 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void Start() + content.vb: Public Sub Start() + overload: Voile.SceneGraph.Layer.Start* +- uid: Voile.SceneGraph.Layer.Update(System.Double) + commentId: M:Voile.SceneGraph.Layer.Update(System.Double) + id: Update(System.Double) + parent: Voile.SceneGraph.Layer + langs: + - csharp + - vb + name: Update(double) + nameWithType: Layer.Update(double) + fullName: Voile.SceneGraph.Layer.Update(double) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Layer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Update + path: Source/SceneGraph/Layer.cs + startLine: 18 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void Update(double dt) + parameters: + - id: dt + type: System.Double + content.vb: Public Sub Update(dt As Double) + overload: Voile.SceneGraph.Layer.Update* + nameWithType.vb: Layer.Update(Double) + fullName.vb: Voile.SceneGraph.Layer.Update(Double) + name.vb: Update(Double) +- uid: Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem) + id: ReceiveInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Layer + langs: + - csharp + - vb + name: ReceiveInput(InputSystem) + nameWithType: Layer.ReceiveInput(InputSystem) + fullName: Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Layer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ReceiveInput + path: Source/SceneGraph/Layer.cs + startLine: 19 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void ReceiveInput(InputSystem input) + parameters: + - id: input + type: Voile.Input.InputSystem + content.vb: Public Sub ReceiveInput(input As InputSystem) + overload: Voile.SceneGraph.Layer.ReceiveInput* +- uid: Voile.SceneGraph.Layer.OnStart + commentId: M:Voile.SceneGraph.Layer.OnStart + id: OnStart + parent: Voile.SceneGraph.Layer + langs: + - csharp + - vb + name: OnStart() + nameWithType: Layer.OnStart() + fullName: Voile.SceneGraph.Layer.OnStart() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Layer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnStart + path: Source/SceneGraph/Layer.cs + startLine: 21 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: protected virtual void OnStart() + content.vb: Protected Overridable Sub OnStart() + overload: Voile.SceneGraph.Layer.OnStart* +- uid: Voile.SceneGraph.Layer.OnUpdate(System.Double) + commentId: M:Voile.SceneGraph.Layer.OnUpdate(System.Double) + id: OnUpdate(System.Double) + parent: Voile.SceneGraph.Layer + langs: + - csharp + - vb + name: OnUpdate(double) + nameWithType: Layer.OnUpdate(double) + fullName: Voile.SceneGraph.Layer.OnUpdate(double) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Layer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnUpdate + path: Source/SceneGraph/Layer.cs + startLine: 22 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: protected virtual void OnUpdate(double dt) + parameters: + - id: dt + type: System.Double + content.vb: Protected Overridable Sub OnUpdate(dt As Double) + overload: Voile.SceneGraph.Layer.OnUpdate* + nameWithType.vb: Layer.OnUpdate(Double) + fullName.vb: Voile.SceneGraph.Layer.OnUpdate(Double) + name.vb: OnUpdate(Double) +- uid: Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem) + id: OnInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Layer + langs: + - csharp + - vb + name: OnInput(InputSystem) + nameWithType: Layer.OnInput(InputSystem) + fullName: Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Layer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnInput + path: Source/SceneGraph/Layer.cs + startLine: 23 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: protected virtual void OnInput(InputSystem input) + parameters: + - id: input + type: Voile.Input.InputSystem + content.vb: Protected Overridable Sub OnInput(input As InputSystem) + overload: Voile.SceneGraph.Layer.OnInput* +- uid: Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem) + id: OnBeginDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Layer + langs: + - csharp + - vb + name: OnBeginDraw(RenderSystem) + nameWithType: Layer.OnBeginDraw(RenderSystem) + fullName: Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Layer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnBeginDraw + path: Source/SceneGraph/Layer.cs + startLine: 24 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: protected abstract void OnBeginDraw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Protected MustOverride Sub OnBeginDraw(renderer As RenderSystem) + overload: Voile.SceneGraph.Layer.OnBeginDraw* +- uid: Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem) + id: OnDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Layer + langs: + - csharp + - vb + name: OnDraw(RenderSystem) + nameWithType: Layer.OnDraw(RenderSystem) + fullName: Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Layer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnDraw + path: Source/SceneGraph/Layer.cs + startLine: 25 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: protected abstract void OnDraw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Protected MustOverride Sub OnDraw(renderer As RenderSystem) + overload: Voile.SceneGraph.Layer.OnDraw* +- uid: Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem) + id: OnEndDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Layer + langs: + - csharp + - vb + name: OnEndDraw(RenderSystem) + nameWithType: Layer.OnEndDraw(RenderSystem) + fullName: Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Layer.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnEndDraw + path: Source/SceneGraph/Layer.cs + startLine: 26 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: protected abstract void OnEndDraw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Protected MustOverride Sub OnEndDraw(renderer As RenderSystem) + overload: Voile.SceneGraph.Layer.OnEndDraw* +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.SceneGraph.IDrawable + commentId: T:Voile.SceneGraph.IDrawable + parent: Voile.SceneGraph + href: Voile.SceneGraph.IDrawable.html + name: IDrawable + nameWithType: IDrawable + fullName: Voile.SceneGraph.IDrawable +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.SceneGraph.Layer.Scene* + commentId: Overload:Voile.SceneGraph.Layer.Scene + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Scene + name: Scene + nameWithType: Layer.Scene + fullName: Voile.SceneGraph.Layer.Scene +- uid: Voile.SceneGraph.Scene + commentId: T:Voile.SceneGraph.Scene + parent: Voile.SceneGraph + href: Voile.SceneGraph.Scene.html + name: Scene + nameWithType: Scene + fullName: Voile.SceneGraph.Scene +- uid: Voile.SceneGraph.Layer.Input* + commentId: Overload:Voile.SceneGraph.Layer.Input + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Input + name: Input + nameWithType: Layer.Input + fullName: Voile.SceneGraph.Layer.Input +- uid: Voile.Input.InputSystem + commentId: T:Voile.Input.InputSystem + parent: Voile.Input + href: Voile.Input.InputSystem.html + name: InputSystem + nameWithType: InputSystem + fullName: Voile.Input.InputSystem +- uid: Voile.Input + commentId: N:Voile.Input + href: Voile.html + name: Voile.Input + nameWithType: Voile.Input + fullName: Voile.Input + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html +- uid: Voile.SceneGraph.Layer.ResourceManager* + commentId: Overload:Voile.SceneGraph.Layer.ResourceManager + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_ResourceManager + name: ResourceManager + nameWithType: Layer.ResourceManager + fullName: Voile.SceneGraph.Layer.ResourceManager +- uid: Voile.Resources.ResourceManager + commentId: T:Voile.Resources.ResourceManager + parent: Voile.Resources + href: Voile.Resources.ResourceManager.html + name: ResourceManager + nameWithType: ResourceManager + fullName: Voile.Resources.ResourceManager +- uid: Voile.Resources + commentId: N:Voile.Resources + href: Voile.html + name: Voile.Resources + nameWithType: Voile.Resources + fullName: Voile.Resources + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html +- uid: Voile.SceneGraph.Layer.BeginDraw* + commentId: Overload:Voile.SceneGraph.Layer.BeginDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_BeginDraw_Voile_Rendering_RenderSystem_ + name: BeginDraw + nameWithType: Layer.BeginDraw + fullName: Voile.SceneGraph.Layer.BeginDraw +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: Voile.SceneGraph.Layer.Draw* + commentId: Overload:Voile.SceneGraph.Layer.Draw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Draw_Voile_Rendering_RenderSystem_ + name: Draw + nameWithType: Layer.Draw + fullName: Voile.SceneGraph.Layer.Draw +- uid: Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.IDrawable + href: Voile.SceneGraph.IDrawable.html#Voile_SceneGraph_IDrawable_Draw_Voile_Rendering_RenderSystem_ + name: Draw(RenderSystem) + nameWithType: IDrawable.Draw(RenderSystem) + fullName: Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.IDrawable.html#Voile_SceneGraph_IDrawable_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.IDrawable.html#Voile_SceneGraph_IDrawable_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.Layer.EndDraw* + commentId: Overload:Voile.SceneGraph.Layer.EndDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_EndDraw_Voile_Rendering_RenderSystem_ + name: EndDraw + nameWithType: Layer.EndDraw + fullName: Voile.SceneGraph.Layer.EndDraw +- uid: Voile.SceneGraph.Layer.Start* + commentId: Overload:Voile.SceneGraph.Layer.Start + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Start + name: Start + nameWithType: Layer.Start + fullName: Voile.SceneGraph.Layer.Start +- uid: Voile.SceneGraph.Layer.Update* + commentId: Overload:Voile.SceneGraph.Layer.Update + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Update_System_Double_ + name: Update + nameWithType: Layer.Update + fullName: Voile.SceneGraph.Layer.Update +- uid: System.Double + commentId: T:System.Double + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + name: double + nameWithType: double + fullName: double + nameWithType.vb: Double + fullName.vb: Double + name.vb: Double +- uid: Voile.SceneGraph.Layer.ReceiveInput* + commentId: Overload:Voile.SceneGraph.Layer.ReceiveInput + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_ReceiveInput_Voile_Input_InputSystem_ + name: ReceiveInput + nameWithType: Layer.ReceiveInput + fullName: Voile.SceneGraph.Layer.ReceiveInput +- uid: Voile.SceneGraph.Layer.OnStart* + commentId: Overload:Voile.SceneGraph.Layer.OnStart + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnStart + name: OnStart + nameWithType: Layer.OnStart + fullName: Voile.SceneGraph.Layer.OnStart +- uid: Voile.SceneGraph.Layer.OnUpdate* + commentId: Overload:Voile.SceneGraph.Layer.OnUpdate + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnUpdate_System_Double_ + name: OnUpdate + nameWithType: Layer.OnUpdate + fullName: Voile.SceneGraph.Layer.OnUpdate +- uid: Voile.SceneGraph.Layer.OnInput* + commentId: Overload:Voile.SceneGraph.Layer.OnInput + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnInput_Voile_Input_InputSystem_ + name: OnInput + nameWithType: Layer.OnInput + fullName: Voile.SceneGraph.Layer.OnInput +- uid: Voile.SceneGraph.Layer.OnBeginDraw* + commentId: Overload:Voile.SceneGraph.Layer.OnBeginDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnBeginDraw_Voile_Rendering_RenderSystem_ + name: OnBeginDraw + nameWithType: Layer.OnBeginDraw + fullName: Voile.SceneGraph.Layer.OnBeginDraw +- uid: Voile.SceneGraph.Layer.OnDraw* + commentId: Overload:Voile.SceneGraph.Layer.OnDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnDraw_Voile_Rendering_RenderSystem_ + name: OnDraw + nameWithType: Layer.OnDraw + fullName: Voile.SceneGraph.Layer.OnDraw +- uid: Voile.SceneGraph.Layer.OnEndDraw* + commentId: Overload:Voile.SceneGraph.Layer.OnEndDraw + href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnEndDraw_Voile_Rendering_RenderSystem_ + name: OnEndDraw + nameWithType: Layer.OnEndDraw + fullName: Voile.SceneGraph.Layer.OnEndDraw diff --git a/Voile/api/Voile.SceneGraph.Particle.yml b/Voile/api/Voile.SceneGraph.Particle.yml new file mode 100644 index 0000000..310e7f3 --- /dev/null +++ b/Voile/api/Voile.SceneGraph.Particle.yml @@ -0,0 +1,595 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.Particle + commentId: T:Voile.SceneGraph.Particle + id: Particle + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.Particle.#ctor + - Voile.SceneGraph.Particle.Alive + - Voile.SceneGraph.Particle.AngularVelocity + - Voile.SceneGraph.Particle.LifeTime + - Voile.SceneGraph.Particle.LifeTimeRemaining + - Voile.SceneGraph.Particle.Position + - Voile.SceneGraph.Particle.Rotation + - Voile.SceneGraph.Particle.Scale + - Voile.SceneGraph.Particle.Velocity + langs: + - csharp + - vb + name: Particle + nameWithType: Particle + fullName: Voile.SceneGraph.Particle + type: Struct + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Particle + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 147 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public struct Particle + content.vb: Public Structure Particle + inheritedMembers: + - System.ValueType.Equals(System.Object) + - System.ValueType.GetHashCode + - System.ValueType.ToString + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetType + - System.Object.ReferenceEquals(System.Object,System.Object) +- uid: Voile.SceneGraph.Particle.#ctor + commentId: M:Voile.SceneGraph.Particle.#ctor + id: '#ctor' + parent: Voile.SceneGraph.Particle + langs: + - csharp + - vb + name: Particle() + nameWithType: Particle.Particle() + fullName: Voile.SceneGraph.Particle.Particle() + type: Constructor + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 149 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Particle() + content.vb: Public Sub New() + overload: Voile.SceneGraph.Particle.#ctor* + nameWithType.vb: Particle.New() + fullName.vb: Voile.SceneGraph.Particle.New() + name.vb: New() +- uid: Voile.SceneGraph.Particle.Position + commentId: F:Voile.SceneGraph.Particle.Position + id: Position + parent: Voile.SceneGraph.Particle + langs: + - csharp + - vb + name: Position + nameWithType: Particle.Position + fullName: Voile.SceneGraph.Particle.Position + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Position + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 152 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Vector2 Position + return: + type: System.Numerics.Vector2 + content.vb: Public Position As Vector2 +- uid: Voile.SceneGraph.Particle.Velocity + commentId: F:Voile.SceneGraph.Particle.Velocity + id: Velocity + parent: Voile.SceneGraph.Particle + langs: + - csharp + - vb + name: Velocity + nameWithType: Particle.Velocity + fullName: Voile.SceneGraph.Particle.Velocity + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Velocity + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 153 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Vector2 Velocity + return: + type: System.Numerics.Vector2 + content.vb: Public Velocity As Vector2 +- uid: Voile.SceneGraph.Particle.AngularVelocity + commentId: F:Voile.SceneGraph.Particle.AngularVelocity + id: AngularVelocity + parent: Voile.SceneGraph.Particle + langs: + - csharp + - vb + name: AngularVelocity + nameWithType: Particle.AngularVelocity + fullName: Voile.SceneGraph.Particle.AngularVelocity + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AngularVelocity + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 154 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public float AngularVelocity + return: + type: System.Single + content.vb: Public AngularVelocity As Single +- uid: Voile.SceneGraph.Particle.LifeTime + commentId: F:Voile.SceneGraph.Particle.LifeTime + id: LifeTime + parent: Voile.SceneGraph.Particle + langs: + - csharp + - vb + name: LifeTime + nameWithType: Particle.LifeTime + fullName: Voile.SceneGraph.Particle.LifeTime + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LifeTime + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 155 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public float LifeTime + return: + type: System.Single + content.vb: Public LifeTime As Single +- uid: Voile.SceneGraph.Particle.LifeTimeRemaining + commentId: F:Voile.SceneGraph.Particle.LifeTimeRemaining + id: LifeTimeRemaining + parent: Voile.SceneGraph.Particle + langs: + - csharp + - vb + name: LifeTimeRemaining + nameWithType: Particle.LifeTimeRemaining + fullName: Voile.SceneGraph.Particle.LifeTimeRemaining + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LifeTimeRemaining + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 156 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public float LifeTimeRemaining + return: + type: System.Single + content.vb: Public LifeTimeRemaining As Single +- uid: Voile.SceneGraph.Particle.Scale + commentId: F:Voile.SceneGraph.Particle.Scale + id: Scale + parent: Voile.SceneGraph.Particle + langs: + - csharp + - vb + name: Scale + nameWithType: Particle.Scale + fullName: Voile.SceneGraph.Particle.Scale + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Scale + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 157 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public float Scale + return: + type: System.Single + content.vb: Public Scale As Single +- uid: Voile.SceneGraph.Particle.Rotation + commentId: F:Voile.SceneGraph.Particle.Rotation + id: Rotation + parent: Voile.SceneGraph.Particle + langs: + - csharp + - vb + name: Rotation + nameWithType: Particle.Rotation + fullName: Voile.SceneGraph.Particle.Rotation + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Rotation + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 158 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public float Rotation + return: + type: System.Single + content.vb: Public Rotation As Single +- uid: Voile.SceneGraph.Particle.Alive + commentId: F:Voile.SceneGraph.Particle.Alive + id: Alive + parent: Voile.SceneGraph.Particle + langs: + - csharp + - vb + name: Alive + nameWithType: Particle.Alive + fullName: Voile.SceneGraph.Particle.Alive + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Alive + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 159 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public bool Alive + return: + type: System.Boolean + content.vb: Public Alive As Boolean +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.ValueType.Equals(System.Object) + commentId: M:System.ValueType.Equals(System.Object) + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + name: Equals(object) + nameWithType: ValueType.Equals(object) + fullName: System.ValueType.Equals(object) + nameWithType.vb: ValueType.Equals(Object) + fullName.vb: System.ValueType.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType.GetHashCode + commentId: M:System.ValueType.GetHashCode + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + name: GetHashCode() + nameWithType: ValueType.GetHashCode() + fullName: System.ValueType.GetHashCode() + spec.csharp: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) +- uid: System.ValueType.ToString + commentId: M:System.ValueType.ToString + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + name: ToString() + nameWithType: ValueType.ToString() + fullName: System.ValueType.ToString() + spec.csharp: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType + commentId: T:System.ValueType + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype + name: ValueType + nameWithType: ValueType + fullName: System.ValueType +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.SceneGraph.Particle.#ctor* + commentId: Overload:Voile.SceneGraph.Particle.#ctor + href: Voile.SceneGraph.Particle.html#Voile_SceneGraph_Particle__ctor + name: Particle + nameWithType: Particle.Particle + fullName: Voile.SceneGraph.Particle.Particle + nameWithType.vb: Particle.New + fullName.vb: Voile.SceneGraph.Particle.New + name.vb: New +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean diff --git a/Voile/api/Voile.SceneGraph.ParticleSettings.yml b/Voile/api/Voile.SceneGraph.ParticleSettings.yml new file mode 100644 index 0000000..b7ad434 --- /dev/null +++ b/Voile/api/Voile.SceneGraph.ParticleSettings.yml @@ -0,0 +1,804 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.ParticleSettings + commentId: T:Voile.SceneGraph.ParticleSettings + id: ParticleSettings + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.ParticleSettings.#ctor + - Voile.SceneGraph.ParticleSettings.AngularVelocity + - Voile.SceneGraph.ParticleSettings.AngularVelocityRandom + - Voile.SceneGraph.ParticleSettings.ColorBegin + - Voile.SceneGraph.ParticleSettings.ColorEnd + - Voile.SceneGraph.ParticleSettings.Damping + - Voile.SceneGraph.ParticleSettings.Direction + - Voile.SceneGraph.ParticleSettings.EmitRadius + - Voile.SceneGraph.ParticleSettings.Explosiveness + - Voile.SceneGraph.ParticleSettings.Gravity + - Voile.SceneGraph.ParticleSettings.LifeTime + - Voile.SceneGraph.ParticleSettings.LinearVelocity + - Voile.SceneGraph.ParticleSettings.LinearVelocityRandom + - Voile.SceneGraph.ParticleSettings.MaxParticles + - Voile.SceneGraph.ParticleSettings.ScaleBegin + - Voile.SceneGraph.ParticleSettings.ScaleEnd + langs: + - csharp + - vb + name: ParticleSettings + nameWithType: ParticleSettings + fullName: Voile.SceneGraph.ParticleSettings + type: Struct + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ParticleSettings + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 125 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public struct ParticleSettings + content.vb: Public Structure ParticleSettings + inheritedMembers: + - System.ValueType.Equals(System.Object) + - System.ValueType.GetHashCode + - System.ValueType.ToString + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetType + - System.Object.ReferenceEquals(System.Object,System.Object) +- uid: Voile.SceneGraph.ParticleSettings.#ctor + commentId: M:Voile.SceneGraph.ParticleSettings.#ctor + id: '#ctor' + parent: Voile.SceneGraph.ParticleSettings + langs: + - csharp + - vb + name: ParticleSettings() + nameWithType: ParticleSettings.ParticleSettings() + fullName: Voile.SceneGraph.ParticleSettings.ParticleSettings() + type: Constructor + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 127 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public ParticleSettings() + content.vb: Public Sub New() + overload: Voile.SceneGraph.ParticleSettings.#ctor* + nameWithType.vb: ParticleSettings.New() + fullName.vb: Voile.SceneGraph.ParticleSettings.New() + name.vb: New() +- uid: Voile.SceneGraph.ParticleSettings.EmitRadius + commentId: F:Voile.SceneGraph.ParticleSettings.EmitRadius + id: EmitRadius + parent: Voile.SceneGraph.ParticleSettings + langs: + - csharp + - vb + name: EmitRadius + nameWithType: ParticleSettings.EmitRadius + fullName: Voile.SceneGraph.ParticleSettings.EmitRadius + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: EmitRadius + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 130 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public float EmitRadius + return: + type: System.Single + content.vb: Public EmitRadius As Single +- uid: Voile.SceneGraph.ParticleSettings.LifeTime + commentId: F:Voile.SceneGraph.ParticleSettings.LifeTime + id: LifeTime + parent: Voile.SceneGraph.ParticleSettings + langs: + - csharp + - vb + name: LifeTime + nameWithType: ParticleSettings.LifeTime + fullName: Voile.SceneGraph.ParticleSettings.LifeTime + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LifeTime + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 131 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public float LifeTime + return: + type: System.Single + content.vb: Public LifeTime As Single +- uid: Voile.SceneGraph.ParticleSettings.Explosiveness + commentId: F:Voile.SceneGraph.ParticleSettings.Explosiveness + id: Explosiveness + parent: Voile.SceneGraph.ParticleSettings + langs: + - csharp + - vb + name: Explosiveness + nameWithType: ParticleSettings.Explosiveness + fullName: Voile.SceneGraph.ParticleSettings.Explosiveness + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Explosiveness + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 132 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public float Explosiveness + return: + type: System.Single + content.vb: Public Explosiveness As Single +- uid: Voile.SceneGraph.ParticleSettings.MaxParticles + commentId: F:Voile.SceneGraph.ParticleSettings.MaxParticles + id: MaxParticles + parent: Voile.SceneGraph.ParticleSettings + langs: + - csharp + - vb + name: MaxParticles + nameWithType: ParticleSettings.MaxParticles + fullName: Voile.SceneGraph.ParticleSettings.MaxParticles + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: MaxParticles + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 133 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public int MaxParticles + return: + type: System.Int32 + content.vb: Public MaxParticles As Integer +- uid: Voile.SceneGraph.ParticleSettings.Direction + commentId: F:Voile.SceneGraph.ParticleSettings.Direction + id: Direction + parent: Voile.SceneGraph.ParticleSettings + langs: + - csharp + - vb + name: Direction + nameWithType: ParticleSettings.Direction + fullName: Voile.SceneGraph.ParticleSettings.Direction + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Direction + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 134 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Vector2 Direction + return: + type: System.Numerics.Vector2 + content.vb: Public Direction As Vector2 +- uid: Voile.SceneGraph.ParticleSettings.LinearVelocity + commentId: F:Voile.SceneGraph.ParticleSettings.LinearVelocity + id: LinearVelocity + parent: Voile.SceneGraph.ParticleSettings + langs: + - csharp + - vb + name: LinearVelocity + nameWithType: ParticleSettings.LinearVelocity + fullName: Voile.SceneGraph.ParticleSettings.LinearVelocity + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LinearVelocity + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 135 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public float LinearVelocity + return: + type: System.Single + content.vb: Public LinearVelocity As Single +- uid: Voile.SceneGraph.ParticleSettings.AngularVelocity + commentId: F:Voile.SceneGraph.ParticleSettings.AngularVelocity + id: AngularVelocity + parent: Voile.SceneGraph.ParticleSettings + langs: + - csharp + - vb + name: AngularVelocity + nameWithType: ParticleSettings.AngularVelocity + fullName: Voile.SceneGraph.ParticleSettings.AngularVelocity + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AngularVelocity + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 136 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public float AngularVelocity + return: + type: System.Single + content.vb: Public AngularVelocity As Single +- uid: Voile.SceneGraph.ParticleSettings.AngularVelocityRandom + commentId: F:Voile.SceneGraph.ParticleSettings.AngularVelocityRandom + id: AngularVelocityRandom + parent: Voile.SceneGraph.ParticleSettings + langs: + - csharp + - vb + name: AngularVelocityRandom + nameWithType: ParticleSettings.AngularVelocityRandom + fullName: Voile.SceneGraph.ParticleSettings.AngularVelocityRandom + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AngularVelocityRandom + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 137 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public float AngularVelocityRandom + return: + type: System.Single + content.vb: Public AngularVelocityRandom As Single +- uid: Voile.SceneGraph.ParticleSettings.LinearVelocityRandom + commentId: F:Voile.SceneGraph.ParticleSettings.LinearVelocityRandom + id: LinearVelocityRandom + parent: Voile.SceneGraph.ParticleSettings + langs: + - csharp + - vb + name: LinearVelocityRandom + nameWithType: ParticleSettings.LinearVelocityRandom + fullName: Voile.SceneGraph.ParticleSettings.LinearVelocityRandom + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LinearVelocityRandom + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 138 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public float LinearVelocityRandom + return: + type: System.Single + content.vb: Public LinearVelocityRandom As Single +- uid: Voile.SceneGraph.ParticleSettings.Gravity + commentId: F:Voile.SceneGraph.ParticleSettings.Gravity + id: Gravity + parent: Voile.SceneGraph.ParticleSettings + langs: + - csharp + - vb + name: Gravity + nameWithType: ParticleSettings.Gravity + fullName: Voile.SceneGraph.ParticleSettings.Gravity + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Gravity + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 139 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Vector2 Gravity + return: + type: System.Numerics.Vector2 + content.vb: Public Gravity As Vector2 +- uid: Voile.SceneGraph.ParticleSettings.ScaleBegin + commentId: F:Voile.SceneGraph.ParticleSettings.ScaleBegin + id: ScaleBegin + parent: Voile.SceneGraph.ParticleSettings + langs: + - csharp + - vb + name: ScaleBegin + nameWithType: ParticleSettings.ScaleBegin + fullName: Voile.SceneGraph.ParticleSettings.ScaleBegin + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ScaleBegin + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 140 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public float ScaleBegin + return: + type: System.Single + content.vb: Public ScaleBegin As Single +- uid: Voile.SceneGraph.ParticleSettings.ScaleEnd + commentId: F:Voile.SceneGraph.ParticleSettings.ScaleEnd + id: ScaleEnd + parent: Voile.SceneGraph.ParticleSettings + langs: + - csharp + - vb + name: ScaleEnd + nameWithType: ParticleSettings.ScaleEnd + fullName: Voile.SceneGraph.ParticleSettings.ScaleEnd + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ScaleEnd + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 141 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public float ScaleEnd + return: + type: System.Single + content.vb: Public ScaleEnd As Single +- uid: Voile.SceneGraph.ParticleSettings.ColorBegin + commentId: F:Voile.SceneGraph.ParticleSettings.ColorBegin + id: ColorBegin + parent: Voile.SceneGraph.ParticleSettings + langs: + - csharp + - vb + name: ColorBegin + nameWithType: ParticleSettings.ColorBegin + fullName: Voile.SceneGraph.ParticleSettings.ColorBegin + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ColorBegin + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 142 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Color ColorBegin + return: + type: Voile.Color + content.vb: Public ColorBegin As Color +- uid: Voile.SceneGraph.ParticleSettings.ColorEnd + commentId: F:Voile.SceneGraph.ParticleSettings.ColorEnd + id: ColorEnd + parent: Voile.SceneGraph.ParticleSettings + langs: + - csharp + - vb + name: ColorEnd + nameWithType: ParticleSettings.ColorEnd + fullName: Voile.SceneGraph.ParticleSettings.ColorEnd + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ColorEnd + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 143 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Color ColorEnd + return: + type: Voile.Color + content.vb: Public ColorEnd As Color +- uid: Voile.SceneGraph.ParticleSettings.Damping + commentId: F:Voile.SceneGraph.ParticleSettings.Damping + id: Damping + parent: Voile.SceneGraph.ParticleSettings + langs: + - csharp + - vb + name: Damping + nameWithType: ParticleSettings.Damping + fullName: Voile.SceneGraph.ParticleSettings.Damping + type: Field + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Damping + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 144 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public float Damping + return: + type: System.Single + content.vb: Public Damping As Single +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.ValueType.Equals(System.Object) + commentId: M:System.ValueType.Equals(System.Object) + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + name: Equals(object) + nameWithType: ValueType.Equals(object) + fullName: System.ValueType.Equals(object) + nameWithType.vb: ValueType.Equals(Object) + fullName.vb: System.ValueType.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType.GetHashCode + commentId: M:System.ValueType.GetHashCode + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + name: GetHashCode() + nameWithType: ValueType.GetHashCode() + fullName: System.ValueType.GetHashCode() + spec.csharp: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) +- uid: System.ValueType.ToString + commentId: M:System.ValueType.ToString + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + name: ToString() + nameWithType: ValueType.ToString() + fullName: System.ValueType.ToString() + spec.csharp: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType + commentId: T:System.ValueType + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype + name: ValueType + nameWithType: ValueType + fullName: System.ValueType +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.SceneGraph.ParticleSettings.#ctor* + commentId: Overload:Voile.SceneGraph.ParticleSettings.#ctor + href: Voile.SceneGraph.ParticleSettings.html#Voile_SceneGraph_ParticleSettings__ctor + name: ParticleSettings + nameWithType: ParticleSettings.ParticleSettings + fullName: Voile.SceneGraph.ParticleSettings.ParticleSettings + nameWithType.vb: ParticleSettings.New + fullName.vb: Voile.SceneGraph.ParticleSettings.New + name.vb: New +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: Voile.Color + commentId: T:Voile.Color + parent: Voile + href: Voile.Color.html + name: Color + nameWithType: Color + fullName: Voile.Color +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile diff --git a/Voile/api/Voile.SceneGraph.Particles2d.yml b/Voile/api/Voile.SceneGraph.Particles2d.yml new file mode 100644 index 0000000..f73aeb6 --- /dev/null +++ b/Voile/api/Voile.SceneGraph.Particles2d.yml @@ -0,0 +1,959 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.Particles2d + commentId: T:Voile.SceneGraph.Particles2d + id: Particles2d + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.Particles2d.#ctor(Voile.SceneGraph.ParticleSettings) + - Voile.SceneGraph.Particles2d.MaxParticles + - Voile.SceneGraph.Particles2d.OnDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Particles2d.OnStart + - Voile.SceneGraph.Particles2d.OnUpdate(System.Double) + - Voile.SceneGraph.Particles2d.Restart + - Voile.SceneGraph.Particles2d.Settings + langs: + - csharp + - vb + name: Particles2d + nameWithType: Particles2d + fullName: Voile.SceneGraph.Particles2d + type: Class + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Particles2d + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: 'public class Particles2d : Drawable2d, IDrawable' + content.vb: Public Class Particles2d Inherits Drawable2d Implements IDrawable + inheritance: + - System.Object + - Voile.SceneGraph.Entity + - Voile.SceneGraph.Entity2d + - Voile.SceneGraph.Drawable2d + implements: + - Voile.SceneGraph.IDrawable + inheritedMembers: + - Voile.SceneGraph.Drawable2d.PivotOffset + - Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Entity2d.Position + - Voile.SceneGraph.Entity2d.Rotation + - Voile.SceneGraph.Entity.Layer + - Voile.SceneGraph.Entity.Input + - Voile.SceneGraph.Entity.Audio + - Voile.SceneGraph.Entity.Renderer + - Voile.SceneGraph.Entity.Id + - Voile.SceneGraph.Entity.Start + - Voile.SceneGraph.Entity.Update(System.Double) + - Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Entity.OnDestroy + - Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Entity.Destroy + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.SceneGraph.Particles2d.MaxParticles + commentId: P:Voile.SceneGraph.Particles2d.MaxParticles + id: MaxParticles + parent: Voile.SceneGraph.Particles2d + langs: + - csharp + - vb + name: MaxParticles + nameWithType: Particles2d.MaxParticles + fullName: Voile.SceneGraph.Particles2d.MaxParticles + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: MaxParticles + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public int MaxParticles { get; } + parameters: [] + return: + type: System.Int32 + content.vb: Public ReadOnly Property MaxParticles As Integer + overload: Voile.SceneGraph.Particles2d.MaxParticles* +- uid: Voile.SceneGraph.Particles2d.Settings + commentId: P:Voile.SceneGraph.Particles2d.Settings + id: Settings + parent: Voile.SceneGraph.Particles2d + langs: + - csharp + - vb + name: Settings + nameWithType: Particles2d.Settings + fullName: Voile.SceneGraph.Particles2d.Settings + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Settings + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 10 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public ParticleSettings Settings { get; } + parameters: [] + return: + type: Voile.SceneGraph.ParticleSettings + content.vb: Public ReadOnly Property Settings As ParticleSettings + overload: Voile.SceneGraph.Particles2d.Settings* +- uid: Voile.SceneGraph.Particles2d.#ctor(Voile.SceneGraph.ParticleSettings) + commentId: M:Voile.SceneGraph.Particles2d.#ctor(Voile.SceneGraph.ParticleSettings) + id: '#ctor(Voile.SceneGraph.ParticleSettings)' + parent: Voile.SceneGraph.Particles2d + langs: + - csharp + - vb + name: Particles2d(ParticleSettings) + nameWithType: Particles2d.Particles2d(ParticleSettings) + fullName: Voile.SceneGraph.Particles2d.Particles2d(Voile.SceneGraph.ParticleSettings) + type: Constructor + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 12 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Particles2d(ParticleSettings settings) + parameters: + - id: settings + type: Voile.SceneGraph.ParticleSettings + content.vb: Public Sub New(settings As ParticleSettings) + overload: Voile.SceneGraph.Particles2d.#ctor* + nameWithType.vb: Particles2d.New(ParticleSettings) + fullName.vb: Voile.SceneGraph.Particles2d.New(Voile.SceneGraph.ParticleSettings) + name.vb: New(ParticleSettings) +- uid: Voile.SceneGraph.Particles2d.Restart + commentId: M:Voile.SceneGraph.Particles2d.Restart + id: Restart + parent: Voile.SceneGraph.Particles2d + langs: + - csharp + - vb + name: Restart() + nameWithType: Particles2d.Restart() + fullName: Voile.SceneGraph.Particles2d.Restart() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Restart + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 21 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void Restart() + content.vb: Public Sub Restart() + overload: Voile.SceneGraph.Particles2d.Restart* +- uid: Voile.SceneGraph.Particles2d.OnDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Particles2d.OnDraw(Voile.Rendering.RenderSystem) + id: OnDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Particles2d + langs: + - csharp + - vb + name: OnDraw(RenderSystem) + nameWithType: Particles2d.OnDraw(RenderSystem) + fullName: Voile.SceneGraph.Particles2d.OnDraw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnDraw + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 32 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: public override void OnDraw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Public Overrides Sub OnDraw(renderer As RenderSystem) + overridden: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + overload: Voile.SceneGraph.Particles2d.OnDraw* +- uid: Voile.SceneGraph.Particles2d.OnStart + commentId: M:Voile.SceneGraph.Particles2d.OnStart + id: OnStart + parent: Voile.SceneGraph.Particles2d + langs: + - csharp + - vb + name: OnStart() + nameWithType: Particles2d.OnStart() + fullName: Voile.SceneGraph.Particles2d.OnStart() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnStart + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 46 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: protected override void OnStart() + content.vb: Protected Overrides Sub OnStart() + overridden: Voile.SceneGraph.Entity.OnStart + overload: Voile.SceneGraph.Particles2d.OnStart* +- uid: Voile.SceneGraph.Particles2d.OnUpdate(System.Double) + commentId: M:Voile.SceneGraph.Particles2d.OnUpdate(System.Double) + id: OnUpdate(System.Double) + parent: Voile.SceneGraph.Particles2d + langs: + - csharp + - vb + name: OnUpdate(double) + nameWithType: Particles2d.OnUpdate(double) + fullName: Voile.SceneGraph.Particles2d.OnUpdate(double) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/Particles2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnUpdate + path: Source/SceneGraph/Entities/Particles2d.cs + startLine: 51 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: protected override void OnUpdate(double dt) + parameters: + - id: dt + type: System.Double + content.vb: Protected Overrides Sub OnUpdate(dt As Double) + overridden: Voile.SceneGraph.Entity.OnUpdate(System.Double) + overload: Voile.SceneGraph.Particles2d.OnUpdate* + nameWithType.vb: Particles2d.OnUpdate(Double) + fullName.vb: Voile.SceneGraph.Particles2d.OnUpdate(Double) + name.vb: OnUpdate(Double) +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.SceneGraph.Entity + commentId: T:Voile.SceneGraph.Entity + parent: Voile.SceneGraph + href: Voile.SceneGraph.Entity.html + name: Entity + nameWithType: Entity + fullName: Voile.SceneGraph.Entity +- uid: Voile.SceneGraph.Entity2d + commentId: T:Voile.SceneGraph.Entity2d + parent: Voile.SceneGraph + href: Voile.SceneGraph.Entity2d.html + name: Entity2d + nameWithType: Entity2d + fullName: Voile.SceneGraph.Entity2d +- uid: Voile.SceneGraph.Drawable2d + commentId: T:Voile.SceneGraph.Drawable2d + parent: Voile.SceneGraph + href: Voile.SceneGraph.Drawable2d.html + name: Drawable2d + nameWithType: Drawable2d + fullName: Voile.SceneGraph.Drawable2d +- uid: Voile.SceneGraph.IDrawable + commentId: T:Voile.SceneGraph.IDrawable + parent: Voile.SceneGraph + href: Voile.SceneGraph.IDrawable.html + name: IDrawable + nameWithType: IDrawable + fullName: Voile.SceneGraph.IDrawable +- uid: Voile.SceneGraph.Drawable2d.PivotOffset + commentId: P:Voile.SceneGraph.Drawable2d.PivotOffset + parent: Voile.SceneGraph.Drawable2d + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_PivotOffset + name: PivotOffset + nameWithType: Drawable2d.PivotOffset + fullName: Voile.SceneGraph.Drawable2d.PivotOffset +- uid: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Drawable2d + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_Draw_Voile_Rendering_RenderSystem_ + name: Draw(RenderSystem) + nameWithType: Drawable2d.Draw(RenderSystem) + fullName: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity2d.Position + commentId: P:Voile.SceneGraph.Entity2d.Position + parent: Voile.SceneGraph.Entity2d + href: Voile.SceneGraph.Entity2d.html#Voile_SceneGraph_Entity2d_Position + name: Position + nameWithType: Entity2d.Position + fullName: Voile.SceneGraph.Entity2d.Position +- uid: Voile.SceneGraph.Entity2d.Rotation + commentId: P:Voile.SceneGraph.Entity2d.Rotation + parent: Voile.SceneGraph.Entity2d + href: Voile.SceneGraph.Entity2d.html#Voile_SceneGraph_Entity2d_Rotation + name: Rotation + nameWithType: Entity2d.Rotation + fullName: Voile.SceneGraph.Entity2d.Rotation +- uid: Voile.SceneGraph.Entity.Layer + commentId: P:Voile.SceneGraph.Entity.Layer + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Layer + name: Layer + nameWithType: Entity.Layer + fullName: Voile.SceneGraph.Entity.Layer +- uid: Voile.SceneGraph.Entity.Input + commentId: P:Voile.SceneGraph.Entity.Input + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Input + name: Input + nameWithType: Entity.Input + fullName: Voile.SceneGraph.Entity.Input +- uid: Voile.SceneGraph.Entity.Audio + commentId: P:Voile.SceneGraph.Entity.Audio + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Audio + name: Audio + nameWithType: Entity.Audio + fullName: Voile.SceneGraph.Entity.Audio +- uid: Voile.SceneGraph.Entity.Renderer + commentId: P:Voile.SceneGraph.Entity.Renderer + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Renderer + name: Renderer + nameWithType: Entity.Renderer + fullName: Voile.SceneGraph.Entity.Renderer +- uid: Voile.SceneGraph.Entity.Id + commentId: P:Voile.SceneGraph.Entity.Id + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Id + name: Id + nameWithType: Entity.Id + fullName: Voile.SceneGraph.Entity.Id +- uid: Voile.SceneGraph.Entity.Start + commentId: M:Voile.SceneGraph.Entity.Start + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + name: Start() + nameWithType: Entity.Start() + fullName: Voile.SceneGraph.Entity.Start() + spec.csharp: + - uid: Voile.SceneGraph.Entity.Start + name: Start + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Start + name: Start + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.Update(System.Double) + commentId: M:Voile.SceneGraph.Entity.Update(System.Double) + parent: Voile.SceneGraph.Entity + isExternal: true + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + name: Update(double) + nameWithType: Entity.Update(double) + fullName: Voile.SceneGraph.Entity.Update(double) + nameWithType.vb: Entity.Update(Double) + fullName.vb: Voile.SceneGraph.Entity.Update(Double) + name.vb: Update(Double) + spec.csharp: + - uid: Voile.SceneGraph.Entity.Update(System.Double) + name: Update + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Update(System.Double) + name: Update + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + name: ReceiveInput(InputSystem) + nameWithType: Entity.ReceiveInput(InputSystem) + fullName: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity.OnDestroy + commentId: M:Voile.SceneGraph.Entity.OnDestroy + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + name: OnDestroy() + nameWithType: Entity.OnDestroy() + fullName: Voile.SceneGraph.Entity.OnDestroy() + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnDestroy + name: OnDestroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnDestroy + name: OnDestroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + name: OnInput(InputSystem) + nameWithType: Entity.OnInput(InputSystem) + fullName: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity.Destroy + commentId: M:Voile.SceneGraph.Entity.Destroy + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + name: Destroy() + nameWithType: Entity.Destroy() + fullName: Voile.SceneGraph.Entity.Destroy() + spec.csharp: + - uid: Voile.SceneGraph.Entity.Destroy + name: Destroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Destroy + name: Destroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.SceneGraph.Particles2d.MaxParticles* + commentId: Overload:Voile.SceneGraph.Particles2d.MaxParticles + href: Voile.SceneGraph.Particles2d.html#Voile_SceneGraph_Particles2d_MaxParticles + name: MaxParticles + nameWithType: Particles2d.MaxParticles + fullName: Voile.SceneGraph.Particles2d.MaxParticles +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: Voile.SceneGraph.Particles2d.Settings* + commentId: Overload:Voile.SceneGraph.Particles2d.Settings + href: Voile.SceneGraph.Particles2d.html#Voile_SceneGraph_Particles2d_Settings + name: Settings + nameWithType: Particles2d.Settings + fullName: Voile.SceneGraph.Particles2d.Settings +- uid: Voile.SceneGraph.ParticleSettings + commentId: T:Voile.SceneGraph.ParticleSettings + parent: Voile.SceneGraph + href: Voile.SceneGraph.ParticleSettings.html + name: ParticleSettings + nameWithType: ParticleSettings + fullName: Voile.SceneGraph.ParticleSettings +- uid: Voile.SceneGraph.Particles2d.#ctor* + commentId: Overload:Voile.SceneGraph.Particles2d.#ctor + href: Voile.SceneGraph.Particles2d.html#Voile_SceneGraph_Particles2d__ctor_Voile_SceneGraph_ParticleSettings_ + name: Particles2d + nameWithType: Particles2d.Particles2d + fullName: Voile.SceneGraph.Particles2d.Particles2d + nameWithType.vb: Particles2d.New + fullName.vb: Voile.SceneGraph.Particles2d.New + name.vb: New +- uid: Voile.SceneGraph.Particles2d.Restart* + commentId: Overload:Voile.SceneGraph.Particles2d.Restart + href: Voile.SceneGraph.Particles2d.html#Voile_SceneGraph_Particles2d_Restart + name: Restart + nameWithType: Particles2d.Restart + fullName: Voile.SceneGraph.Particles2d.Restart +- uid: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Drawable2d + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_OnDraw_Voile_Rendering_RenderSystem_ + name: OnDraw(RenderSystem) + nameWithType: Drawable2d.OnDraw(RenderSystem) + fullName: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + name: OnDraw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_OnDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + name: OnDraw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_OnDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.Particles2d.OnDraw* + commentId: Overload:Voile.SceneGraph.Particles2d.OnDraw + href: Voile.SceneGraph.Particles2d.html#Voile_SceneGraph_Particles2d_OnDraw_Voile_Rendering_RenderSystem_ + name: OnDraw + nameWithType: Particles2d.OnDraw + fullName: Voile.SceneGraph.Particles2d.OnDraw +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: Voile.SceneGraph.Entity.OnStart + commentId: M:Voile.SceneGraph.Entity.OnStart + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + name: OnStart() + nameWithType: Entity.OnStart() + fullName: Voile.SceneGraph.Entity.OnStart() + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnStart + name: OnStart + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnStart + name: OnStart + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + - name: ( + - name: ) +- uid: Voile.SceneGraph.Particles2d.OnStart* + commentId: Overload:Voile.SceneGraph.Particles2d.OnStart + href: Voile.SceneGraph.Particles2d.html#Voile_SceneGraph_Particles2d_OnStart + name: OnStart + nameWithType: Particles2d.OnStart + fullName: Voile.SceneGraph.Particles2d.OnStart +- uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + commentId: M:Voile.SceneGraph.Entity.OnUpdate(System.Double) + parent: Voile.SceneGraph.Entity + isExternal: true + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + name: OnUpdate(double) + nameWithType: Entity.OnUpdate(double) + fullName: Voile.SceneGraph.Entity.OnUpdate(double) + nameWithType.vb: Entity.OnUpdate(Double) + fullName.vb: Voile.SceneGraph.Entity.OnUpdate(Double) + name.vb: OnUpdate(Double) + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.Particles2d.OnUpdate* + commentId: Overload:Voile.SceneGraph.Particles2d.OnUpdate + href: Voile.SceneGraph.Particles2d.html#Voile_SceneGraph_Particles2d_OnUpdate_System_Double_ + name: OnUpdate + nameWithType: Particles2d.OnUpdate + fullName: Voile.SceneGraph.Particles2d.OnUpdate +- uid: System.Double + commentId: T:System.Double + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + name: double + nameWithType: double + fullName: double + nameWithType.vb: Double + fullName.vb: Double + name.vb: Double diff --git a/Voile/api/Voile.SceneGraph.RectangleShape2d.yml b/Voile/api/Voile.SceneGraph.RectangleShape2d.yml new file mode 100644 index 0000000..1868165 --- /dev/null +++ b/Voile/api/Voile.SceneGraph.RectangleShape2d.yml @@ -0,0 +1,829 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.RectangleShape2d + commentId: T:Voile.SceneGraph.RectangleShape2d + id: RectangleShape2d + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.RectangleShape2d.Color + - Voile.SceneGraph.RectangleShape2d.OnDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.RectangleShape2d.Size + langs: + - csharp + - vb + name: RectangleShape2d + nameWithType: RectangleShape2d + fullName: Voile.SceneGraph.RectangleShape2d + type: Class + source: + remote: + path: Voile/Source/SceneGraph/Entities/RectangleShape2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RectangleShape2d + path: Source/SceneGraph/Entities/RectangleShape2d.cs + startLine: 5 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: 'public class RectangleShape2d : Drawable2d, IDrawable' + content.vb: Public Class RectangleShape2d Inherits Drawable2d Implements IDrawable + inheritance: + - System.Object + - Voile.SceneGraph.Entity + - Voile.SceneGraph.Entity2d + - Voile.SceneGraph.Drawable2d + implements: + - Voile.SceneGraph.IDrawable + inheritedMembers: + - Voile.SceneGraph.Drawable2d.PivotOffset + - Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Entity2d.Position + - Voile.SceneGraph.Entity2d.Rotation + - Voile.SceneGraph.Entity.Layer + - Voile.SceneGraph.Entity.Input + - Voile.SceneGraph.Entity.Audio + - Voile.SceneGraph.Entity.Renderer + - Voile.SceneGraph.Entity.Id + - Voile.SceneGraph.Entity.Start + - Voile.SceneGraph.Entity.Update(System.Double) + - Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Entity.OnStart + - Voile.SceneGraph.Entity.OnDestroy + - Voile.SceneGraph.Entity.OnUpdate(System.Double) + - Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Entity.Destroy + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.SceneGraph.RectangleShape2d.Size + commentId: P:Voile.SceneGraph.RectangleShape2d.Size + id: Size + parent: Voile.SceneGraph.RectangleShape2d + langs: + - csharp + - vb + name: Size + nameWithType: RectangleShape2d.Size + fullName: Voile.SceneGraph.RectangleShape2d.Size + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Entities/RectangleShape2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Size + path: Source/SceneGraph/Entities/RectangleShape2d.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Vector2 Size { get; set; } + parameters: [] + return: + type: System.Numerics.Vector2 + content.vb: Public Property Size As Vector2 + overload: Voile.SceneGraph.RectangleShape2d.Size* +- uid: Voile.SceneGraph.RectangleShape2d.Color + commentId: P:Voile.SceneGraph.RectangleShape2d.Color + id: Color + parent: Voile.SceneGraph.RectangleShape2d + langs: + - csharp + - vb + name: Color + nameWithType: RectangleShape2d.Color + fullName: Voile.SceneGraph.RectangleShape2d.Color + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Entities/RectangleShape2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Color + path: Source/SceneGraph/Entities/RectangleShape2d.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Color Color { get; set; } + parameters: [] + return: + type: Voile.Color + content.vb: Public Property Color As Color + overload: Voile.SceneGraph.RectangleShape2d.Color* +- uid: Voile.SceneGraph.RectangleShape2d.OnDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.RectangleShape2d.OnDraw(Voile.Rendering.RenderSystem) + id: OnDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.RectangleShape2d + langs: + - csharp + - vb + name: OnDraw(RenderSystem) + nameWithType: RectangleShape2d.OnDraw(RenderSystem) + fullName: Voile.SceneGraph.RectangleShape2d.OnDraw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/RectangleShape2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnDraw + path: Source/SceneGraph/Entities/RectangleShape2d.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: public override void OnDraw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Public Overrides Sub OnDraw(renderer As RenderSystem) + overridden: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + overload: Voile.SceneGraph.RectangleShape2d.OnDraw* +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.SceneGraph.Entity + commentId: T:Voile.SceneGraph.Entity + parent: Voile.SceneGraph + href: Voile.SceneGraph.Entity.html + name: Entity + nameWithType: Entity + fullName: Voile.SceneGraph.Entity +- uid: Voile.SceneGraph.Entity2d + commentId: T:Voile.SceneGraph.Entity2d + parent: Voile.SceneGraph + href: Voile.SceneGraph.Entity2d.html + name: Entity2d + nameWithType: Entity2d + fullName: Voile.SceneGraph.Entity2d +- uid: Voile.SceneGraph.Drawable2d + commentId: T:Voile.SceneGraph.Drawable2d + parent: Voile.SceneGraph + href: Voile.SceneGraph.Drawable2d.html + name: Drawable2d + nameWithType: Drawable2d + fullName: Voile.SceneGraph.Drawable2d +- uid: Voile.SceneGraph.IDrawable + commentId: T:Voile.SceneGraph.IDrawable + parent: Voile.SceneGraph + href: Voile.SceneGraph.IDrawable.html + name: IDrawable + nameWithType: IDrawable + fullName: Voile.SceneGraph.IDrawable +- uid: Voile.SceneGraph.Drawable2d.PivotOffset + commentId: P:Voile.SceneGraph.Drawable2d.PivotOffset + parent: Voile.SceneGraph.Drawable2d + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_PivotOffset + name: PivotOffset + nameWithType: Drawable2d.PivotOffset + fullName: Voile.SceneGraph.Drawable2d.PivotOffset +- uid: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Drawable2d + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_Draw_Voile_Rendering_RenderSystem_ + name: Draw(RenderSystem) + nameWithType: Drawable2d.Draw(RenderSystem) + fullName: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity2d.Position + commentId: P:Voile.SceneGraph.Entity2d.Position + parent: Voile.SceneGraph.Entity2d + href: Voile.SceneGraph.Entity2d.html#Voile_SceneGraph_Entity2d_Position + name: Position + nameWithType: Entity2d.Position + fullName: Voile.SceneGraph.Entity2d.Position +- uid: Voile.SceneGraph.Entity2d.Rotation + commentId: P:Voile.SceneGraph.Entity2d.Rotation + parent: Voile.SceneGraph.Entity2d + href: Voile.SceneGraph.Entity2d.html#Voile_SceneGraph_Entity2d_Rotation + name: Rotation + nameWithType: Entity2d.Rotation + fullName: Voile.SceneGraph.Entity2d.Rotation +- uid: Voile.SceneGraph.Entity.Layer + commentId: P:Voile.SceneGraph.Entity.Layer + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Layer + name: Layer + nameWithType: Entity.Layer + fullName: Voile.SceneGraph.Entity.Layer +- uid: Voile.SceneGraph.Entity.Input + commentId: P:Voile.SceneGraph.Entity.Input + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Input + name: Input + nameWithType: Entity.Input + fullName: Voile.SceneGraph.Entity.Input +- uid: Voile.SceneGraph.Entity.Audio + commentId: P:Voile.SceneGraph.Entity.Audio + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Audio + name: Audio + nameWithType: Entity.Audio + fullName: Voile.SceneGraph.Entity.Audio +- uid: Voile.SceneGraph.Entity.Renderer + commentId: P:Voile.SceneGraph.Entity.Renderer + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Renderer + name: Renderer + nameWithType: Entity.Renderer + fullName: Voile.SceneGraph.Entity.Renderer +- uid: Voile.SceneGraph.Entity.Id + commentId: P:Voile.SceneGraph.Entity.Id + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Id + name: Id + nameWithType: Entity.Id + fullName: Voile.SceneGraph.Entity.Id +- uid: Voile.SceneGraph.Entity.Start + commentId: M:Voile.SceneGraph.Entity.Start + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + name: Start() + nameWithType: Entity.Start() + fullName: Voile.SceneGraph.Entity.Start() + spec.csharp: + - uid: Voile.SceneGraph.Entity.Start + name: Start + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Start + name: Start + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.Update(System.Double) + commentId: M:Voile.SceneGraph.Entity.Update(System.Double) + parent: Voile.SceneGraph.Entity + isExternal: true + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + name: Update(double) + nameWithType: Entity.Update(double) + fullName: Voile.SceneGraph.Entity.Update(double) + nameWithType.vb: Entity.Update(Double) + fullName.vb: Voile.SceneGraph.Entity.Update(Double) + name.vb: Update(Double) + spec.csharp: + - uid: Voile.SceneGraph.Entity.Update(System.Double) + name: Update + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Update(System.Double) + name: Update + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + name: ReceiveInput(InputSystem) + nameWithType: Entity.ReceiveInput(InputSystem) + fullName: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity.OnStart + commentId: M:Voile.SceneGraph.Entity.OnStart + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + name: OnStart() + nameWithType: Entity.OnStart() + fullName: Voile.SceneGraph.Entity.OnStart() + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnStart + name: OnStart + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnStart + name: OnStart + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.OnDestroy + commentId: M:Voile.SceneGraph.Entity.OnDestroy + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + name: OnDestroy() + nameWithType: Entity.OnDestroy() + fullName: Voile.SceneGraph.Entity.OnDestroy() + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnDestroy + name: OnDestroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnDestroy + name: OnDestroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + commentId: M:Voile.SceneGraph.Entity.OnUpdate(System.Double) + parent: Voile.SceneGraph.Entity + isExternal: true + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + name: OnUpdate(double) + nameWithType: Entity.OnUpdate(double) + fullName: Voile.SceneGraph.Entity.OnUpdate(double) + nameWithType.vb: Entity.OnUpdate(Double) + fullName.vb: Voile.SceneGraph.Entity.OnUpdate(Double) + name.vb: OnUpdate(Double) + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + name: OnInput(InputSystem) + nameWithType: Entity.OnInput(InputSystem) + fullName: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity.Destroy + commentId: M:Voile.SceneGraph.Entity.Destroy + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + name: Destroy() + nameWithType: Entity.Destroy() + fullName: Voile.SceneGraph.Entity.Destroy() + spec.csharp: + - uid: Voile.SceneGraph.Entity.Destroy + name: Destroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Destroy + name: Destroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.SceneGraph.RectangleShape2d.Size* + commentId: Overload:Voile.SceneGraph.RectangleShape2d.Size + href: Voile.SceneGraph.RectangleShape2d.html#Voile_SceneGraph_RectangleShape2d_Size + name: Size + nameWithType: RectangleShape2d.Size + fullName: Voile.SceneGraph.RectangleShape2d.Size +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: Voile.SceneGraph.RectangleShape2d.Color* + commentId: Overload:Voile.SceneGraph.RectangleShape2d.Color + href: Voile.SceneGraph.RectangleShape2d.html#Voile_SceneGraph_RectangleShape2d_Color + name: Color + nameWithType: RectangleShape2d.Color + fullName: Voile.SceneGraph.RectangleShape2d.Color +- uid: Voile.Color + commentId: T:Voile.Color + parent: Voile + href: Voile.Color.html + name: Color + nameWithType: Color + fullName: Voile.Color +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Drawable2d + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_OnDraw_Voile_Rendering_RenderSystem_ + name: OnDraw(RenderSystem) + nameWithType: Drawable2d.OnDraw(RenderSystem) + fullName: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + name: OnDraw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_OnDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + name: OnDraw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_OnDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.RectangleShape2d.OnDraw* + commentId: Overload:Voile.SceneGraph.RectangleShape2d.OnDraw + href: Voile.SceneGraph.RectangleShape2d.html#Voile_SceneGraph_RectangleShape2d_OnDraw_Voile_Rendering_RenderSystem_ + name: OnDraw + nameWithType: RectangleShape2d.OnDraw + fullName: Voile.SceneGraph.RectangleShape2d.OnDraw +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html diff --git a/Voile/api/Voile.SceneGraph.Scene.yml b/Voile/api/Voile.SceneGraph.Scene.yml new file mode 100644 index 0000000..2bc2035 --- /dev/null +++ b/Voile/api/Voile.SceneGraph.Scene.yml @@ -0,0 +1,1270 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.Scene + commentId: T:Voile.SceneGraph.Scene + id: Scene + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.Scene.#ctor(Voile.SceneGraph.SceneSettings) + - Voile.SceneGraph.Scene.AddLayer(System.String,Voile.SceneGraph.Layer) + - Voile.SceneGraph.Scene.Audio + - Voile.SceneGraph.Scene.BeginDraw + - Voile.SceneGraph.Scene.DeltaTime + - Voile.SceneGraph.Scene.EndDraw + - Voile.SceneGraph.Scene.FromSerialized(Voile.SceneGraph.SerializedScene,Voile.SceneGraph.SceneSettings) + - Voile.SceneGraph.Scene.Init + - Voile.SceneGraph.Scene.Input + - Voile.SceneGraph.Scene.Renderer + - Voile.SceneGraph.Scene.ResourceManager + - Voile.SceneGraph.Scene.ShouldRun + - Voile.SceneGraph.Scene.Start + - Voile.SceneGraph.Scene.TrySerialize(Voile.SceneGraph.SerializedScene@) + - Voile.SceneGraph.Scene.Update + - Voile.SceneGraph.Scene.WithLayers(System.Collections.Generic.Dictionary{System.String,Voile.SceneGraph.Layer}) + langs: + - csharp + - vb + name: Scene + nameWithType: Scene + fullName: Voile.SceneGraph.Scene + type: Class + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Scene + path: Source/SceneGraph/Scene.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: 'public class Scene : IMainLoop' + content.vb: Public Class Scene Implements IMainLoop + inheritance: + - System.Object + implements: + - Voile.SceneGraph.IMainLoop + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.SceneGraph.Scene.Renderer + commentId: P:Voile.SceneGraph.Scene.Renderer + id: Renderer + parent: Voile.SceneGraph.Scene + langs: + - csharp + - vb + name: Renderer + nameWithType: Scene.Renderer + fullName: Voile.SceneGraph.Scene.Renderer + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Renderer + path: Source/SceneGraph/Scene.cs + startLine: 11 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public RenderSystem Renderer { get; set; } + parameters: [] + return: + type: Voile.Rendering.RenderSystem + content.vb: Public Property Renderer As RenderSystem + overload: Voile.SceneGraph.Scene.Renderer* +- uid: Voile.SceneGraph.Scene.Input + commentId: P:Voile.SceneGraph.Scene.Input + id: Input + parent: Voile.SceneGraph.Scene + langs: + - csharp + - vb + name: Input + nameWithType: Scene.Input + fullName: Voile.SceneGraph.Scene.Input + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Input + path: Source/SceneGraph/Scene.cs + startLine: 12 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public InputSystem? Input { get; set; } + parameters: [] + return: + type: Voile.Input.InputSystem + content.vb: Public Property Input As InputSystem + overload: Voile.SceneGraph.Scene.Input* +- uid: Voile.SceneGraph.Scene.Audio + commentId: P:Voile.SceneGraph.Scene.Audio + id: Audio + parent: Voile.SceneGraph.Scene + langs: + - csharp + - vb + name: Audio + nameWithType: Scene.Audio + fullName: Voile.SceneGraph.Scene.Audio + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Audio + path: Source/SceneGraph/Scene.cs + startLine: 13 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public AudioSystem? Audio { get; } + parameters: [] + return: + type: Voile.Audio.AudioSystem + content.vb: Public ReadOnly Property Audio As AudioSystem + overload: Voile.SceneGraph.Scene.Audio* +- uid: Voile.SceneGraph.Scene.ResourceManager + commentId: P:Voile.SceneGraph.Scene.ResourceManager + id: ResourceManager + parent: Voile.SceneGraph.Scene + langs: + - csharp + - vb + name: ResourceManager + nameWithType: Scene.ResourceManager + fullName: Voile.SceneGraph.Scene.ResourceManager + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ResourceManager + path: Source/SceneGraph/Scene.cs + startLine: 14 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public ResourceManager ResourceManager { get; } + parameters: [] + return: + type: Voile.Resources.ResourceManager + content.vb: Public ReadOnly Property ResourceManager As ResourceManager + overload: Voile.SceneGraph.Scene.ResourceManager* +- uid: Voile.SceneGraph.Scene.DeltaTime + commentId: P:Voile.SceneGraph.Scene.DeltaTime + id: DeltaTime + parent: Voile.SceneGraph.Scene + langs: + - csharp + - vb + name: DeltaTime + nameWithType: Scene.DeltaTime + fullName: Voile.SceneGraph.Scene.DeltaTime + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: DeltaTime + path: Source/SceneGraph/Scene.cs + startLine: 16 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: public double DeltaTime { get; } + parameters: [] + return: + type: System.Double + content.vb: Public ReadOnly Property DeltaTime As Double + overload: Voile.SceneGraph.Scene.DeltaTime* + implements: + - Voile.SceneGraph.IMainLoop.DeltaTime +- uid: Voile.SceneGraph.Scene.ShouldRun + commentId: P:Voile.SceneGraph.Scene.ShouldRun + id: ShouldRun + parent: Voile.SceneGraph.Scene + langs: + - csharp + - vb + name: ShouldRun + nameWithType: Scene.ShouldRun + fullName: Voile.SceneGraph.Scene.ShouldRun + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ShouldRun + path: Source/SceneGraph/Scene.cs + startLine: 17 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: public bool ShouldRun { get; } + parameters: [] + return: + type: System.Boolean + content.vb: Public ReadOnly Property ShouldRun As Boolean + overload: Voile.SceneGraph.Scene.ShouldRun* + implements: + - Voile.SceneGraph.IMainLoop.ShouldRun +- uid: Voile.SceneGraph.Scene.#ctor(Voile.SceneGraph.SceneSettings) + commentId: M:Voile.SceneGraph.Scene.#ctor(Voile.SceneGraph.SceneSettings) + id: '#ctor(Voile.SceneGraph.SceneSettings)' + parent: Voile.SceneGraph.Scene + langs: + - csharp + - vb + name: Scene(SceneSettings) + nameWithType: Scene.Scene(SceneSettings) + fullName: Voile.SceneGraph.Scene.Scene(Voile.SceneGraph.SceneSettings) + type: Constructor + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/SceneGraph/Scene.cs + startLine: 19 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Scene(SceneSettings settings) + parameters: + - id: settings + type: Voile.SceneGraph.SceneSettings + content.vb: Public Sub New(settings As SceneSettings) + overload: Voile.SceneGraph.Scene.#ctor* + nameWithType.vb: Scene.New(SceneSettings) + fullName.vb: Voile.SceneGraph.Scene.New(Voile.SceneGraph.SceneSettings) + name.vb: New(SceneSettings) +- uid: Voile.SceneGraph.Scene.FromSerialized(Voile.SceneGraph.SerializedScene,Voile.SceneGraph.SceneSettings) + commentId: M:Voile.SceneGraph.Scene.FromSerialized(Voile.SceneGraph.SerializedScene,Voile.SceneGraph.SceneSettings) + id: FromSerialized(Voile.SceneGraph.SerializedScene,Voile.SceneGraph.SceneSettings) + parent: Voile.SceneGraph.Scene + langs: + - csharp + - vb + name: FromSerialized(SerializedScene, SceneSettings) + nameWithType: Scene.FromSerialized(SerializedScene, SceneSettings) + fullName: Voile.SceneGraph.Scene.FromSerialized(Voile.SceneGraph.SerializedScene, Voile.SceneGraph.SceneSettings) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: FromSerialized + path: Source/SceneGraph/Scene.cs + startLine: 27 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public static Scene FromSerialized(SerializedScene serializedScene, SceneSettings settings) + parameters: + - id: serializedScene + type: Voile.SceneGraph.SerializedScene + - id: settings + type: Voile.SceneGraph.SceneSettings + return: + type: Voile.SceneGraph.Scene + content.vb: Public Shared Function FromSerialized(serializedScene As SerializedScene, settings As SceneSettings) As Scene + overload: Voile.SceneGraph.Scene.FromSerialized* +- uid: Voile.SceneGraph.Scene.TrySerialize(Voile.SceneGraph.SerializedScene@) + commentId: M:Voile.SceneGraph.Scene.TrySerialize(Voile.SceneGraph.SerializedScene@) + id: TrySerialize(Voile.SceneGraph.SerializedScene@) + parent: Voile.SceneGraph.Scene + langs: + - csharp + - vb + name: TrySerialize(out SerializedScene) + nameWithType: Scene.TrySerialize(out SerializedScene) + fullName: Voile.SceneGraph.Scene.TrySerialize(out Voile.SceneGraph.SerializedScene) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: TrySerialize + path: Source/SceneGraph/Scene.cs + startLine: 35 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public bool TrySerialize(out SerializedScene serializedScene) + parameters: + - id: serializedScene + type: Voile.SceneGraph.SerializedScene + return: + type: System.Boolean + content.vb: Public Function TrySerialize(serializedScene As SerializedScene) As Boolean + overload: Voile.SceneGraph.Scene.TrySerialize* + nameWithType.vb: Scene.TrySerialize(SerializedScene) + fullName.vb: Voile.SceneGraph.Scene.TrySerialize(Voile.SceneGraph.SerializedScene) + name.vb: TrySerialize(SerializedScene) +- uid: Voile.SceneGraph.Scene.WithLayers(System.Collections.Generic.Dictionary{System.String,Voile.SceneGraph.Layer}) + commentId: M:Voile.SceneGraph.Scene.WithLayers(System.Collections.Generic.Dictionary{System.String,Voile.SceneGraph.Layer}) + id: WithLayers(System.Collections.Generic.Dictionary{System.String,Voile.SceneGraph.Layer}) + parent: Voile.SceneGraph.Scene + langs: + - csharp + - vb + name: WithLayers(Dictionary) + nameWithType: Scene.WithLayers(Dictionary) + fullName: Voile.SceneGraph.Scene.WithLayers(System.Collections.Generic.Dictionary) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: WithLayers + path: Source/SceneGraph/Scene.cs + startLine: 52 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void WithLayers(Dictionary layers) + parameters: + - id: layers + type: System.Collections.Generic.Dictionary{System.String,Voile.SceneGraph.Layer} + content.vb: Public Sub WithLayers(layers As Dictionary(Of String, Layer)) + overload: Voile.SceneGraph.Scene.WithLayers* + nameWithType.vb: Scene.WithLayers(Dictionary(Of String, Layer)) + fullName.vb: Voile.SceneGraph.Scene.WithLayers(System.Collections.Generic.Dictionary(Of String, Voile.SceneGraph.Layer)) + name.vb: WithLayers(Dictionary(Of String, Layer)) +- uid: Voile.SceneGraph.Scene.Init + commentId: M:Voile.SceneGraph.Scene.Init + id: Init + parent: Voile.SceneGraph.Scene + langs: + - csharp + - vb + name: Init() + nameWithType: Scene.Init() + fullName: Voile.SceneGraph.Scene.Init() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Init + path: Source/SceneGraph/Scene.cs + startLine: 57 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: public void Init() + content.vb: Public Sub Init() + overload: Voile.SceneGraph.Scene.Init* + implements: + - Voile.SceneGraph.IMainLoop.Init +- uid: Voile.SceneGraph.Scene.Start + commentId: M:Voile.SceneGraph.Scene.Start + id: Start + parent: Voile.SceneGraph.Scene + langs: + - csharp + - vb + name: Start() + nameWithType: Scene.Start() + fullName: Voile.SceneGraph.Scene.Start() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Start + path: Source/SceneGraph/Scene.cs + startLine: 58 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: public void Start() + content.vb: Public Sub Start() + overload: Voile.SceneGraph.Scene.Start* + implements: + - Voile.SceneGraph.IMainLoop.Start +- uid: Voile.SceneGraph.Scene.Update + commentId: M:Voile.SceneGraph.Scene.Update + id: Update + parent: Voile.SceneGraph.Scene + langs: + - csharp + - vb + name: Update() + nameWithType: Scene.Update() + fullName: Voile.SceneGraph.Scene.Update() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Update + path: Source/SceneGraph/Scene.cs + startLine: 71 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: public void Update() + content.vb: Public Sub Update() + overload: Voile.SceneGraph.Scene.Update* + implements: + - Voile.SceneGraph.IMainLoop.Update +- uid: Voile.SceneGraph.Scene.AddLayer(System.String,Voile.SceneGraph.Layer) + commentId: M:Voile.SceneGraph.Scene.AddLayer(System.String,Voile.SceneGraph.Layer) + id: AddLayer(System.String,Voile.SceneGraph.Layer) + parent: Voile.SceneGraph.Scene + langs: + - csharp + - vb + name: AddLayer(string, Layer) + nameWithType: Scene.AddLayer(string, Layer) + fullName: Voile.SceneGraph.Scene.AddLayer(string, Voile.SceneGraph.Layer) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AddLayer + path: Source/SceneGraph/Scene.cs + startLine: 81 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void AddLayer(string name, Layer layer) + parameters: + - id: name + type: System.String + - id: layer + type: Voile.SceneGraph.Layer + content.vb: Public Sub AddLayer(name As String, layer As Layer) + overload: Voile.SceneGraph.Scene.AddLayer* + nameWithType.vb: Scene.AddLayer(String, Layer) + fullName.vb: Voile.SceneGraph.Scene.AddLayer(String, Voile.SceneGraph.Layer) + name.vb: AddLayer(String, Layer) +- uid: Voile.SceneGraph.Scene.BeginDraw + commentId: M:Voile.SceneGraph.Scene.BeginDraw + id: BeginDraw + parent: Voile.SceneGraph.Scene + langs: + - csharp + - vb + name: BeginDraw() + nameWithType: Scene.BeginDraw() + fullName: Voile.SceneGraph.Scene.BeginDraw() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: BeginDraw + path: Source/SceneGraph/Scene.cs + startLine: 87 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void BeginDraw() + content.vb: Public Sub BeginDraw() + overload: Voile.SceneGraph.Scene.BeginDraw* +- uid: Voile.SceneGraph.Scene.EndDraw + commentId: M:Voile.SceneGraph.Scene.EndDraw + id: EndDraw + parent: Voile.SceneGraph.Scene + langs: + - csharp + - vb + name: EndDraw() + nameWithType: Scene.EndDraw() + fullName: Voile.SceneGraph.Scene.EndDraw() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: EndDraw + path: Source/SceneGraph/Scene.cs + startLine: 101 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public void EndDraw() + content.vb: Public Sub EndDraw() + overload: Voile.SceneGraph.Scene.EndDraw* +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.SceneGraph.IMainLoop + commentId: T:Voile.SceneGraph.IMainLoop + parent: Voile.SceneGraph + href: Voile.SceneGraph.IMainLoop.html + name: IMainLoop + nameWithType: IMainLoop + fullName: Voile.SceneGraph.IMainLoop +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.SceneGraph.Scene.Renderer* + commentId: Overload:Voile.SceneGraph.Scene.Renderer + href: Voile.SceneGraph.Scene.html#Voile_SceneGraph_Scene_Renderer + name: Renderer + nameWithType: Scene.Renderer + fullName: Voile.SceneGraph.Scene.Renderer +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: Voile.SceneGraph.Scene.Input* + commentId: Overload:Voile.SceneGraph.Scene.Input + href: Voile.SceneGraph.Scene.html#Voile_SceneGraph_Scene_Input + name: Input + nameWithType: Scene.Input + fullName: Voile.SceneGraph.Scene.Input +- uid: Voile.Input.InputSystem + commentId: T:Voile.Input.InputSystem + parent: Voile.Input + href: Voile.Input.InputSystem.html + name: InputSystem + nameWithType: InputSystem + fullName: Voile.Input.InputSystem +- uid: Voile.Input + commentId: N:Voile.Input + href: Voile.html + name: Voile.Input + nameWithType: Voile.Input + fullName: Voile.Input + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html +- uid: Voile.SceneGraph.Scene.Audio* + commentId: Overload:Voile.SceneGraph.Scene.Audio + href: Voile.SceneGraph.Scene.html#Voile_SceneGraph_Scene_Audio + name: Audio + nameWithType: Scene.Audio + fullName: Voile.SceneGraph.Scene.Audio +- uid: Voile.Audio.AudioSystem + commentId: T:Voile.Audio.AudioSystem + parent: Voile.Audio + href: Voile.Audio.AudioSystem.html + name: AudioSystem + nameWithType: AudioSystem + fullName: Voile.Audio.AudioSystem +- uid: Voile.Audio + commentId: N:Voile.Audio + href: Voile.html + name: Voile.Audio + nameWithType: Voile.Audio + fullName: Voile.Audio + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Audio + name: Audio + href: Voile.Audio.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Audio + name: Audio + href: Voile.Audio.html +- uid: Voile.SceneGraph.Scene.ResourceManager* + commentId: Overload:Voile.SceneGraph.Scene.ResourceManager + href: Voile.SceneGraph.Scene.html#Voile_SceneGraph_Scene_ResourceManager + name: ResourceManager + nameWithType: Scene.ResourceManager + fullName: Voile.SceneGraph.Scene.ResourceManager +- uid: Voile.Resources.ResourceManager + commentId: T:Voile.Resources.ResourceManager + parent: Voile.Resources + href: Voile.Resources.ResourceManager.html + name: ResourceManager + nameWithType: ResourceManager + fullName: Voile.Resources.ResourceManager +- uid: Voile.Resources + commentId: N:Voile.Resources + href: Voile.html + name: Voile.Resources + nameWithType: Voile.Resources + fullName: Voile.Resources + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html +- uid: Voile.SceneGraph.Scene.DeltaTime* + commentId: Overload:Voile.SceneGraph.Scene.DeltaTime + href: Voile.SceneGraph.Scene.html#Voile_SceneGraph_Scene_DeltaTime + name: DeltaTime + nameWithType: Scene.DeltaTime + fullName: Voile.SceneGraph.Scene.DeltaTime +- uid: Voile.SceneGraph.IMainLoop.DeltaTime + commentId: P:Voile.SceneGraph.IMainLoop.DeltaTime + parent: Voile.SceneGraph.IMainLoop + href: Voile.SceneGraph.IMainLoop.html#Voile_SceneGraph_IMainLoop_DeltaTime + name: DeltaTime + nameWithType: IMainLoop.DeltaTime + fullName: Voile.SceneGraph.IMainLoop.DeltaTime +- uid: System.Double + commentId: T:System.Double + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + name: double + nameWithType: double + fullName: double + nameWithType.vb: Double + fullName.vb: Double + name.vb: Double +- uid: Voile.SceneGraph.Scene.ShouldRun* + commentId: Overload:Voile.SceneGraph.Scene.ShouldRun + href: Voile.SceneGraph.Scene.html#Voile_SceneGraph_Scene_ShouldRun + name: ShouldRun + nameWithType: Scene.ShouldRun + fullName: Voile.SceneGraph.Scene.ShouldRun +- uid: Voile.SceneGraph.IMainLoop.ShouldRun + commentId: P:Voile.SceneGraph.IMainLoop.ShouldRun + parent: Voile.SceneGraph.IMainLoop + href: Voile.SceneGraph.IMainLoop.html#Voile_SceneGraph_IMainLoop_ShouldRun + name: ShouldRun + nameWithType: IMainLoop.ShouldRun + fullName: Voile.SceneGraph.IMainLoop.ShouldRun +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: Voile.SceneGraph.Scene.#ctor* + commentId: Overload:Voile.SceneGraph.Scene.#ctor + href: Voile.SceneGraph.Scene.html#Voile_SceneGraph_Scene__ctor_Voile_SceneGraph_SceneSettings_ + name: Scene + nameWithType: Scene.Scene + fullName: Voile.SceneGraph.Scene.Scene + nameWithType.vb: Scene.New + fullName.vb: Voile.SceneGraph.Scene.New + name.vb: New +- uid: Voile.SceneGraph.SceneSettings + commentId: T:Voile.SceneGraph.SceneSettings + parent: Voile.SceneGraph + href: Voile.SceneGraph.SceneSettings.html + name: SceneSettings + nameWithType: SceneSettings + fullName: Voile.SceneGraph.SceneSettings +- uid: Voile.SceneGraph.Scene.FromSerialized* + commentId: Overload:Voile.SceneGraph.Scene.FromSerialized + href: Voile.SceneGraph.Scene.html#Voile_SceneGraph_Scene_FromSerialized_Voile_SceneGraph_SerializedScene_Voile_SceneGraph_SceneSettings_ + name: FromSerialized + nameWithType: Scene.FromSerialized + fullName: Voile.SceneGraph.Scene.FromSerialized +- uid: Voile.SceneGraph.SerializedScene + commentId: T:Voile.SceneGraph.SerializedScene + parent: Voile.SceneGraph + href: Voile.SceneGraph.SerializedScene.html + name: SerializedScene + nameWithType: SerializedScene + fullName: Voile.SceneGraph.SerializedScene +- uid: Voile.SceneGraph.Scene + commentId: T:Voile.SceneGraph.Scene + parent: Voile.SceneGraph + href: Voile.SceneGraph.Scene.html + name: Scene + nameWithType: Scene + fullName: Voile.SceneGraph.Scene +- uid: Voile.SceneGraph.Scene.TrySerialize* + commentId: Overload:Voile.SceneGraph.Scene.TrySerialize + href: Voile.SceneGraph.Scene.html#Voile_SceneGraph_Scene_TrySerialize_Voile_SceneGraph_SerializedScene__ + name: TrySerialize + nameWithType: Scene.TrySerialize + fullName: Voile.SceneGraph.Scene.TrySerialize +- uid: Voile.SceneGraph.Scene.WithLayers* + commentId: Overload:Voile.SceneGraph.Scene.WithLayers + href: Voile.SceneGraph.Scene.html#Voile_SceneGraph_Scene_WithLayers_System_Collections_Generic_Dictionary_System_String_Voile_SceneGraph_Layer__ + name: WithLayers + nameWithType: Scene.WithLayers + fullName: Voile.SceneGraph.Scene.WithLayers +- uid: System.Collections.Generic.Dictionary{System.String,Voile.SceneGraph.Layer} + commentId: T:System.Collections.Generic.Dictionary{System.String,Voile.SceneGraph.Layer} + parent: System.Collections.Generic + definition: System.Collections.Generic.Dictionary`2 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + name: Dictionary + nameWithType: Dictionary + fullName: System.Collections.Generic.Dictionary + nameWithType.vb: Dictionary(Of String, Layer) + fullName.vb: System.Collections.Generic.Dictionary(Of String, Voile.SceneGraph.Layer) + name.vb: Dictionary(Of String, Layer) + spec.csharp: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: Voile.SceneGraph.Layer + name: Layer + href: Voile.SceneGraph.Layer.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: Voile.SceneGraph.Layer + name: Layer + href: Voile.SceneGraph.Layer.html + - name: ) +- uid: System.Collections.Generic.Dictionary`2 + commentId: T:System.Collections.Generic.Dictionary`2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + name: Dictionary + nameWithType: Dictionary + fullName: System.Collections.Generic.Dictionary + nameWithType.vb: Dictionary(Of TKey, TValue) + fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue) + name.vb: Dictionary(Of TKey, TValue) + spec.csharp: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: < + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: '>' + spec.vb: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: ( + - name: Of + - name: " " + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: Voile.SceneGraph.Scene.Init* + commentId: Overload:Voile.SceneGraph.Scene.Init + href: Voile.SceneGraph.Scene.html#Voile_SceneGraph_Scene_Init + name: Init + nameWithType: Scene.Init + fullName: Voile.SceneGraph.Scene.Init +- uid: Voile.SceneGraph.IMainLoop.Init + commentId: M:Voile.SceneGraph.IMainLoop.Init + parent: Voile.SceneGraph.IMainLoop + href: Voile.SceneGraph.IMainLoop.html#Voile_SceneGraph_IMainLoop_Init + name: Init() + nameWithType: IMainLoop.Init() + fullName: Voile.SceneGraph.IMainLoop.Init() + spec.csharp: + - uid: Voile.SceneGraph.IMainLoop.Init + name: Init + href: Voile.SceneGraph.IMainLoop.html#Voile_SceneGraph_IMainLoop_Init + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.IMainLoop.Init + name: Init + href: Voile.SceneGraph.IMainLoop.html#Voile_SceneGraph_IMainLoop_Init + - name: ( + - name: ) +- uid: Voile.SceneGraph.Scene.Start* + commentId: Overload:Voile.SceneGraph.Scene.Start + href: Voile.SceneGraph.Scene.html#Voile_SceneGraph_Scene_Start + name: Start + nameWithType: Scene.Start + fullName: Voile.SceneGraph.Scene.Start +- uid: Voile.SceneGraph.IMainLoop.Start + commentId: M:Voile.SceneGraph.IMainLoop.Start + parent: Voile.SceneGraph.IMainLoop + href: Voile.SceneGraph.IMainLoop.html#Voile_SceneGraph_IMainLoop_Start + name: Start() + nameWithType: IMainLoop.Start() + fullName: Voile.SceneGraph.IMainLoop.Start() + spec.csharp: + - uid: Voile.SceneGraph.IMainLoop.Start + name: Start + href: Voile.SceneGraph.IMainLoop.html#Voile_SceneGraph_IMainLoop_Start + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.IMainLoop.Start + name: Start + href: Voile.SceneGraph.IMainLoop.html#Voile_SceneGraph_IMainLoop_Start + - name: ( + - name: ) +- uid: Voile.SceneGraph.Scene.Update* + commentId: Overload:Voile.SceneGraph.Scene.Update + href: Voile.SceneGraph.Scene.html#Voile_SceneGraph_Scene_Update + name: Update + nameWithType: Scene.Update + fullName: Voile.SceneGraph.Scene.Update +- uid: Voile.SceneGraph.IMainLoop.Update + commentId: M:Voile.SceneGraph.IMainLoop.Update + parent: Voile.SceneGraph.IMainLoop + href: Voile.SceneGraph.IMainLoop.html#Voile_SceneGraph_IMainLoop_Update + name: Update() + nameWithType: IMainLoop.Update() + fullName: Voile.SceneGraph.IMainLoop.Update() + spec.csharp: + - uid: Voile.SceneGraph.IMainLoop.Update + name: Update + href: Voile.SceneGraph.IMainLoop.html#Voile_SceneGraph_IMainLoop_Update + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.IMainLoop.Update + name: Update + href: Voile.SceneGraph.IMainLoop.html#Voile_SceneGraph_IMainLoop_Update + - name: ( + - name: ) +- uid: Voile.SceneGraph.Scene.AddLayer* + commentId: Overload:Voile.SceneGraph.Scene.AddLayer + href: Voile.SceneGraph.Scene.html#Voile_SceneGraph_Scene_AddLayer_System_String_Voile_SceneGraph_Layer_ + name: AddLayer + nameWithType: Scene.AddLayer + fullName: Voile.SceneGraph.Scene.AddLayer +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.SceneGraph.Layer + commentId: T:Voile.SceneGraph.Layer + parent: Voile.SceneGraph + href: Voile.SceneGraph.Layer.html + name: Layer + nameWithType: Layer + fullName: Voile.SceneGraph.Layer +- uid: Voile.SceneGraph.Scene.BeginDraw* + commentId: Overload:Voile.SceneGraph.Scene.BeginDraw + href: Voile.SceneGraph.Scene.html#Voile_SceneGraph_Scene_BeginDraw + name: BeginDraw + nameWithType: Scene.BeginDraw + fullName: Voile.SceneGraph.Scene.BeginDraw +- uid: Voile.SceneGraph.Scene.EndDraw* + commentId: Overload:Voile.SceneGraph.Scene.EndDraw + href: Voile.SceneGraph.Scene.html#Voile_SceneGraph_Scene_EndDraw + name: EndDraw + nameWithType: Scene.EndDraw + fullName: Voile.SceneGraph.Scene.EndDraw diff --git a/Voile/api/Voile.SceneGraph.SceneSettings.yml b/Voile/api/Voile.SceneGraph.SceneSettings.yml new file mode 100644 index 0000000..43de423 --- /dev/null +++ b/Voile/api/Voile.SceneGraph.SceneSettings.yml @@ -0,0 +1,535 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.SceneSettings + commentId: T:Voile.SceneGraph.SceneSettings + id: SceneSettings + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.SceneSettings.AudioBackend + - Voile.SceneGraph.SceneSettings.InputHandler + - Voile.SceneGraph.SceneSettings.Renderer + - Voile.SceneGraph.SceneSettings.ResourceManager + langs: + - csharp + - vb + name: SceneSettings + nameWithType: SceneSettings + fullName: Voile.SceneGraph.SceneSettings + type: Struct + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SceneSettings + path: Source/SceneGraph/Scene.cs + startLine: 123 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public struct SceneSettings + content.vb: Public Structure SceneSettings + inheritedMembers: + - System.ValueType.Equals(System.Object) + - System.ValueType.GetHashCode + - System.ValueType.ToString + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetType + - System.Object.ReferenceEquals(System.Object,System.Object) +- uid: Voile.SceneGraph.SceneSettings.Renderer + commentId: P:Voile.SceneGraph.SceneSettings.Renderer + id: Renderer + parent: Voile.SceneGraph.SceneSettings + langs: + - csharp + - vb + name: Renderer + nameWithType: SceneSettings.Renderer + fullName: Voile.SceneGraph.SceneSettings.Renderer + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Renderer + path: Source/SceneGraph/Scene.cs + startLine: 125 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public RenderSystem Renderer { readonly get; set; } + parameters: [] + return: + type: Voile.Rendering.RenderSystem + content.vb: Public Property Renderer As RenderSystem + overload: Voile.SceneGraph.SceneSettings.Renderer* +- uid: Voile.SceneGraph.SceneSettings.AudioBackend + commentId: P:Voile.SceneGraph.SceneSettings.AudioBackend + id: AudioBackend + parent: Voile.SceneGraph.SceneSettings + langs: + - csharp + - vb + name: AudioBackend + nameWithType: SceneSettings.AudioBackend + fullName: Voile.SceneGraph.SceneSettings.AudioBackend + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AudioBackend + path: Source/SceneGraph/Scene.cs + startLine: 126 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public AudioSystem AudioBackend { readonly get; set; } + parameters: [] + return: + type: Voile.Audio.AudioSystem + content.vb: Public Property AudioBackend As AudioSystem + overload: Voile.SceneGraph.SceneSettings.AudioBackend* +- uid: Voile.SceneGraph.SceneSettings.InputHandler + commentId: P:Voile.SceneGraph.SceneSettings.InputHandler + id: InputHandler + parent: Voile.SceneGraph.SceneSettings + langs: + - csharp + - vb + name: InputHandler + nameWithType: SceneSettings.InputHandler + fullName: Voile.SceneGraph.SceneSettings.InputHandler + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: InputHandler + path: Source/SceneGraph/Scene.cs + startLine: 127 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public InputSystem InputHandler { readonly get; set; } + parameters: [] + return: + type: Voile.Input.InputSystem + content.vb: Public Property InputHandler As InputSystem + overload: Voile.SceneGraph.SceneSettings.InputHandler* +- uid: Voile.SceneGraph.SceneSettings.ResourceManager + commentId: P:Voile.SceneGraph.SceneSettings.ResourceManager + id: ResourceManager + parent: Voile.SceneGraph.SceneSettings + langs: + - csharp + - vb + name: ResourceManager + nameWithType: SceneSettings.ResourceManager + fullName: Voile.SceneGraph.SceneSettings.ResourceManager + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Scene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ResourceManager + path: Source/SceneGraph/Scene.cs + startLine: 128 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public ResourceManager ResourceManager { readonly get; set; } + parameters: [] + return: + type: Voile.Resources.ResourceManager + content.vb: Public Property ResourceManager As ResourceManager + overload: Voile.SceneGraph.SceneSettings.ResourceManager* +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.ValueType.Equals(System.Object) + commentId: M:System.ValueType.Equals(System.Object) + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + name: Equals(object) + nameWithType: ValueType.Equals(object) + fullName: System.ValueType.Equals(object) + nameWithType.vb: ValueType.Equals(Object) + fullName.vb: System.ValueType.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType.GetHashCode + commentId: M:System.ValueType.GetHashCode + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + name: GetHashCode() + nameWithType: ValueType.GetHashCode() + fullName: System.ValueType.GetHashCode() + spec.csharp: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) +- uid: System.ValueType.ToString + commentId: M:System.ValueType.ToString + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + name: ToString() + nameWithType: ValueType.ToString() + fullName: System.ValueType.ToString() + spec.csharp: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType + commentId: T:System.ValueType + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype + name: ValueType + nameWithType: ValueType + fullName: System.ValueType +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.SceneGraph.SceneSettings.Renderer* + commentId: Overload:Voile.SceneGraph.SceneSettings.Renderer + href: Voile.SceneGraph.SceneSettings.html#Voile_SceneGraph_SceneSettings_Renderer + name: Renderer + nameWithType: SceneSettings.Renderer + fullName: Voile.SceneGraph.SceneSettings.Renderer +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: Voile.SceneGraph.SceneSettings.AudioBackend* + commentId: Overload:Voile.SceneGraph.SceneSettings.AudioBackend + href: Voile.SceneGraph.SceneSettings.html#Voile_SceneGraph_SceneSettings_AudioBackend + name: AudioBackend + nameWithType: SceneSettings.AudioBackend + fullName: Voile.SceneGraph.SceneSettings.AudioBackend +- uid: Voile.Audio.AudioSystem + commentId: T:Voile.Audio.AudioSystem + parent: Voile.Audio + href: Voile.Audio.AudioSystem.html + name: AudioSystem + nameWithType: AudioSystem + fullName: Voile.Audio.AudioSystem +- uid: Voile.Audio + commentId: N:Voile.Audio + href: Voile.html + name: Voile.Audio + nameWithType: Voile.Audio + fullName: Voile.Audio + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Audio + name: Audio + href: Voile.Audio.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Audio + name: Audio + href: Voile.Audio.html +- uid: Voile.SceneGraph.SceneSettings.InputHandler* + commentId: Overload:Voile.SceneGraph.SceneSettings.InputHandler + href: Voile.SceneGraph.SceneSettings.html#Voile_SceneGraph_SceneSettings_InputHandler + name: InputHandler + nameWithType: SceneSettings.InputHandler + fullName: Voile.SceneGraph.SceneSettings.InputHandler +- uid: Voile.Input.InputSystem + commentId: T:Voile.Input.InputSystem + parent: Voile.Input + href: Voile.Input.InputSystem.html + name: InputSystem + nameWithType: InputSystem + fullName: Voile.Input.InputSystem +- uid: Voile.Input + commentId: N:Voile.Input + href: Voile.html + name: Voile.Input + nameWithType: Voile.Input + fullName: Voile.Input + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Input + name: Input + href: Voile.Input.html +- uid: Voile.SceneGraph.SceneSettings.ResourceManager* + commentId: Overload:Voile.SceneGraph.SceneSettings.ResourceManager + href: Voile.SceneGraph.SceneSettings.html#Voile_SceneGraph_SceneSettings_ResourceManager + name: ResourceManager + nameWithType: SceneSettings.ResourceManager + fullName: Voile.SceneGraph.SceneSettings.ResourceManager +- uid: Voile.Resources.ResourceManager + commentId: T:Voile.Resources.ResourceManager + parent: Voile.Resources + href: Voile.Resources.ResourceManager.html + name: ResourceManager + nameWithType: ResourceManager + fullName: Voile.Resources.ResourceManager +- uid: Voile.Resources + commentId: N:Voile.Resources + href: Voile.html + name: Voile.Resources + nameWithType: Voile.Resources + fullName: Voile.Resources + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html diff --git a/Voile/api/Voile.SceneGraph.SerializedScene.yml b/Voile/api/Voile.SceneGraph.SerializedScene.yml new file mode 100644 index 0000000..c9da480 --- /dev/null +++ b/Voile/api/Voile.SceneGraph.SerializedScene.yml @@ -0,0 +1,604 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.SerializedScene + commentId: T:Voile.SceneGraph.SerializedScene + id: SerializedScene + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.SerializedScene.#ctor(System.String,System.Byte[]) + - Voile.SceneGraph.SerializedScene.Layers + langs: + - csharp + - vb + name: SerializedScene + nameWithType: SerializedScene + fullName: Voile.SceneGraph.SerializedScene + type: Class + source: + remote: + path: Voile/Source/SceneGraph/Resources/SerializedScene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SerializedScene + path: Source/SceneGraph/Resources/SerializedScene.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: 'public class SerializedScene : Resource, IDisposable' + content.vb: Public Class SerializedScene Inherits Resource Implements IDisposable + inheritance: + - System.Object + - Voile.Resource + implements: + - System.IDisposable + inheritedMembers: + - Voile.Resource.Guid + - Voile.Resource.Path + - Voile.Resource.Buffer + - Voile.Resource.BufferSize + - Voile.Resource.Dispose + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.SceneGraph.SerializedScene.Layers + commentId: P:Voile.SceneGraph.SerializedScene.Layers + id: Layers + parent: Voile.SceneGraph.SerializedScene + langs: + - csharp + - vb + name: Layers + nameWithType: SerializedScene.Layers + fullName: Voile.SceneGraph.SerializedScene.Layers + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Resources/SerializedScene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Layers + path: Source/SceneGraph/Resources/SerializedScene.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Dictionary Layers { get; set; } + parameters: [] + return: + type: System.Collections.Generic.Dictionary{System.String,Voile.SceneGraph.Layer} + content.vb: Public Property Layers As Dictionary(Of String, Layer) + overload: Voile.SceneGraph.SerializedScene.Layers* +- uid: Voile.SceneGraph.SerializedScene.#ctor(System.String,System.Byte[]) + commentId: M:Voile.SceneGraph.SerializedScene.#ctor(System.String,System.Byte[]) + id: '#ctor(System.String,System.Byte[])' + parent: Voile.SceneGraph.SerializedScene + langs: + - csharp + - vb + name: SerializedScene(string, byte[]) + nameWithType: SerializedScene.SerializedScene(string, byte[]) + fullName: Voile.SceneGraph.SerializedScene.SerializedScene(string, byte[]) + type: Constructor + source: + remote: + path: Voile/Source/SceneGraph/Resources/SerializedScene.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/SceneGraph/Resources/SerializedScene.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public SerializedScene(string path, byte[] buffer) + parameters: + - id: path + type: System.String + - id: buffer + type: System.Byte[] + content.vb: Public Sub New(path As String, buffer As Byte()) + overload: Voile.SceneGraph.SerializedScene.#ctor* + nameWithType.vb: SerializedScene.New(String, Byte()) + fullName.vb: Voile.SceneGraph.SerializedScene.New(String, Byte()) + name.vb: New(String, Byte()) +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.Resource + commentId: T:Voile.Resource + parent: Voile + href: Voile.Resource.html + name: Resource + nameWithType: Resource + fullName: Voile.Resource +- uid: System.IDisposable + commentId: T:System.IDisposable + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable + name: IDisposable + nameWithType: IDisposable + fullName: System.IDisposable +- uid: Voile.Resource.Guid + commentId: P:Voile.Resource.Guid + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_Guid + name: Guid + nameWithType: Resource.Guid + fullName: Voile.Resource.Guid +- uid: Voile.Resource.Path + commentId: P:Voile.Resource.Path + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_Path + name: Path + nameWithType: Resource.Path + fullName: Voile.Resource.Path +- uid: Voile.Resource.Buffer + commentId: P:Voile.Resource.Buffer + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_Buffer + name: Buffer + nameWithType: Resource.Buffer + fullName: Voile.Resource.Buffer +- uid: Voile.Resource.BufferSize + commentId: P:Voile.Resource.BufferSize + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_BufferSize + name: BufferSize + nameWithType: Resource.BufferSize + fullName: Voile.Resource.BufferSize +- uid: Voile.Resource.Dispose + commentId: M:Voile.Resource.Dispose + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_Dispose + name: Dispose() + nameWithType: Resource.Dispose() + fullName: Voile.Resource.Dispose() + spec.csharp: + - uid: Voile.Resource.Dispose + name: Dispose + href: Voile.Resource.html#Voile_Resource_Dispose + - name: ( + - name: ) + spec.vb: + - uid: Voile.Resource.Dispose + name: Dispose + href: Voile.Resource.html#Voile_Resource_Dispose + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.SceneGraph.SerializedScene.Layers* + commentId: Overload:Voile.SceneGraph.SerializedScene.Layers + href: Voile.SceneGraph.SerializedScene.html#Voile_SceneGraph_SerializedScene_Layers + name: Layers + nameWithType: SerializedScene.Layers + fullName: Voile.SceneGraph.SerializedScene.Layers +- uid: System.Collections.Generic.Dictionary{System.String,Voile.SceneGraph.Layer} + commentId: T:System.Collections.Generic.Dictionary{System.String,Voile.SceneGraph.Layer} + parent: System.Collections.Generic + definition: System.Collections.Generic.Dictionary`2 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + name: Dictionary + nameWithType: Dictionary + fullName: System.Collections.Generic.Dictionary + nameWithType.vb: Dictionary(Of String, Layer) + fullName.vb: System.Collections.Generic.Dictionary(Of String, Voile.SceneGraph.Layer) + name.vb: Dictionary(Of String, Layer) + spec.csharp: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: Voile.SceneGraph.Layer + name: Layer + href: Voile.SceneGraph.Layer.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: Voile.SceneGraph.Layer + name: Layer + href: Voile.SceneGraph.Layer.html + - name: ) +- uid: System.Collections.Generic.Dictionary`2 + commentId: T:System.Collections.Generic.Dictionary`2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + name: Dictionary + nameWithType: Dictionary + fullName: System.Collections.Generic.Dictionary + nameWithType.vb: Dictionary(Of TKey, TValue) + fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue) + name.vb: Dictionary(Of TKey, TValue) + spec.csharp: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: < + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: '>' + spec.vb: + - uid: System.Collections.Generic.Dictionary`2 + name: Dictionary + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 + - name: ( + - name: Of + - name: " " + - name: TKey + - name: ',' + - name: " " + - name: TValue + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: Voile.SceneGraph.SerializedScene.#ctor* + commentId: Overload:Voile.SceneGraph.SerializedScene.#ctor + href: Voile.SceneGraph.SerializedScene.html#Voile_SceneGraph_SerializedScene__ctor_System_String_System_Byte___ + name: SerializedScene + nameWithType: SerializedScene.SerializedScene + fullName: Voile.SceneGraph.SerializedScene.SerializedScene + nameWithType.vb: SerializedScene.New + fullName.vb: Voile.SceneGraph.SerializedScene.New + name.vb: New +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: System.Byte[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + name: byte[] + nameWithType: byte[] + fullName: byte[] + nameWithType.vb: Byte() + fullName.vb: Byte() + name.vb: Byte() + spec.csharp: + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '[' + - name: ']' + spec.vb: + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: ( + - name: ) diff --git a/Voile/api/Voile.SceneGraph.SerializedSceneSaver.yml b/Voile/api/Voile.SceneGraph.SerializedSceneSaver.yml new file mode 100644 index 0000000..ddb581f --- /dev/null +++ b/Voile/api/Voile.SceneGraph.SerializedSceneSaver.yml @@ -0,0 +1,534 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.SerializedSceneSaver + commentId: T:Voile.SceneGraph.SerializedSceneSaver + id: SerializedSceneSaver + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.SerializedSceneSaver.TrySave(System.String,Voile.SceneGraph.SerializedScene@) + langs: + - csharp + - vb + name: SerializedSceneSaver + nameWithType: SerializedSceneSaver + fullName: Voile.SceneGraph.SerializedSceneSaver + type: Class + source: + remote: + path: Voile/Source/SceneGraph/Resources/SerializedSceneSaver.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SerializedSceneSaver + path: Source/SceneGraph/Resources/SerializedSceneSaver.cs + startLine: 5 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: 'public class SerializedSceneSaver : IResourceSaver' + content.vb: Public Class SerializedSceneSaver Implements IResourceSaver(Of SerializedScene) + inheritance: + - System.Object + implements: + - Voile.Resources.IResourceSaver{Voile.SceneGraph.SerializedScene} + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.SceneGraph.SerializedSceneSaver.TrySave(System.String,Voile.SceneGraph.SerializedScene@) + commentId: M:Voile.SceneGraph.SerializedSceneSaver.TrySave(System.String,Voile.SceneGraph.SerializedScene@) + id: TrySave(System.String,Voile.SceneGraph.SerializedScene@) + parent: Voile.SceneGraph.SerializedSceneSaver + langs: + - csharp + - vb + name: TrySave(string, in SerializedScene) + nameWithType: SerializedSceneSaver.TrySave(string, in SerializedScene) + fullName: Voile.SceneGraph.SerializedSceneSaver.TrySave(string, in Voile.SceneGraph.SerializedScene) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Resources/SerializedSceneSaver.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: TrySave + path: Source/SceneGraph/Resources/SerializedSceneSaver.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: public bool TrySave(string path, in SerializedScene resource) + parameters: + - id: path + type: System.String + - id: resource + type: Voile.SceneGraph.SerializedScene + return: + type: System.Boolean + content.vb: Public Function TrySave(path As String, resource As SerializedScene) As Boolean + overload: Voile.SceneGraph.SerializedSceneSaver.TrySave* + implements: + - Voile.Resources.IResourceSaver{Voile.SceneGraph.SerializedScene}.TrySave(System.String,Voile.SceneGraph.SerializedScene@) + nameWithType.vb: SerializedSceneSaver.TrySave(String, SerializedScene) + fullName.vb: Voile.SceneGraph.SerializedSceneSaver.TrySave(String, Voile.SceneGraph.SerializedScene) + name.vb: TrySave(String, SerializedScene) +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.Resources.IResourceSaver{Voile.SceneGraph.SerializedScene} + commentId: T:Voile.Resources.IResourceSaver{Voile.SceneGraph.SerializedScene} + parent: Voile.Resources + definition: Voile.Resources.IResourceSaver`1 + href: Voile.Resources.IResourceSaver-1.html + name: IResourceSaver + nameWithType: IResourceSaver + fullName: Voile.Resources.IResourceSaver + nameWithType.vb: IResourceSaver(Of SerializedScene) + fullName.vb: Voile.Resources.IResourceSaver(Of Voile.SceneGraph.SerializedScene) + name.vb: IResourceSaver(Of SerializedScene) + spec.csharp: + - uid: Voile.Resources.IResourceSaver`1 + name: IResourceSaver + href: Voile.Resources.IResourceSaver-1.html + - name: < + - uid: Voile.SceneGraph.SerializedScene + name: SerializedScene + href: Voile.SceneGraph.SerializedScene.html + - name: '>' + spec.vb: + - uid: Voile.Resources.IResourceSaver`1 + name: IResourceSaver + href: Voile.Resources.IResourceSaver-1.html + - name: ( + - name: Of + - name: " " + - uid: Voile.SceneGraph.SerializedScene + name: SerializedScene + href: Voile.SceneGraph.SerializedScene.html + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Resources.IResourceSaver`1 + commentId: T:Voile.Resources.IResourceSaver`1 + href: Voile.Resources.IResourceSaver-1.html + name: IResourceSaver + nameWithType: IResourceSaver + fullName: Voile.Resources.IResourceSaver + nameWithType.vb: IResourceSaver(Of T) + fullName.vb: Voile.Resources.IResourceSaver(Of T) + name.vb: IResourceSaver(Of T) + spec.csharp: + - uid: Voile.Resources.IResourceSaver`1 + name: IResourceSaver + href: Voile.Resources.IResourceSaver-1.html + - name: < + - name: T + - name: '>' + spec.vb: + - uid: Voile.Resources.IResourceSaver`1 + name: IResourceSaver + href: Voile.Resources.IResourceSaver-1.html + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: Voile.Resources + commentId: N:Voile.Resources + href: Voile.html + name: Voile.Resources + nameWithType: Voile.Resources + fullName: Voile.Resources + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html +- uid: Voile.SceneGraph.SerializedSceneSaver.TrySave* + commentId: Overload:Voile.SceneGraph.SerializedSceneSaver.TrySave + href: Voile.SceneGraph.SerializedSceneSaver.html#Voile_SceneGraph_SerializedSceneSaver_TrySave_System_String_Voile_SceneGraph_SerializedScene__ + name: TrySave + nameWithType: SerializedSceneSaver.TrySave + fullName: Voile.SceneGraph.SerializedSceneSaver.TrySave +- uid: Voile.Resources.IResourceSaver{Voile.SceneGraph.SerializedScene}.TrySave(System.String,Voile.SceneGraph.SerializedScene@) + commentId: M:Voile.Resources.IResourceSaver{Voile.SceneGraph.SerializedScene}.TrySave(System.String,Voile.SceneGraph.SerializedScene@) + parent: Voile.Resources.IResourceSaver{Voile.SceneGraph.SerializedScene} + definition: Voile.Resources.IResourceSaver`1.TrySave(System.String,`0@) + href: Voile.Resources.IResourceSaver-1.html#Voile_Resources_IResourceSaver_1_TrySave_System_String__0__ + name: TrySave(string, in SerializedScene) + nameWithType: IResourceSaver.TrySave(string, in SerializedScene) + fullName: Voile.Resources.IResourceSaver.TrySave(string, in Voile.SceneGraph.SerializedScene) + nameWithType.vb: IResourceSaver(Of SerializedScene).TrySave(String, SerializedScene) + fullName.vb: Voile.Resources.IResourceSaver(Of Voile.SceneGraph.SerializedScene).TrySave(String, Voile.SceneGraph.SerializedScene) + name.vb: TrySave(String, SerializedScene) + spec.csharp: + - uid: Voile.Resources.IResourceSaver{Voile.SceneGraph.SerializedScene}.TrySave(System.String,Voile.SceneGraph.SerializedScene@) + name: TrySave + href: Voile.Resources.IResourceSaver-1.html#Voile_Resources_IResourceSaver_1_TrySave_System_String__0__ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - name: in + - name: " " + - uid: Voile.SceneGraph.SerializedScene + name: SerializedScene + href: Voile.SceneGraph.SerializedScene.html + - name: ) + spec.vb: + - uid: Voile.Resources.IResourceSaver{Voile.SceneGraph.SerializedScene}.TrySave(System.String,Voile.SceneGraph.SerializedScene@) + name: TrySave + href: Voile.Resources.IResourceSaver-1.html#Voile_Resources_IResourceSaver_1_TrySave_System_String__0__ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: Voile.SceneGraph.SerializedScene + name: SerializedScene + href: Voile.SceneGraph.SerializedScene.html + - name: ) +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.SceneGraph.SerializedScene + commentId: T:Voile.SceneGraph.SerializedScene + parent: Voile.SceneGraph + href: Voile.SceneGraph.SerializedScene.html + name: SerializedScene + nameWithType: SerializedScene + fullName: Voile.SceneGraph.SerializedScene +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: Voile.Resources.IResourceSaver`1.TrySave(System.String,`0@) + commentId: M:Voile.Resources.IResourceSaver`1.TrySave(System.String,`0@) + isExternal: true + href: Voile.Resources.IResourceSaver-1.html#Voile_Resources_IResourceSaver_1_TrySave_System_String__0__ + name: TrySave(string, in T) + nameWithType: IResourceSaver.TrySave(string, in T) + fullName: Voile.Resources.IResourceSaver.TrySave(string, in T) + nameWithType.vb: IResourceSaver(Of T).TrySave(String, T) + fullName.vb: Voile.Resources.IResourceSaver(Of T).TrySave(String, T) + name.vb: TrySave(String, T) + spec.csharp: + - uid: Voile.Resources.IResourceSaver`1.TrySave(System.String,`0@) + name: TrySave + href: Voile.Resources.IResourceSaver-1.html#Voile_Resources_IResourceSaver_1_TrySave_System_String__0__ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - name: in + - name: " " + - name: T + - name: ) + spec.vb: + - uid: Voile.Resources.IResourceSaver`1.TrySave(System.String,`0@) + name: TrySave + href: Voile.Resources.IResourceSaver-1.html#Voile_Resources_IResourceSaver_1_TrySave_System_String__0__ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - name: T + - name: ) diff --git a/Voile/api/Voile.SceneGraph.Sprite2d.yml b/Voile/api/Voile.SceneGraph.Sprite2d.yml new file mode 100644 index 0000000..967ae47 --- /dev/null +++ b/Voile/api/Voile.SceneGraph.Sprite2d.yml @@ -0,0 +1,792 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.Sprite2d + commentId: T:Voile.SceneGraph.Sprite2d + id: Sprite2d + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.Sprite2d.OnDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Sprite2d.OnStart + - Voile.SceneGraph.Sprite2d.Texture + langs: + - csharp + - vb + name: Sprite2d + nameWithType: Sprite2d + fullName: Voile.SceneGraph.Sprite2d + type: Class + source: + remote: + path: Voile/Source/SceneGraph/Entities/Sprite2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Sprite2d + path: Source/SceneGraph/Entities/Sprite2d.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: 'public class Sprite2d : Drawable2d, IDrawable' + content.vb: Public Class Sprite2d Inherits Drawable2d Implements IDrawable + inheritance: + - System.Object + - Voile.SceneGraph.Entity + - Voile.SceneGraph.Entity2d + - Voile.SceneGraph.Drawable2d + implements: + - Voile.SceneGraph.IDrawable + inheritedMembers: + - Voile.SceneGraph.Drawable2d.PivotOffset + - Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Entity2d.Position + - Voile.SceneGraph.Entity2d.Rotation + - Voile.SceneGraph.Entity.Layer + - Voile.SceneGraph.Entity.Input + - Voile.SceneGraph.Entity.Audio + - Voile.SceneGraph.Entity.Renderer + - Voile.SceneGraph.Entity.Id + - Voile.SceneGraph.Entity.Start + - Voile.SceneGraph.Entity.Update(System.Double) + - Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Entity.OnDestroy + - Voile.SceneGraph.Entity.OnUpdate(System.Double) + - Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Entity.Destroy + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.SceneGraph.Sprite2d.Texture + commentId: P:Voile.SceneGraph.Sprite2d.Texture + id: Texture + parent: Voile.SceneGraph.Sprite2d + langs: + - csharp + - vb + name: Texture + nameWithType: Sprite2d.Texture + fullName: Voile.SceneGraph.Sprite2d.Texture + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Entities/Sprite2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Texture + path: Source/SceneGraph/Entities/Sprite2d.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Texture2d Texture { get; set; } + parameters: [] + return: + type: Voile.Texture2d + content.vb: Public Property Texture As Texture2d + overload: Voile.SceneGraph.Sprite2d.Texture* +- uid: Voile.SceneGraph.Sprite2d.OnStart + commentId: M:Voile.SceneGraph.Sprite2d.OnStart + id: OnStart + parent: Voile.SceneGraph.Sprite2d + langs: + - csharp + - vb + name: OnStart() + nameWithType: Sprite2d.OnStart() + fullName: Voile.SceneGraph.Sprite2d.OnStart() + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/Sprite2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnStart + path: Source/SceneGraph/Entities/Sprite2d.cs + startLine: 10 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: protected override void OnStart() + content.vb: Protected Overrides Sub OnStart() + overridden: Voile.SceneGraph.Entity.OnStart + overload: Voile.SceneGraph.Sprite2d.OnStart* +- uid: Voile.SceneGraph.Sprite2d.OnDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Sprite2d.OnDraw(Voile.Rendering.RenderSystem) + id: OnDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Sprite2d + langs: + - csharp + - vb + name: OnDraw(RenderSystem) + nameWithType: Sprite2d.OnDraw(RenderSystem) + fullName: Voile.SceneGraph.Sprite2d.OnDraw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/Sprite2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnDraw + path: Source/SceneGraph/Entities/Sprite2d.cs + startLine: 15 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: public override void OnDraw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Public Overrides Sub OnDraw(renderer As RenderSystem) + overridden: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + overload: Voile.SceneGraph.Sprite2d.OnDraw* +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.SceneGraph.Entity + commentId: T:Voile.SceneGraph.Entity + parent: Voile.SceneGraph + href: Voile.SceneGraph.Entity.html + name: Entity + nameWithType: Entity + fullName: Voile.SceneGraph.Entity +- uid: Voile.SceneGraph.Entity2d + commentId: T:Voile.SceneGraph.Entity2d + parent: Voile.SceneGraph + href: Voile.SceneGraph.Entity2d.html + name: Entity2d + nameWithType: Entity2d + fullName: Voile.SceneGraph.Entity2d +- uid: Voile.SceneGraph.Drawable2d + commentId: T:Voile.SceneGraph.Drawable2d + parent: Voile.SceneGraph + href: Voile.SceneGraph.Drawable2d.html + name: Drawable2d + nameWithType: Drawable2d + fullName: Voile.SceneGraph.Drawable2d +- uid: Voile.SceneGraph.IDrawable + commentId: T:Voile.SceneGraph.IDrawable + parent: Voile.SceneGraph + href: Voile.SceneGraph.IDrawable.html + name: IDrawable + nameWithType: IDrawable + fullName: Voile.SceneGraph.IDrawable +- uid: Voile.SceneGraph.Drawable2d.PivotOffset + commentId: P:Voile.SceneGraph.Drawable2d.PivotOffset + parent: Voile.SceneGraph.Drawable2d + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_PivotOffset + name: PivotOffset + nameWithType: Drawable2d.PivotOffset + fullName: Voile.SceneGraph.Drawable2d.PivotOffset +- uid: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Drawable2d + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_Draw_Voile_Rendering_RenderSystem_ + name: Draw(RenderSystem) + nameWithType: Drawable2d.Draw(RenderSystem) + fullName: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity2d.Position + commentId: P:Voile.SceneGraph.Entity2d.Position + parent: Voile.SceneGraph.Entity2d + href: Voile.SceneGraph.Entity2d.html#Voile_SceneGraph_Entity2d_Position + name: Position + nameWithType: Entity2d.Position + fullName: Voile.SceneGraph.Entity2d.Position +- uid: Voile.SceneGraph.Entity2d.Rotation + commentId: P:Voile.SceneGraph.Entity2d.Rotation + parent: Voile.SceneGraph.Entity2d + href: Voile.SceneGraph.Entity2d.html#Voile_SceneGraph_Entity2d_Rotation + name: Rotation + nameWithType: Entity2d.Rotation + fullName: Voile.SceneGraph.Entity2d.Rotation +- uid: Voile.SceneGraph.Entity.Layer + commentId: P:Voile.SceneGraph.Entity.Layer + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Layer + name: Layer + nameWithType: Entity.Layer + fullName: Voile.SceneGraph.Entity.Layer +- uid: Voile.SceneGraph.Entity.Input + commentId: P:Voile.SceneGraph.Entity.Input + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Input + name: Input + nameWithType: Entity.Input + fullName: Voile.SceneGraph.Entity.Input +- uid: Voile.SceneGraph.Entity.Audio + commentId: P:Voile.SceneGraph.Entity.Audio + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Audio + name: Audio + nameWithType: Entity.Audio + fullName: Voile.SceneGraph.Entity.Audio +- uid: Voile.SceneGraph.Entity.Renderer + commentId: P:Voile.SceneGraph.Entity.Renderer + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Renderer + name: Renderer + nameWithType: Entity.Renderer + fullName: Voile.SceneGraph.Entity.Renderer +- uid: Voile.SceneGraph.Entity.Id + commentId: P:Voile.SceneGraph.Entity.Id + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Id + name: Id + nameWithType: Entity.Id + fullName: Voile.SceneGraph.Entity.Id +- uid: Voile.SceneGraph.Entity.Start + commentId: M:Voile.SceneGraph.Entity.Start + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + name: Start() + nameWithType: Entity.Start() + fullName: Voile.SceneGraph.Entity.Start() + spec.csharp: + - uid: Voile.SceneGraph.Entity.Start + name: Start + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Start + name: Start + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.Update(System.Double) + commentId: M:Voile.SceneGraph.Entity.Update(System.Double) + parent: Voile.SceneGraph.Entity + isExternal: true + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + name: Update(double) + nameWithType: Entity.Update(double) + fullName: Voile.SceneGraph.Entity.Update(double) + nameWithType.vb: Entity.Update(Double) + fullName.vb: Voile.SceneGraph.Entity.Update(Double) + name.vb: Update(Double) + spec.csharp: + - uid: Voile.SceneGraph.Entity.Update(System.Double) + name: Update + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Update(System.Double) + name: Update + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + name: ReceiveInput(InputSystem) + nameWithType: Entity.ReceiveInput(InputSystem) + fullName: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity.OnDestroy + commentId: M:Voile.SceneGraph.Entity.OnDestroy + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + name: OnDestroy() + nameWithType: Entity.OnDestroy() + fullName: Voile.SceneGraph.Entity.OnDestroy() + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnDestroy + name: OnDestroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnDestroy + name: OnDestroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + commentId: M:Voile.SceneGraph.Entity.OnUpdate(System.Double) + parent: Voile.SceneGraph.Entity + isExternal: true + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + name: OnUpdate(double) + nameWithType: Entity.OnUpdate(double) + fullName: Voile.SceneGraph.Entity.OnUpdate(double) + nameWithType.vb: Entity.OnUpdate(Double) + fullName.vb: Voile.SceneGraph.Entity.OnUpdate(Double) + name.vb: OnUpdate(Double) + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + name: OnInput(InputSystem) + nameWithType: Entity.OnInput(InputSystem) + fullName: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity.Destroy + commentId: M:Voile.SceneGraph.Entity.Destroy + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + name: Destroy() + nameWithType: Entity.Destroy() + fullName: Voile.SceneGraph.Entity.Destroy() + spec.csharp: + - uid: Voile.SceneGraph.Entity.Destroy + name: Destroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Destroy + name: Destroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.SceneGraph.Sprite2d.Texture* + commentId: Overload:Voile.SceneGraph.Sprite2d.Texture + href: Voile.SceneGraph.Sprite2d.html#Voile_SceneGraph_Sprite2d_Texture + name: Texture + nameWithType: Sprite2d.Texture + fullName: Voile.SceneGraph.Sprite2d.Texture +- uid: Voile.Texture2d + commentId: T:Voile.Texture2d + parent: Voile + href: Voile.Texture2d.html + name: Texture2d + nameWithType: Texture2d + fullName: Voile.Texture2d +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.SceneGraph.Entity.OnStart + commentId: M:Voile.SceneGraph.Entity.OnStart + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + name: OnStart() + nameWithType: Entity.OnStart() + fullName: Voile.SceneGraph.Entity.OnStart() + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnStart + name: OnStart + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnStart + name: OnStart + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + - name: ( + - name: ) +- uid: Voile.SceneGraph.Sprite2d.OnStart* + commentId: Overload:Voile.SceneGraph.Sprite2d.OnStart + href: Voile.SceneGraph.Sprite2d.html#Voile_SceneGraph_Sprite2d_OnStart + name: OnStart + nameWithType: Sprite2d.OnStart + fullName: Voile.SceneGraph.Sprite2d.OnStart +- uid: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Drawable2d + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_OnDraw_Voile_Rendering_RenderSystem_ + name: OnDraw(RenderSystem) + nameWithType: Drawable2d.OnDraw(RenderSystem) + fullName: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + name: OnDraw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_OnDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + name: OnDraw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_OnDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.Sprite2d.OnDraw* + commentId: Overload:Voile.SceneGraph.Sprite2d.OnDraw + href: Voile.SceneGraph.Sprite2d.html#Voile_SceneGraph_Sprite2d_OnDraw_Voile_Rendering_RenderSystem_ + name: OnDraw + nameWithType: Sprite2d.OnDraw + fullName: Voile.SceneGraph.Sprite2d.OnDraw +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html diff --git a/Voile/api/Voile.SceneGraph.Text2d.yml b/Voile/api/Voile.SceneGraph.Text2d.yml new file mode 100644 index 0000000..50cce0d --- /dev/null +++ b/Voile/api/Voile.SceneGraph.Text2d.yml @@ -0,0 +1,890 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph.Text2d + commentId: T:Voile.SceneGraph.Text2d + id: Text2d + parent: Voile.SceneGraph + children: + - Voile.SceneGraph.Text2d.#ctor(Voile.Font) + - Voile.SceneGraph.Text2d.Font + - Voile.SceneGraph.Text2d.FontColor + - Voile.SceneGraph.Text2d.OnDraw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Text2d.Text + langs: + - csharp + - vb + name: Text2d + nameWithType: Text2d + fullName: Voile.SceneGraph.Text2d + type: Class + source: + remote: + path: Voile/Source/SceneGraph/Entities/Text2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Text2d + path: Source/SceneGraph/Entities/Text2d.cs + startLine: 5 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: 'public class Text2d : Drawable2d, IDrawable' + content.vb: Public Class Text2d Inherits Drawable2d Implements IDrawable + inheritance: + - System.Object + - Voile.SceneGraph.Entity + - Voile.SceneGraph.Entity2d + - Voile.SceneGraph.Drawable2d + implements: + - Voile.SceneGraph.IDrawable + inheritedMembers: + - Voile.SceneGraph.Drawable2d.PivotOffset + - Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + - Voile.SceneGraph.Entity2d.Position + - Voile.SceneGraph.Entity2d.Rotation + - Voile.SceneGraph.Entity.Layer + - Voile.SceneGraph.Entity.Input + - Voile.SceneGraph.Entity.Audio + - Voile.SceneGraph.Entity.Renderer + - Voile.SceneGraph.Entity.Id + - Voile.SceneGraph.Entity.Start + - Voile.SceneGraph.Entity.Update(System.Double) + - Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Entity.OnStart + - Voile.SceneGraph.Entity.OnDestroy + - Voile.SceneGraph.Entity.OnUpdate(System.Double) + - Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + - Voile.SceneGraph.Entity.Destroy + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.SceneGraph.Text2d.Text + commentId: P:Voile.SceneGraph.Text2d.Text + id: Text + parent: Voile.SceneGraph.Text2d + langs: + - csharp + - vb + name: Text + nameWithType: Text2d.Text + fullName: Voile.SceneGraph.Text2d.Text + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Entities/Text2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Text + path: Source/SceneGraph/Entities/Text2d.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public string Text { get; set; } + parameters: [] + return: + type: System.String + content.vb: Public Property Text As String + overload: Voile.SceneGraph.Text2d.Text* +- uid: Voile.SceneGraph.Text2d.FontColor + commentId: P:Voile.SceneGraph.Text2d.FontColor + id: FontColor + parent: Voile.SceneGraph.Text2d + langs: + - csharp + - vb + name: FontColor + nameWithType: Text2d.FontColor + fullName: Voile.SceneGraph.Text2d.FontColor + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Entities/Text2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: FontColor + path: Source/SceneGraph/Entities/Text2d.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Color FontColor { get; set; } + parameters: [] + return: + type: Voile.Color + content.vb: Public Property FontColor As Color + overload: Voile.SceneGraph.Text2d.FontColor* +- uid: Voile.SceneGraph.Text2d.Font + commentId: P:Voile.SceneGraph.Text2d.Font + id: Font + parent: Voile.SceneGraph.Text2d + langs: + - csharp + - vb + name: Font + nameWithType: Text2d.Font + fullName: Voile.SceneGraph.Text2d.Font + type: Property + source: + remote: + path: Voile/Source/SceneGraph/Entities/Text2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Font + path: Source/SceneGraph/Entities/Text2d.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Font Font { get; set; } + parameters: [] + return: + type: Voile.Font + content.vb: Public Property Font As Font + overload: Voile.SceneGraph.Text2d.Font* +- uid: Voile.SceneGraph.Text2d.#ctor(Voile.Font) + commentId: M:Voile.SceneGraph.Text2d.#ctor(Voile.Font) + id: '#ctor(Voile.Font)' + parent: Voile.SceneGraph.Text2d + langs: + - csharp + - vb + name: Text2d(Font) + nameWithType: Text2d.Text2d(Font) + fullName: Voile.SceneGraph.Text2d.Text2d(Voile.Font) + type: Constructor + source: + remote: + path: Voile/Source/SceneGraph/Entities/Text2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/SceneGraph/Entities/Text2d.cs + startLine: 18 + assemblies: + - Voile + namespace: Voile.SceneGraph + syntax: + content: public Text2d(Font font) + parameters: + - id: font + type: Voile.Font + content.vb: Public Sub New(font As Font) + overload: Voile.SceneGraph.Text2d.#ctor* + nameWithType.vb: Text2d.New(Font) + fullName.vb: Voile.SceneGraph.Text2d.New(Voile.Font) + name.vb: New(Font) +- uid: Voile.SceneGraph.Text2d.OnDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Text2d.OnDraw(Voile.Rendering.RenderSystem) + id: OnDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Text2d + langs: + - csharp + - vb + name: OnDraw(RenderSystem) + nameWithType: Text2d.OnDraw(RenderSystem) + fullName: Voile.SceneGraph.Text2d.OnDraw(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/SceneGraph/Entities/Text2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnDraw + path: Source/SceneGraph/Entities/Text2d.cs + startLine: 23 + assemblies: + - Voile + namespace: Voile.SceneGraph + example: [] + syntax: + content: public override void OnDraw(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Public Overrides Sub OnDraw(renderer As RenderSystem) + overridden: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + overload: Voile.SceneGraph.Text2d.OnDraw* +references: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.SceneGraph.Entity + commentId: T:Voile.SceneGraph.Entity + parent: Voile.SceneGraph + href: Voile.SceneGraph.Entity.html + name: Entity + nameWithType: Entity + fullName: Voile.SceneGraph.Entity +- uid: Voile.SceneGraph.Entity2d + commentId: T:Voile.SceneGraph.Entity2d + parent: Voile.SceneGraph + href: Voile.SceneGraph.Entity2d.html + name: Entity2d + nameWithType: Entity2d + fullName: Voile.SceneGraph.Entity2d +- uid: Voile.SceneGraph.Drawable2d + commentId: T:Voile.SceneGraph.Drawable2d + parent: Voile.SceneGraph + href: Voile.SceneGraph.Drawable2d.html + name: Drawable2d + nameWithType: Drawable2d + fullName: Voile.SceneGraph.Drawable2d +- uid: Voile.SceneGraph.IDrawable + commentId: T:Voile.SceneGraph.IDrawable + parent: Voile.SceneGraph + href: Voile.SceneGraph.IDrawable.html + name: IDrawable + nameWithType: IDrawable + fullName: Voile.SceneGraph.IDrawable +- uid: Voile.SceneGraph.Drawable2d.PivotOffset + commentId: P:Voile.SceneGraph.Drawable2d.PivotOffset + parent: Voile.SceneGraph.Drawable2d + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_PivotOffset + name: PivotOffset + nameWithType: Drawable2d.PivotOffset + fullName: Voile.SceneGraph.Drawable2d.PivotOffset +- uid: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Drawable2d + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_Draw_Voile_Rendering_RenderSystem_ + name: Draw(RenderSystem) + nameWithType: Drawable2d.Draw(RenderSystem) + fullName: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Drawable2d.Draw(Voile.Rendering.RenderSystem) + name: Draw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_Draw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity2d.Position + commentId: P:Voile.SceneGraph.Entity2d.Position + parent: Voile.SceneGraph.Entity2d + href: Voile.SceneGraph.Entity2d.html#Voile_SceneGraph_Entity2d_Position + name: Position + nameWithType: Entity2d.Position + fullName: Voile.SceneGraph.Entity2d.Position +- uid: Voile.SceneGraph.Entity2d.Rotation + commentId: P:Voile.SceneGraph.Entity2d.Rotation + parent: Voile.SceneGraph.Entity2d + href: Voile.SceneGraph.Entity2d.html#Voile_SceneGraph_Entity2d_Rotation + name: Rotation + nameWithType: Entity2d.Rotation + fullName: Voile.SceneGraph.Entity2d.Rotation +- uid: Voile.SceneGraph.Entity.Layer + commentId: P:Voile.SceneGraph.Entity.Layer + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Layer + name: Layer + nameWithType: Entity.Layer + fullName: Voile.SceneGraph.Entity.Layer +- uid: Voile.SceneGraph.Entity.Input + commentId: P:Voile.SceneGraph.Entity.Input + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Input + name: Input + nameWithType: Entity.Input + fullName: Voile.SceneGraph.Entity.Input +- uid: Voile.SceneGraph.Entity.Audio + commentId: P:Voile.SceneGraph.Entity.Audio + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Audio + name: Audio + nameWithType: Entity.Audio + fullName: Voile.SceneGraph.Entity.Audio +- uid: Voile.SceneGraph.Entity.Renderer + commentId: P:Voile.SceneGraph.Entity.Renderer + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Renderer + name: Renderer + nameWithType: Entity.Renderer + fullName: Voile.SceneGraph.Entity.Renderer +- uid: Voile.SceneGraph.Entity.Id + commentId: P:Voile.SceneGraph.Entity.Id + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Id + name: Id + nameWithType: Entity.Id + fullName: Voile.SceneGraph.Entity.Id +- uid: Voile.SceneGraph.Entity.Start + commentId: M:Voile.SceneGraph.Entity.Start + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + name: Start() + nameWithType: Entity.Start() + fullName: Voile.SceneGraph.Entity.Start() + spec.csharp: + - uid: Voile.SceneGraph.Entity.Start + name: Start + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Start + name: Start + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Start + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.Update(System.Double) + commentId: M:Voile.SceneGraph.Entity.Update(System.Double) + parent: Voile.SceneGraph.Entity + isExternal: true + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + name: Update(double) + nameWithType: Entity.Update(double) + fullName: Voile.SceneGraph.Entity.Update(double) + nameWithType.vb: Entity.Update(Double) + fullName.vb: Voile.SceneGraph.Entity.Update(Double) + name.vb: Update(Double) + spec.csharp: + - uid: Voile.SceneGraph.Entity.Update(System.Double) + name: Update + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Update(System.Double) + name: Update + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Update_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + name: ReceiveInput(InputSystem) + nameWithType: Entity.ReceiveInput(InputSystem) + fullName: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.ReceiveInput(Voile.Input.InputSystem) + name: ReceiveInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_ReceiveInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity.OnStart + commentId: M:Voile.SceneGraph.Entity.OnStart + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + name: OnStart() + nameWithType: Entity.OnStart() + fullName: Voile.SceneGraph.Entity.OnStart() + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnStart + name: OnStart + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnStart + name: OnStart + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnStart + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.OnDestroy + commentId: M:Voile.SceneGraph.Entity.OnDestroy + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + name: OnDestroy() + nameWithType: Entity.OnDestroy() + fullName: Voile.SceneGraph.Entity.OnDestroy() + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnDestroy + name: OnDestroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnDestroy + name: OnDestroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnDestroy + - name: ( + - name: ) +- uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + commentId: M:Voile.SceneGraph.Entity.OnUpdate(System.Double) + parent: Voile.SceneGraph.Entity + isExternal: true + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + name: OnUpdate(double) + nameWithType: Entity.OnUpdate(double) + fullName: Voile.SceneGraph.Entity.OnUpdate(double) + nameWithType.vb: Entity.OnUpdate(Double) + fullName.vb: Voile.SceneGraph.Entity.OnUpdate(Double) + name.vb: OnUpdate(Double) + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnUpdate(System.Double) + name: OnUpdate + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnUpdate_System_Double_ + - name: ( + - uid: System.Double + name: Double + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.double + - name: ) +- uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + commentId: M:Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + name: OnInput(InputSystem) + nameWithType: Entity.OnInput(InputSystem) + fullName: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + spec.csharp: + - uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.OnInput(Voile.Input.InputSystem) + name: OnInput + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_OnInput_Voile_Input_InputSystem_ + - name: ( + - uid: Voile.Input.InputSystem + name: InputSystem + href: Voile.Input.InputSystem.html + - name: ) +- uid: Voile.SceneGraph.Entity.Destroy + commentId: M:Voile.SceneGraph.Entity.Destroy + parent: Voile.SceneGraph.Entity + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + name: Destroy() + nameWithType: Entity.Destroy() + fullName: Voile.SceneGraph.Entity.Destroy() + spec.csharp: + - uid: Voile.SceneGraph.Entity.Destroy + name: Destroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + - name: ( + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Entity.Destroy + name: Destroy + href: Voile.SceneGraph.Entity.html#Voile_SceneGraph_Entity_Destroy + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.SceneGraph.Text2d.Text* + commentId: Overload:Voile.SceneGraph.Text2d.Text + href: Voile.SceneGraph.Text2d.html#Voile_SceneGraph_Text2d_Text + name: Text + nameWithType: Text2d.Text + fullName: Voile.SceneGraph.Text2d.Text +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.SceneGraph.Text2d.FontColor* + commentId: Overload:Voile.SceneGraph.Text2d.FontColor + href: Voile.SceneGraph.Text2d.html#Voile_SceneGraph_Text2d_FontColor + name: FontColor + nameWithType: Text2d.FontColor + fullName: Voile.SceneGraph.Text2d.FontColor +- uid: Voile.Color + commentId: T:Voile.Color + parent: Voile + href: Voile.Color.html + name: Color + nameWithType: Color + fullName: Voile.Color +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.SceneGraph.Text2d.Font* + commentId: Overload:Voile.SceneGraph.Text2d.Font + href: Voile.SceneGraph.Text2d.html#Voile_SceneGraph_Text2d_Font + name: Font + nameWithType: Text2d.Font + fullName: Voile.SceneGraph.Text2d.Font +- uid: Voile.Font + commentId: T:Voile.Font + parent: Voile + href: Voile.Font.html + name: Font + nameWithType: Font + fullName: Voile.Font +- uid: Voile.SceneGraph.Text2d.#ctor* + commentId: Overload:Voile.SceneGraph.Text2d.#ctor + href: Voile.SceneGraph.Text2d.html#Voile_SceneGraph_Text2d__ctor_Voile_Font_ + name: Text2d + nameWithType: Text2d.Text2d + fullName: Voile.SceneGraph.Text2d.Text2d + nameWithType.vb: Text2d.New + fullName.vb: Voile.SceneGraph.Text2d.New + name.vb: New +- uid: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + commentId: M:Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + parent: Voile.SceneGraph.Drawable2d + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_OnDraw_Voile_Rendering_RenderSystem_ + name: OnDraw(RenderSystem) + nameWithType: Drawable2d.OnDraw(RenderSystem) + fullName: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + name: OnDraw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_OnDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.SceneGraph.Drawable2d.OnDraw(Voile.Rendering.RenderSystem) + name: OnDraw + href: Voile.SceneGraph.Drawable2d.html#Voile_SceneGraph_Drawable2d_OnDraw_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.SceneGraph.Text2d.OnDraw* + commentId: Overload:Voile.SceneGraph.Text2d.OnDraw + href: Voile.SceneGraph.Text2d.html#Voile_SceneGraph_Text2d_OnDraw_Voile_Rendering_RenderSystem_ + name: OnDraw + nameWithType: Text2d.OnDraw + fullName: Voile.SceneGraph.Text2d.OnDraw +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html diff --git a/Voile/api/Voile.SceneGraph.yml b/Voile/api/Voile.SceneGraph.yml new file mode 100644 index 0000000..de41601 --- /dev/null +++ b/Voile/api/Voile.SceneGraph.yml @@ -0,0 +1,197 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + id: Voile.SceneGraph + children: + - Voile.SceneGraph.Camera2d + - Voile.SceneGraph.CircleShape2d + - Voile.SceneGraph.Drawable2d + - Voile.SceneGraph.Entity + - Voile.SceneGraph.Entity2d + - Voile.SceneGraph.EntityLayer + - Voile.SceneGraph.IDrawable + - Voile.SceneGraph.IMainLoop + - Voile.SceneGraph.ImGuiController + - Voile.SceneGraph.ImGuiRenderLayer + - Voile.SceneGraph.Layer + - Voile.SceneGraph.Particle + - Voile.SceneGraph.ParticleSettings + - Voile.SceneGraph.Particles2d + - Voile.SceneGraph.RectangleShape2d + - Voile.SceneGraph.Scene + - Voile.SceneGraph.SceneSettings + - Voile.SceneGraph.SerializedScene + - Voile.SceneGraph.SerializedSceneSaver + - Voile.SceneGraph.Sprite2d + - Voile.SceneGraph.Text2d + langs: + - csharp + - vb + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + type: Namespace + assemblies: + - Voile +references: +- uid: Voile.SceneGraph.Camera2d + commentId: T:Voile.SceneGraph.Camera2d + parent: Voile.SceneGraph + href: Voile.SceneGraph.Camera2d.html + name: Camera2d + nameWithType: Camera2d + fullName: Voile.SceneGraph.Camera2d +- uid: Voile.SceneGraph.CircleShape2d + commentId: T:Voile.SceneGraph.CircleShape2d + href: Voile.SceneGraph.CircleShape2d.html + name: CircleShape2d + nameWithType: CircleShape2d + fullName: Voile.SceneGraph.CircleShape2d +- uid: Voile.SceneGraph.Drawable2d + commentId: T:Voile.SceneGraph.Drawable2d + parent: Voile.SceneGraph + href: Voile.SceneGraph.Drawable2d.html + name: Drawable2d + nameWithType: Drawable2d + fullName: Voile.SceneGraph.Drawable2d +- uid: Voile.SceneGraph.Entity + commentId: T:Voile.SceneGraph.Entity + parent: Voile.SceneGraph + href: Voile.SceneGraph.Entity.html + name: Entity + nameWithType: Entity + fullName: Voile.SceneGraph.Entity +- uid: Voile.SceneGraph.Entity2d + commentId: T:Voile.SceneGraph.Entity2d + parent: Voile.SceneGraph + href: Voile.SceneGraph.Entity2d.html + name: Entity2d + nameWithType: Entity2d + fullName: Voile.SceneGraph.Entity2d +- uid: Voile.SceneGraph.IDrawable + commentId: T:Voile.SceneGraph.IDrawable + parent: Voile.SceneGraph + href: Voile.SceneGraph.IDrawable.html + name: IDrawable + nameWithType: IDrawable + fullName: Voile.SceneGraph.IDrawable +- uid: Voile.SceneGraph.Particles2d + commentId: T:Voile.SceneGraph.Particles2d + href: Voile.SceneGraph.Particles2d.html + name: Particles2d + nameWithType: Particles2d + fullName: Voile.SceneGraph.Particles2d +- uid: Voile.SceneGraph.ParticleSettings + commentId: T:Voile.SceneGraph.ParticleSettings + parent: Voile.SceneGraph + href: Voile.SceneGraph.ParticleSettings.html + name: ParticleSettings + nameWithType: ParticleSettings + fullName: Voile.SceneGraph.ParticleSettings +- uid: Voile.SceneGraph.Particle + commentId: T:Voile.SceneGraph.Particle + href: Voile.SceneGraph.Particle.html + name: Particle + nameWithType: Particle + fullName: Voile.SceneGraph.Particle +- uid: Voile.SceneGraph.RectangleShape2d + commentId: T:Voile.SceneGraph.RectangleShape2d + href: Voile.SceneGraph.RectangleShape2d.html + name: RectangleShape2d + nameWithType: RectangleShape2d + fullName: Voile.SceneGraph.RectangleShape2d +- uid: Voile.SceneGraph.Sprite2d + commentId: T:Voile.SceneGraph.Sprite2d + href: Voile.SceneGraph.Sprite2d.html + name: Sprite2d + nameWithType: Sprite2d + fullName: Voile.SceneGraph.Sprite2d +- uid: Voile.SceneGraph.Text2d + commentId: T:Voile.SceneGraph.Text2d + href: Voile.SceneGraph.Text2d.html + name: Text2d + nameWithType: Text2d + fullName: Voile.SceneGraph.Text2d +- uid: Voile.SceneGraph.EntityLayer + commentId: T:Voile.SceneGraph.EntityLayer + parent: Voile.SceneGraph + href: Voile.SceneGraph.EntityLayer.html + name: EntityLayer + nameWithType: EntityLayer + fullName: Voile.SceneGraph.EntityLayer +- uid: Voile.SceneGraph.IMainLoop + commentId: T:Voile.SceneGraph.IMainLoop + parent: Voile.SceneGraph + href: Voile.SceneGraph.IMainLoop.html + name: IMainLoop + nameWithType: IMainLoop + fullName: Voile.SceneGraph.IMainLoop +- uid: Voile.SceneGraph.Layer + commentId: T:Voile.SceneGraph.Layer + parent: Voile.SceneGraph + href: Voile.SceneGraph.Layer.html + name: Layer + nameWithType: Layer + fullName: Voile.SceneGraph.Layer +- uid: Voile.SceneGraph.SerializedScene + commentId: T:Voile.SceneGraph.SerializedScene + parent: Voile.SceneGraph + href: Voile.SceneGraph.SerializedScene.html + name: SerializedScene + nameWithType: SerializedScene + fullName: Voile.SceneGraph.SerializedScene +- uid: Voile.SceneGraph.SerializedSceneSaver + commentId: T:Voile.SceneGraph.SerializedSceneSaver + href: Voile.SceneGraph.SerializedSceneSaver.html + name: SerializedSceneSaver + nameWithType: SerializedSceneSaver + fullName: Voile.SceneGraph.SerializedSceneSaver +- uid: Voile.SceneGraph.Scene + commentId: T:Voile.SceneGraph.Scene + parent: Voile.SceneGraph + href: Voile.SceneGraph.Scene.html + name: Scene + nameWithType: Scene + fullName: Voile.SceneGraph.Scene +- uid: Voile.SceneGraph.SceneSettings + commentId: T:Voile.SceneGraph.SceneSettings + parent: Voile.SceneGraph + href: Voile.SceneGraph.SceneSettings.html + name: SceneSettings + nameWithType: SceneSettings + fullName: Voile.SceneGraph.SceneSettings +- uid: Voile.SceneGraph.ImGuiRenderLayer + commentId: T:Voile.SceneGraph.ImGuiRenderLayer + href: Voile.SceneGraph.ImGuiRenderLayer.html + name: ImGuiRenderLayer + nameWithType: ImGuiRenderLayer + fullName: Voile.SceneGraph.ImGuiRenderLayer +- uid: Voile.SceneGraph.ImGuiController + commentId: T:Voile.SceneGraph.ImGuiController + href: Voile.SceneGraph.ImGuiController.html + name: ImGuiController + nameWithType: ImGuiController + fullName: Voile.SceneGraph.ImGuiController +- uid: Voile.SceneGraph + commentId: N:Voile.SceneGraph + href: Voile.html + name: Voile.SceneGraph + nameWithType: Voile.SceneGraph + fullName: Voile.SceneGraph + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.SceneGraph + name: SceneGraph + href: Voile.SceneGraph.html diff --git a/Voile/api/Voile.Sound.yml b/Voile/api/Voile.Sound.yml new file mode 100644 index 0000000..9c5a211 --- /dev/null +++ b/Voile/api/Voile.Sound.yml @@ -0,0 +1,520 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Sound + commentId: T:Voile.Sound + id: Sound + parent: Voile + children: + - Voile.Sound.#ctor(System.String,System.Byte[]) + - Voile.Sound.Format + - Voile.Sound.SampleRate + langs: + - csharp + - vb + name: Sound + nameWithType: Sound + fullName: Voile.Sound + type: Class + source: + remote: + path: Voile/Source/Resources/Sound.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Sound + path: Source/Resources/Sound.cs + startLine: 2 + assemblies: + - Voile + namespace: Voile + syntax: + content: 'public class Sound : Resource, IDisposable' + content.vb: Public Class Sound Inherits Resource Implements IDisposable + inheritance: + - System.Object + - Voile.Resource + implements: + - System.IDisposable + inheritedMembers: + - Voile.Resource.Guid + - Voile.Resource.Path + - Voile.Resource.Buffer + - Voile.Resource.BufferSize + - Voile.Resource.Dispose + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Sound.Format + commentId: P:Voile.Sound.Format + id: Format + parent: Voile.Sound + langs: + - csharp + - vb + name: Format + nameWithType: Sound.Format + fullName: Voile.Sound.Format + type: Property + source: + remote: + path: Voile/Source/Resources/Sound.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Format + path: Source/Resources/Sound.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile + syntax: + content: public SoundFormat Format { get; set; } + parameters: [] + return: + type: Voile.SoundFormat + content.vb: Public Property Format As SoundFormat + overload: Voile.Sound.Format* +- uid: Voile.Sound.SampleRate + commentId: P:Voile.Sound.SampleRate + id: SampleRate + parent: Voile.Sound + langs: + - csharp + - vb + name: SampleRate + nameWithType: Sound.SampleRate + fullName: Voile.Sound.SampleRate + type: Property + source: + remote: + path: Voile/Source/Resources/Sound.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SampleRate + path: Source/Resources/Sound.cs + startLine: 5 + assemblies: + - Voile + namespace: Voile + syntax: + content: public int SampleRate { get; set; } + parameters: [] + return: + type: System.Int32 + content.vb: Public Property SampleRate As Integer + overload: Voile.Sound.SampleRate* +- uid: Voile.Sound.#ctor(System.String,System.Byte[]) + commentId: M:Voile.Sound.#ctor(System.String,System.Byte[]) + id: '#ctor(System.String,System.Byte[])' + parent: Voile.Sound + langs: + - csharp + - vb + name: Sound(string, byte[]) + nameWithType: Sound.Sound(string, byte[]) + fullName: Voile.Sound.Sound(string, byte[]) + type: Constructor + source: + remote: + path: Voile/Source/Resources/Sound.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/Resources/Sound.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile + syntax: + content: public Sound(string path, byte[] buffer) + parameters: + - id: path + type: System.String + - id: buffer + type: System.Byte[] + content.vb: Public Sub New(path As String, buffer As Byte()) + overload: Voile.Sound.#ctor* + nameWithType.vb: Sound.New(String, Byte()) + fullName.vb: Voile.Sound.New(String, Byte()) + name.vb: New(String, Byte()) +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.Resource + commentId: T:Voile.Resource + parent: Voile + href: Voile.Resource.html + name: Resource + nameWithType: Resource + fullName: Voile.Resource +- uid: System.IDisposable + commentId: T:System.IDisposable + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable + name: IDisposable + nameWithType: IDisposable + fullName: System.IDisposable +- uid: Voile.Resource.Guid + commentId: P:Voile.Resource.Guid + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_Guid + name: Guid + nameWithType: Resource.Guid + fullName: Voile.Resource.Guid +- uid: Voile.Resource.Path + commentId: P:Voile.Resource.Path + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_Path + name: Path + nameWithType: Resource.Path + fullName: Voile.Resource.Path +- uid: Voile.Resource.Buffer + commentId: P:Voile.Resource.Buffer + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_Buffer + name: Buffer + nameWithType: Resource.Buffer + fullName: Voile.Resource.Buffer +- uid: Voile.Resource.BufferSize + commentId: P:Voile.Resource.BufferSize + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_BufferSize + name: BufferSize + nameWithType: Resource.BufferSize + fullName: Voile.Resource.BufferSize +- uid: Voile.Resource.Dispose + commentId: M:Voile.Resource.Dispose + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_Dispose + name: Dispose() + nameWithType: Resource.Dispose() + fullName: Voile.Resource.Dispose() + spec.csharp: + - uid: Voile.Resource.Dispose + name: Dispose + href: Voile.Resource.html#Voile_Resource_Dispose + - name: ( + - name: ) + spec.vb: + - uid: Voile.Resource.Dispose + name: Dispose + href: Voile.Resource.html#Voile_Resource_Dispose + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Sound.Format* + commentId: Overload:Voile.Sound.Format + href: Voile.Sound.html#Voile_Sound_Format + name: Format + nameWithType: Sound.Format + fullName: Voile.Sound.Format +- uid: Voile.SoundFormat + commentId: T:Voile.SoundFormat + parent: Voile + href: Voile.SoundFormat.html + name: SoundFormat + nameWithType: SoundFormat + fullName: Voile.SoundFormat +- uid: Voile.Sound.SampleRate* + commentId: Overload:Voile.Sound.SampleRate + href: Voile.Sound.html#Voile_Sound_SampleRate + name: SampleRate + nameWithType: Sound.SampleRate + fullName: Voile.Sound.SampleRate +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: Voile.Sound.#ctor* + commentId: Overload:Voile.Sound.#ctor + href: Voile.Sound.html#Voile_Sound__ctor_System_String_System_Byte___ + name: Sound + nameWithType: Sound.Sound + fullName: Voile.Sound.Sound + nameWithType.vb: Sound.New + fullName.vb: Voile.Sound.New + name.vb: New +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: System.Byte[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + name: byte[] + nameWithType: byte[] + fullName: byte[] + nameWithType.vb: Byte() + fullName.vb: Byte() + name.vb: Byte() + spec.csharp: + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '[' + - name: ']' + spec.vb: + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: ( + - name: ) diff --git a/Voile/api/Voile.SoundFormat.yml b/Voile/api/Voile.SoundFormat.yml new file mode 100644 index 0000000..e5ef453 --- /dev/null +++ b/Voile/api/Voile.SoundFormat.yml @@ -0,0 +1,96 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.SoundFormat + commentId: T:Voile.SoundFormat + id: SoundFormat + parent: Voile + children: + - Voile.SoundFormat.Mono + - Voile.SoundFormat.Stereo + langs: + - csharp + - vb + name: SoundFormat + nameWithType: SoundFormat + fullName: Voile.SoundFormat + type: Enum + source: + remote: + path: Voile/Source/Resources/Sound.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SoundFormat + path: Source/Resources/Sound.cs + startLine: 12 + assemblies: + - Voile + namespace: Voile + syntax: + content: public enum SoundFormat + content.vb: Public Enum SoundFormat +- uid: Voile.SoundFormat.Mono + commentId: F:Voile.SoundFormat.Mono + id: Mono + parent: Voile.SoundFormat + langs: + - csharp + - vb + name: Mono + nameWithType: SoundFormat.Mono + fullName: Voile.SoundFormat.Mono + type: Field + source: + remote: + path: Voile/Source/Resources/Sound.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Mono + path: Source/Resources/Sound.cs + startLine: 14 + assemblies: + - Voile + namespace: Voile + syntax: + content: Mono = 0 + return: + type: Voile.SoundFormat +- uid: Voile.SoundFormat.Stereo + commentId: F:Voile.SoundFormat.Stereo + id: Stereo + parent: Voile.SoundFormat + langs: + - csharp + - vb + name: Stereo + nameWithType: SoundFormat.Stereo + fullName: Voile.SoundFormat.Stereo + type: Field + source: + remote: + path: Voile/Source/Resources/Sound.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Stereo + path: Source/Resources/Sound.cs + startLine: 15 + assemblies: + - Voile + namespace: Voile + syntax: + content: Stereo = 1 + return: + type: Voile.SoundFormat +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.SoundFormat + commentId: T:Voile.SoundFormat + parent: Voile + href: Voile.SoundFormat.html + name: SoundFormat + nameWithType: SoundFormat + fullName: Voile.SoundFormat diff --git a/Voile/api/Voile.Texture2d.yml b/Voile/api/Voile.Texture2d.yml new file mode 100644 index 0000000..1161671 --- /dev/null +++ b/Voile/api/Voile.Texture2d.yml @@ -0,0 +1,635 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Texture2d + commentId: T:Voile.Texture2d + id: Texture2d + parent: Voile + children: + - Voile.Texture2d.#ctor(System.String,System.Byte[]) + - Voile.Texture2d.Empty + - Voile.Texture2d.Format + - Voile.Texture2d.Height + - Voile.Texture2d.Mipmaps + - Voile.Texture2d.Width + langs: + - csharp + - vb + name: Texture2d + nameWithType: Texture2d + fullName: Voile.Texture2d + type: Class + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Texture2d + path: Source/Resources/Texture2d.cs + startLine: 2 + assemblies: + - Voile + namespace: Voile + syntax: + content: 'public class Texture2d : Resource, IDisposable' + content.vb: Public Class Texture2d Inherits Resource Implements IDisposable + inheritance: + - System.Object + - Voile.Resource + implements: + - System.IDisposable + inheritedMembers: + - Voile.Resource.Guid + - Voile.Resource.Path + - Voile.Resource.Buffer + - Voile.Resource.BufferSize + - Voile.Resource.Dispose + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Texture2d.Width + commentId: P:Voile.Texture2d.Width + id: Width + parent: Voile.Texture2d + langs: + - csharp + - vb + name: Width + nameWithType: Texture2d.Width + fullName: Voile.Texture2d.Width + type: Property + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Width + path: Source/Resources/Texture2d.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile + syntax: + content: public int Width { get; set; } + parameters: [] + return: + type: System.Int32 + content.vb: Public Property Width As Integer + overload: Voile.Texture2d.Width* +- uid: Voile.Texture2d.Height + commentId: P:Voile.Texture2d.Height + id: Height + parent: Voile.Texture2d + langs: + - csharp + - vb + name: Height + nameWithType: Texture2d.Height + fullName: Voile.Texture2d.Height + type: Property + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Height + path: Source/Resources/Texture2d.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile + syntax: + content: public int Height { get; set; } + parameters: [] + return: + type: System.Int32 + content.vb: Public Property Height As Integer + overload: Voile.Texture2d.Height* +- uid: Voile.Texture2d.Mipmaps + commentId: P:Voile.Texture2d.Mipmaps + id: Mipmaps + parent: Voile.Texture2d + langs: + - csharp + - vb + name: Mipmaps + nameWithType: Texture2d.Mipmaps + fullName: Voile.Texture2d.Mipmaps + type: Property + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Mipmaps + path: Source/Resources/Texture2d.cs + startLine: 10 + assemblies: + - Voile + namespace: Voile + syntax: + content: public int Mipmaps { get; set; } + parameters: [] + return: + type: System.Int32 + content.vb: Public Property Mipmaps As Integer + overload: Voile.Texture2d.Mipmaps* +- uid: Voile.Texture2d.Format + commentId: P:Voile.Texture2d.Format + id: Format + parent: Voile.Texture2d + langs: + - csharp + - vb + name: Format + nameWithType: Texture2d.Format + fullName: Voile.Texture2d.Format + type: Property + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Format + path: Source/Resources/Texture2d.cs + startLine: 11 + assemblies: + - Voile + namespace: Voile + syntax: + content: public TextureFormat Format { get; set; } + parameters: [] + return: + type: Voile.TextureFormat + content.vb: Public Property Format As TextureFormat + overload: Voile.Texture2d.Format* +- uid: Voile.Texture2d.#ctor(System.String,System.Byte[]) + commentId: M:Voile.Texture2d.#ctor(System.String,System.Byte[]) + id: '#ctor(System.String,System.Byte[])' + parent: Voile.Texture2d + langs: + - csharp + - vb + name: Texture2d(string, byte[]) + nameWithType: Texture2d.Texture2d(string, byte[]) + fullName: Voile.Texture2d.Texture2d(string, byte[]) + type: Constructor + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/Resources/Texture2d.cs + startLine: 12 + assemblies: + - Voile + namespace: Voile + syntax: + content: public Texture2d(string path, byte[] buffer) + parameters: + - id: path + type: System.String + - id: buffer + type: System.Byte[] + content.vb: Public Sub New(path As String, buffer As Byte()) + overload: Voile.Texture2d.#ctor* + nameWithType.vb: Texture2d.New(String, Byte()) + fullName.vb: Voile.Texture2d.New(String, Byte()) + name.vb: New(String, Byte()) +- uid: Voile.Texture2d.Empty + commentId: P:Voile.Texture2d.Empty + id: Empty + parent: Voile.Texture2d + langs: + - csharp + - vb + name: Empty + nameWithType: Texture2d.Empty + fullName: Voile.Texture2d.Empty + type: Property + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Empty + path: Source/Resources/Texture2d.cs + startLine: 16 + assemblies: + - Voile + namespace: Voile + syntax: + content: public static Texture2d Empty { get; } + parameters: [] + return: + type: Voile.Texture2d + content.vb: Public Shared ReadOnly Property Empty As Texture2d + overload: Voile.Texture2d.Empty* +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.Resource + commentId: T:Voile.Resource + parent: Voile + href: Voile.Resource.html + name: Resource + nameWithType: Resource + fullName: Voile.Resource +- uid: System.IDisposable + commentId: T:System.IDisposable + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.idisposable + name: IDisposable + nameWithType: IDisposable + fullName: System.IDisposable +- uid: Voile.Resource.Guid + commentId: P:Voile.Resource.Guid + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_Guid + name: Guid + nameWithType: Resource.Guid + fullName: Voile.Resource.Guid +- uid: Voile.Resource.Path + commentId: P:Voile.Resource.Path + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_Path + name: Path + nameWithType: Resource.Path + fullName: Voile.Resource.Path +- uid: Voile.Resource.Buffer + commentId: P:Voile.Resource.Buffer + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_Buffer + name: Buffer + nameWithType: Resource.Buffer + fullName: Voile.Resource.Buffer +- uid: Voile.Resource.BufferSize + commentId: P:Voile.Resource.BufferSize + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_BufferSize + name: BufferSize + nameWithType: Resource.BufferSize + fullName: Voile.Resource.BufferSize +- uid: Voile.Resource.Dispose + commentId: M:Voile.Resource.Dispose + parent: Voile.Resource + href: Voile.Resource.html#Voile_Resource_Dispose + name: Dispose() + nameWithType: Resource.Dispose() + fullName: Voile.Resource.Dispose() + spec.csharp: + - uid: Voile.Resource.Dispose + name: Dispose + href: Voile.Resource.html#Voile_Resource_Dispose + - name: ( + - name: ) + spec.vb: + - uid: Voile.Resource.Dispose + name: Dispose + href: Voile.Resource.html#Voile_Resource_Dispose + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Texture2d.Width* + commentId: Overload:Voile.Texture2d.Width + href: Voile.Texture2d.html#Voile_Texture2d_Width + name: Width + nameWithType: Texture2d.Width + fullName: Voile.Texture2d.Width +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: Voile.Texture2d.Height* + commentId: Overload:Voile.Texture2d.Height + href: Voile.Texture2d.html#Voile_Texture2d_Height + name: Height + nameWithType: Texture2d.Height + fullName: Voile.Texture2d.Height +- uid: Voile.Texture2d.Mipmaps* + commentId: Overload:Voile.Texture2d.Mipmaps + href: Voile.Texture2d.html#Voile_Texture2d_Mipmaps + name: Mipmaps + nameWithType: Texture2d.Mipmaps + fullName: Voile.Texture2d.Mipmaps +- uid: Voile.Texture2d.Format* + commentId: Overload:Voile.Texture2d.Format + href: Voile.Texture2d.html#Voile_Texture2d_Format + name: Format + nameWithType: Texture2d.Format + fullName: Voile.Texture2d.Format +- uid: Voile.TextureFormat + commentId: T:Voile.TextureFormat + parent: Voile + href: Voile.TextureFormat.html + name: TextureFormat + nameWithType: TextureFormat + fullName: Voile.TextureFormat +- uid: Voile.Texture2d.#ctor* + commentId: Overload:Voile.Texture2d.#ctor + href: Voile.Texture2d.html#Voile_Texture2d__ctor_System_String_System_Byte___ + name: Texture2d + nameWithType: Texture2d.Texture2d + fullName: Voile.Texture2d.Texture2d + nameWithType.vb: Texture2d.New + fullName.vb: Voile.Texture2d.New + name.vb: New +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: System.Byte[] + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + name: byte[] + nameWithType: byte[] + fullName: byte[] + nameWithType.vb: Byte() + fullName.vb: Byte() + name.vb: Byte() + spec.csharp: + - uid: System.Byte + name: byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: '[' + - name: ']' + spec.vb: + - uid: System.Byte + name: Byte + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.byte + - name: ( + - name: ) +- uid: Voile.Texture2d.Empty* + commentId: Overload:Voile.Texture2d.Empty + href: Voile.Texture2d.html#Voile_Texture2d_Empty + name: Empty + nameWithType: Texture2d.Empty + fullName: Voile.Texture2d.Empty +- uid: Voile.Texture2d + commentId: T:Voile.Texture2d + parent: Voile + href: Voile.Texture2d.html + name: Texture2d + nameWithType: Texture2d + fullName: Voile.Texture2d diff --git a/Voile/api/Voile.Texture2dLoader.yml b/Voile/api/Voile.Texture2dLoader.yml new file mode 100644 index 0000000..f677a2a --- /dev/null +++ b/Voile/api/Voile.Texture2dLoader.yml @@ -0,0 +1,642 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Texture2dLoader + commentId: T:Voile.Texture2dLoader + id: Texture2dLoader + parent: Voile + children: + - Voile.Texture2dLoader.Load(System.String) + - Voile.Texture2dLoader.SupportedExtensions + langs: + - csharp + - vb + name: Texture2dLoader + nameWithType: Texture2dLoader + fullName: Voile.Texture2dLoader + type: Class + source: + remote: + path: Voile/Source/Resources/Loaders/Texture2dLoader.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Texture2dLoader + path: Source/Resources/Loaders/Texture2dLoader.cs + startLine: 5 + assemblies: + - Voile + namespace: Voile + syntax: + content: 'public class Texture2dLoader : IResourceLoader' + content.vb: Public Class Texture2dLoader Implements IResourceLoader(Of Texture2d) + inheritance: + - System.Object + implements: + - Voile.Resources.IResourceLoader{Voile.Texture2d} + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Texture2dLoader.SupportedExtensions + commentId: P:Voile.Texture2dLoader.SupportedExtensions + id: SupportedExtensions + parent: Voile.Texture2dLoader + langs: + - csharp + - vb + name: SupportedExtensions + nameWithType: Texture2dLoader.SupportedExtensions + fullName: Voile.Texture2dLoader.SupportedExtensions + type: Property + source: + remote: + path: Voile/Source/Resources/Loaders/Texture2dLoader.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SupportedExtensions + path: Source/Resources/Loaders/Texture2dLoader.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public IEnumerable SupportedExtensions { get; } + parameters: [] + return: + type: System.Collections.Generic.IEnumerable{System.String} + content.vb: Public ReadOnly Property SupportedExtensions As IEnumerable(Of String) + overload: Voile.Texture2dLoader.SupportedExtensions* + implements: + - Voile.Resources.IResourceLoader{Voile.Texture2d}.SupportedExtensions +- uid: Voile.Texture2dLoader.Load(System.String) + commentId: M:Voile.Texture2dLoader.Load(System.String) + id: Load(System.String) + parent: Voile.Texture2dLoader + langs: + - csharp + - vb + name: Load(string) + nameWithType: Texture2dLoader.Load(string) + fullName: Voile.Texture2dLoader.Load(string) + type: Method + source: + remote: + path: Voile/Source/Resources/Loaders/Texture2dLoader.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Load + path: Source/Resources/Loaders/Texture2dLoader.cs + startLine: 14 + assemblies: + - Voile + namespace: Voile + example: [] + syntax: + content: public Texture2d Load(string path) + parameters: + - id: path + type: System.String + return: + type: Voile.Texture2d + content.vb: Public Function Load(path As String) As Texture2d + overload: Voile.Texture2dLoader.Load* + implements: + - Voile.Resources.IResourceLoader{Voile.Texture2d}.Load(System.String) + nameWithType.vb: Texture2dLoader.Load(String) + fullName.vb: Voile.Texture2dLoader.Load(String) + name.vb: Load(String) +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.Resources.IResourceLoader{Voile.Texture2d} + commentId: T:Voile.Resources.IResourceLoader{Voile.Texture2d} + parent: Voile.Resources + definition: Voile.Resources.IResourceLoader`1 + href: Voile.Resources.IResourceLoader-1.html + name: IResourceLoader + nameWithType: IResourceLoader + fullName: Voile.Resources.IResourceLoader + nameWithType.vb: IResourceLoader(Of Texture2d) + fullName.vb: Voile.Resources.IResourceLoader(Of Voile.Texture2d) + name.vb: IResourceLoader(Of Texture2d) + spec.csharp: + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + href: Voile.Resources.IResourceLoader-1.html + - name: < + - uid: Voile.Texture2d + name: Texture2d + href: Voile.Texture2d.html + - name: '>' + spec.vb: + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + href: Voile.Resources.IResourceLoader-1.html + - name: ( + - name: Of + - name: " " + - uid: Voile.Texture2d + name: Texture2d + href: Voile.Texture2d.html + - name: ) +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.Resources.IResourceLoader`1 + commentId: T:Voile.Resources.IResourceLoader`1 + href: Voile.Resources.IResourceLoader-1.html + name: IResourceLoader + nameWithType: IResourceLoader + fullName: Voile.Resources.IResourceLoader + nameWithType.vb: IResourceLoader(Of T) + fullName.vb: Voile.Resources.IResourceLoader(Of T) + name.vb: IResourceLoader(Of T) + spec.csharp: + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + href: Voile.Resources.IResourceLoader-1.html + - name: < + - name: T + - name: '>' + spec.vb: + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + href: Voile.Resources.IResourceLoader-1.html + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: Voile.Resources + commentId: N:Voile.Resources + href: Voile.html + name: Voile.Resources + nameWithType: Voile.Resources + fullName: Voile.Resources + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Resources + name: Resources + href: Voile.Resources.html +- uid: Voile.Texture2dLoader.SupportedExtensions* + commentId: Overload:Voile.Texture2dLoader.SupportedExtensions + href: Voile.Texture2dLoader.html#Voile_Texture2dLoader_SupportedExtensions + name: SupportedExtensions + nameWithType: Texture2dLoader.SupportedExtensions + fullName: Voile.Texture2dLoader.SupportedExtensions +- uid: Voile.Resources.IResourceLoader{Voile.Texture2d}.SupportedExtensions + commentId: P:Voile.Resources.IResourceLoader{Voile.Texture2d}.SupportedExtensions + parent: Voile.Resources.IResourceLoader{Voile.Texture2d} + definition: Voile.Resources.IResourceLoader`1.SupportedExtensions + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_SupportedExtensions + name: SupportedExtensions + nameWithType: IResourceLoader.SupportedExtensions + fullName: Voile.Resources.IResourceLoader.SupportedExtensions + nameWithType.vb: IResourceLoader(Of Texture2d).SupportedExtensions + fullName.vb: Voile.Resources.IResourceLoader(Of Voile.Texture2d).SupportedExtensions +- uid: System.Collections.Generic.IEnumerable{System.String} + commentId: T:System.Collections.Generic.IEnumerable{System.String} + parent: System.Collections.Generic + definition: System.Collections.Generic.IEnumerable`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + name: IEnumerable + nameWithType: IEnumerable + fullName: System.Collections.Generic.IEnumerable + nameWithType.vb: IEnumerable(Of String) + fullName.vb: System.Collections.Generic.IEnumerable(Of String) + name.vb: IEnumerable(Of String) + spec.csharp: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: Voile.Resources.IResourceLoader`1.SupportedExtensions + commentId: P:Voile.Resources.IResourceLoader`1.SupportedExtensions + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_SupportedExtensions + name: SupportedExtensions + nameWithType: IResourceLoader.SupportedExtensions + fullName: Voile.Resources.IResourceLoader.SupportedExtensions + nameWithType.vb: IResourceLoader(Of T).SupportedExtensions + fullName.vb: Voile.Resources.IResourceLoader(Of T).SupportedExtensions +- uid: System.Collections.Generic.IEnumerable`1 + commentId: T:System.Collections.Generic.IEnumerable`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + name: IEnumerable + nameWithType: IEnumerable + fullName: System.Collections.Generic.IEnumerable + nameWithType.vb: IEnumerable(Of T) + fullName.vb: System.Collections.Generic.IEnumerable(Of T) + name.vb: IEnumerable(Of T) + spec.csharp: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.IEnumerable`1 + name: IEnumerable + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic +- uid: Voile.Texture2dLoader.Load* + commentId: Overload:Voile.Texture2dLoader.Load + href: Voile.Texture2dLoader.html#Voile_Texture2dLoader_Load_System_String_ + name: Load + nameWithType: Texture2dLoader.Load + fullName: Voile.Texture2dLoader.Load +- uid: Voile.Resources.IResourceLoader{Voile.Texture2d}.Load(System.String) + commentId: M:Voile.Resources.IResourceLoader{Voile.Texture2d}.Load(System.String) + parent: Voile.Resources.IResourceLoader{Voile.Texture2d} + definition: Voile.Resources.IResourceLoader`1.Load(System.String) + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + name: Load(string) + nameWithType: IResourceLoader.Load(string) + fullName: Voile.Resources.IResourceLoader.Load(string) + nameWithType.vb: IResourceLoader(Of Texture2d).Load(String) + fullName.vb: Voile.Resources.IResourceLoader(Of Voile.Texture2d).Load(String) + name.vb: Load(String) + spec.csharp: + - uid: Voile.Resources.IResourceLoader{Voile.Texture2d}.Load(System.String) + name: Load + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Resources.IResourceLoader{Voile.Texture2d}.Load(System.String) + name: Load + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.Texture2d + commentId: T:Voile.Texture2d + parent: Voile + href: Voile.Texture2d.html + name: Texture2d + nameWithType: Texture2d + fullName: Voile.Texture2d +- uid: Voile.Resources.IResourceLoader`1.Load(System.String) + commentId: M:Voile.Resources.IResourceLoader`1.Load(System.String) + isExternal: true + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + name: Load(string) + nameWithType: IResourceLoader.Load(string) + fullName: Voile.Resources.IResourceLoader.Load(string) + nameWithType.vb: IResourceLoader(Of T).Load(String) + fullName.vb: Voile.Resources.IResourceLoader(Of T).Load(String) + name.vb: Load(String) + spec.csharp: + - uid: Voile.Resources.IResourceLoader`1.Load(System.String) + name: Load + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + - name: ( + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) + spec.vb: + - uid: Voile.Resources.IResourceLoader`1.Load(System.String) + name: Load + href: Voile.Resources.IResourceLoader-1.html#Voile_Resources_IResourceLoader_1_Load_System_String_ + - name: ( + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ) diff --git a/Voile/api/Voile.TextureFormat.yml b/Voile/api/Voile.TextureFormat.yml new file mode 100644 index 0000000..74cfd28 --- /dev/null +++ b/Voile/api/Voile.TextureFormat.yml @@ -0,0 +1,609 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.TextureFormat + commentId: T:Voile.TextureFormat + id: TextureFormat + parent: Voile + children: + - Voile.TextureFormat.CompressedASTC4x4Rgba + - Voile.TextureFormat.CompressedASTC8x8Rgba + - Voile.TextureFormat.CompressedDXT1Rgb + - Voile.TextureFormat.CompressedDXT1Rgba + - Voile.TextureFormat.CompressedDXT3Rgba + - Voile.TextureFormat.CompressedDXT5Rgba + - Voile.TextureFormat.CompressedETC1Rgb + - Voile.TextureFormat.CompressedETC2EACRgba + - Voile.TextureFormat.CompressedETC2Rgb + - Voile.TextureFormat.CompressedPVRTRgb + - Voile.TextureFormat.CompressedPVRTRgba + - Voile.TextureFormat.UncompressedGrayAlpha + - Voile.TextureFormat.UncompressedGrayscale + - Voile.TextureFormat.UncompressedR32 + - Voile.TextureFormat.UncompressedR32G32B32 + - Voile.TextureFormat.UncompressedR32G32B32A32 + - Voile.TextureFormat.UncompressedR4G4B4A4 + - Voile.TextureFormat.UncompressedR5G5B5A1 + - Voile.TextureFormat.UncompressedR5G6B5 + - Voile.TextureFormat.UncompressedR8G8B8 + - Voile.TextureFormat.UncompressedR8G8B8A8 + langs: + - csharp + - vb + name: TextureFormat + nameWithType: TextureFormat + fullName: Voile.TextureFormat + type: Enum + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: TextureFormat + path: Source/Resources/Texture2d.cs + startLine: 19 + assemblies: + - Voile + namespace: Voile + syntax: + content: public enum TextureFormat + content.vb: Public Enum TextureFormat +- uid: Voile.TextureFormat.UncompressedGrayscale + commentId: F:Voile.TextureFormat.UncompressedGrayscale + id: UncompressedGrayscale + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: UncompressedGrayscale + nameWithType: TextureFormat.UncompressedGrayscale + fullName: Voile.TextureFormat.UncompressedGrayscale + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: UncompressedGrayscale + path: Source/Resources/Texture2d.cs + startLine: 21 + assemblies: + - Voile + namespace: Voile + syntax: + content: UncompressedGrayscale = 1 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.UncompressedGrayAlpha + commentId: F:Voile.TextureFormat.UncompressedGrayAlpha + id: UncompressedGrayAlpha + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: UncompressedGrayAlpha + nameWithType: TextureFormat.UncompressedGrayAlpha + fullName: Voile.TextureFormat.UncompressedGrayAlpha + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: UncompressedGrayAlpha + path: Source/Resources/Texture2d.cs + startLine: 22 + assemblies: + - Voile + namespace: Voile + syntax: + content: UncompressedGrayAlpha = 2 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.UncompressedR5G6B5 + commentId: F:Voile.TextureFormat.UncompressedR5G6B5 + id: UncompressedR5G6B5 + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: UncompressedR5G6B5 + nameWithType: TextureFormat.UncompressedR5G6B5 + fullName: Voile.TextureFormat.UncompressedR5G6B5 + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: UncompressedR5G6B5 + path: Source/Resources/Texture2d.cs + startLine: 23 + assemblies: + - Voile + namespace: Voile + syntax: + content: UncompressedR5G6B5 = 3 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.UncompressedR8G8B8 + commentId: F:Voile.TextureFormat.UncompressedR8G8B8 + id: UncompressedR8G8B8 + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: UncompressedR8G8B8 + nameWithType: TextureFormat.UncompressedR8G8B8 + fullName: Voile.TextureFormat.UncompressedR8G8B8 + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: UncompressedR8G8B8 + path: Source/Resources/Texture2d.cs + startLine: 24 + assemblies: + - Voile + namespace: Voile + syntax: + content: UncompressedR8G8B8 = 4 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.UncompressedR5G5B5A1 + commentId: F:Voile.TextureFormat.UncompressedR5G5B5A1 + id: UncompressedR5G5B5A1 + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: UncompressedR5G5B5A1 + nameWithType: TextureFormat.UncompressedR5G5B5A1 + fullName: Voile.TextureFormat.UncompressedR5G5B5A1 + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: UncompressedR5G5B5A1 + path: Source/Resources/Texture2d.cs + startLine: 25 + assemblies: + - Voile + namespace: Voile + syntax: + content: UncompressedR5G5B5A1 = 5 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.UncompressedR4G4B4A4 + commentId: F:Voile.TextureFormat.UncompressedR4G4B4A4 + id: UncompressedR4G4B4A4 + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: UncompressedR4G4B4A4 + nameWithType: TextureFormat.UncompressedR4G4B4A4 + fullName: Voile.TextureFormat.UncompressedR4G4B4A4 + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: UncompressedR4G4B4A4 + path: Source/Resources/Texture2d.cs + startLine: 26 + assemblies: + - Voile + namespace: Voile + syntax: + content: UncompressedR4G4B4A4 = 6 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.UncompressedR8G8B8A8 + commentId: F:Voile.TextureFormat.UncompressedR8G8B8A8 + id: UncompressedR8G8B8A8 + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: UncompressedR8G8B8A8 + nameWithType: TextureFormat.UncompressedR8G8B8A8 + fullName: Voile.TextureFormat.UncompressedR8G8B8A8 + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: UncompressedR8G8B8A8 + path: Source/Resources/Texture2d.cs + startLine: 27 + assemblies: + - Voile + namespace: Voile + syntax: + content: UncompressedR8G8B8A8 = 7 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.UncompressedR32 + commentId: F:Voile.TextureFormat.UncompressedR32 + id: UncompressedR32 + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: UncompressedR32 + nameWithType: TextureFormat.UncompressedR32 + fullName: Voile.TextureFormat.UncompressedR32 + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: UncompressedR32 + path: Source/Resources/Texture2d.cs + startLine: 28 + assemblies: + - Voile + namespace: Voile + syntax: + content: UncompressedR32 = 8 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.UncompressedR32G32B32 + commentId: F:Voile.TextureFormat.UncompressedR32G32B32 + id: UncompressedR32G32B32 + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: UncompressedR32G32B32 + nameWithType: TextureFormat.UncompressedR32G32B32 + fullName: Voile.TextureFormat.UncompressedR32G32B32 + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: UncompressedR32G32B32 + path: Source/Resources/Texture2d.cs + startLine: 29 + assemblies: + - Voile + namespace: Voile + syntax: + content: UncompressedR32G32B32 = 9 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.UncompressedR32G32B32A32 + commentId: F:Voile.TextureFormat.UncompressedR32G32B32A32 + id: UncompressedR32G32B32A32 + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: UncompressedR32G32B32A32 + nameWithType: TextureFormat.UncompressedR32G32B32A32 + fullName: Voile.TextureFormat.UncompressedR32G32B32A32 + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: UncompressedR32G32B32A32 + path: Source/Resources/Texture2d.cs + startLine: 30 + assemblies: + - Voile + namespace: Voile + syntax: + content: UncompressedR32G32B32A32 = 10 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.CompressedDXT1Rgb + commentId: F:Voile.TextureFormat.CompressedDXT1Rgb + id: CompressedDXT1Rgb + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: CompressedDXT1Rgb + nameWithType: TextureFormat.CompressedDXT1Rgb + fullName: Voile.TextureFormat.CompressedDXT1Rgb + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CompressedDXT1Rgb + path: Source/Resources/Texture2d.cs + startLine: 31 + assemblies: + - Voile + namespace: Voile + syntax: + content: CompressedDXT1Rgb = 11 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.CompressedDXT1Rgba + commentId: F:Voile.TextureFormat.CompressedDXT1Rgba + id: CompressedDXT1Rgba + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: CompressedDXT1Rgba + nameWithType: TextureFormat.CompressedDXT1Rgba + fullName: Voile.TextureFormat.CompressedDXT1Rgba + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CompressedDXT1Rgba + path: Source/Resources/Texture2d.cs + startLine: 32 + assemblies: + - Voile + namespace: Voile + syntax: + content: CompressedDXT1Rgba = 12 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.CompressedDXT3Rgba + commentId: F:Voile.TextureFormat.CompressedDXT3Rgba + id: CompressedDXT3Rgba + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: CompressedDXT3Rgba + nameWithType: TextureFormat.CompressedDXT3Rgba + fullName: Voile.TextureFormat.CompressedDXT3Rgba + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CompressedDXT3Rgba + path: Source/Resources/Texture2d.cs + startLine: 33 + assemblies: + - Voile + namespace: Voile + syntax: + content: CompressedDXT3Rgba = 13 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.CompressedDXT5Rgba + commentId: F:Voile.TextureFormat.CompressedDXT5Rgba + id: CompressedDXT5Rgba + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: CompressedDXT5Rgba + nameWithType: TextureFormat.CompressedDXT5Rgba + fullName: Voile.TextureFormat.CompressedDXT5Rgba + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CompressedDXT5Rgba + path: Source/Resources/Texture2d.cs + startLine: 34 + assemblies: + - Voile + namespace: Voile + syntax: + content: CompressedDXT5Rgba = 14 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.CompressedETC1Rgb + commentId: F:Voile.TextureFormat.CompressedETC1Rgb + id: CompressedETC1Rgb + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: CompressedETC1Rgb + nameWithType: TextureFormat.CompressedETC1Rgb + fullName: Voile.TextureFormat.CompressedETC1Rgb + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CompressedETC1Rgb + path: Source/Resources/Texture2d.cs + startLine: 35 + assemblies: + - Voile + namespace: Voile + syntax: + content: CompressedETC1Rgb = 15 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.CompressedETC2Rgb + commentId: F:Voile.TextureFormat.CompressedETC2Rgb + id: CompressedETC2Rgb + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: CompressedETC2Rgb + nameWithType: TextureFormat.CompressedETC2Rgb + fullName: Voile.TextureFormat.CompressedETC2Rgb + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CompressedETC2Rgb + path: Source/Resources/Texture2d.cs + startLine: 36 + assemblies: + - Voile + namespace: Voile + syntax: + content: CompressedETC2Rgb = 16 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.CompressedETC2EACRgba + commentId: F:Voile.TextureFormat.CompressedETC2EACRgba + id: CompressedETC2EACRgba + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: CompressedETC2EACRgba + nameWithType: TextureFormat.CompressedETC2EACRgba + fullName: Voile.TextureFormat.CompressedETC2EACRgba + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CompressedETC2EACRgba + path: Source/Resources/Texture2d.cs + startLine: 37 + assemblies: + - Voile + namespace: Voile + syntax: + content: CompressedETC2EACRgba = 17 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.CompressedPVRTRgb + commentId: F:Voile.TextureFormat.CompressedPVRTRgb + id: CompressedPVRTRgb + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: CompressedPVRTRgb + nameWithType: TextureFormat.CompressedPVRTRgb + fullName: Voile.TextureFormat.CompressedPVRTRgb + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CompressedPVRTRgb + path: Source/Resources/Texture2d.cs + startLine: 38 + assemblies: + - Voile + namespace: Voile + syntax: + content: CompressedPVRTRgb = 18 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.CompressedPVRTRgba + commentId: F:Voile.TextureFormat.CompressedPVRTRgba + id: CompressedPVRTRgba + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: CompressedPVRTRgba + nameWithType: TextureFormat.CompressedPVRTRgba + fullName: Voile.TextureFormat.CompressedPVRTRgba + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CompressedPVRTRgba + path: Source/Resources/Texture2d.cs + startLine: 39 + assemblies: + - Voile + namespace: Voile + syntax: + content: CompressedPVRTRgba = 19 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.CompressedASTC4x4Rgba + commentId: F:Voile.TextureFormat.CompressedASTC4x4Rgba + id: CompressedASTC4x4Rgba + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: CompressedASTC4x4Rgba + nameWithType: TextureFormat.CompressedASTC4x4Rgba + fullName: Voile.TextureFormat.CompressedASTC4x4Rgba + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CompressedASTC4x4Rgba + path: Source/Resources/Texture2d.cs + startLine: 40 + assemblies: + - Voile + namespace: Voile + syntax: + content: CompressedASTC4x4Rgba = 20 + return: + type: Voile.TextureFormat +- uid: Voile.TextureFormat.CompressedASTC8x8Rgba + commentId: F:Voile.TextureFormat.CompressedASTC8x8Rgba + id: CompressedASTC8x8Rgba + parent: Voile.TextureFormat + langs: + - csharp + - vb + name: CompressedASTC8x8Rgba + nameWithType: TextureFormat.CompressedASTC8x8Rgba + fullName: Voile.TextureFormat.CompressedASTC8x8Rgba + type: Field + source: + remote: + path: Voile/Source/Resources/Texture2d.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: CompressedASTC8x8Rgba + path: Source/Resources/Texture2d.cs + startLine: 41 + assemblies: + - Voile + namespace: Voile + syntax: + content: CompressedASTC8x8Rgba = 21 + return: + type: Voile.TextureFormat +references: +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.TextureFormat + commentId: T:Voile.TextureFormat + parent: Voile + href: Voile.TextureFormat.html + name: TextureFormat + nameWithType: TextureFormat + fullName: Voile.TextureFormat diff --git a/Voile/api/Voile.UI.Container.yml b/Voile/api/Voile.UI.Container.yml new file mode 100644 index 0000000..0a93cd6 --- /dev/null +++ b/Voile/api/Voile.UI.Container.yml @@ -0,0 +1,664 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.UI.Container + commentId: T:Voile.UI.Container + id: Container + parent: Voile.UI + children: + - Voile.UI.Container.OnRender(Voile.Rendering.RenderSystem) + - Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement) + - Voile.UI.Container.RearrangeChildren + - Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + langs: + - csharp + - vb + name: Container + nameWithType: Container + fullName: Voile.UI.Container + type: Class + source: + remote: + path: Voile/Source/UI/Container.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Container + path: Source/UI/Container.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile.UI + summary: A basic container for UI elements. All container's children will update their constraints based on container's sizing and positioning. + example: [] + syntax: + content: 'public class Container : UIElement' + content.vb: Public Class Container Inherits UIElement + inheritance: + - System.Object + - Voile.UI.UIElement + derivedClasses: + - Voile.UI.Panel + inheritedMembers: + - Voile.UI.UIElement.Rect + - Voile.UI.UIElement.VerticalSizeFlags + - Voile.UI.UIElement.HorizontalSizeFlags + - Voile.UI.UIElement.ExpandRatio + - Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + - Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + - Voile.UI.UIElement.children + - Voile.UI.UIElement.parent + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + commentId: M:Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + id: UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + parent: Voile.UI.Container + langs: + - csharp + - vb + name: UpdateRect(Vector2, Vector2) + nameWithType: Container.UpdateRect(Vector2, Vector2) + fullName: Voile.UI.Container.UpdateRect(System.Numerics.Vector2, System.Numerics.Vector2) + type: Method + source: + remote: + path: Voile/Source/UI/Container.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: UpdateRect + path: Source/UI/Container.cs + startLine: 15 + assemblies: + - Voile + namespace: Voile.UI + summary: Updates the sizes of the container and rearranges its children. + example: [] + syntax: + content: public void UpdateRect(Vector2 position, Vector2 size) + parameters: + - id: position + type: System.Numerics.Vector2 + description: '' + - id: size + type: System.Numerics.Vector2 + description: '' + content.vb: Public Sub UpdateRect(position As Vector2, size As Vector2) + overload: Voile.UI.Container.UpdateRect* +- uid: Voile.UI.Container.RearrangeChildren + commentId: M:Voile.UI.Container.RearrangeChildren + id: RearrangeChildren + parent: Voile.UI.Container + langs: + - csharp + - vb + name: RearrangeChildren() + nameWithType: Container.RearrangeChildren() + fullName: Voile.UI.Container.RearrangeChildren() + type: Method + source: + remote: + path: Voile/Source/UI/Container.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RearrangeChildren + path: Source/UI/Container.cs + startLine: 23 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: protected void RearrangeChildren() + content.vb: Protected Sub RearrangeChildren() + overload: Voile.UI.Container.RearrangeChildren* +- uid: Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement) + commentId: M:Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement) + id: RearrangeChild(System.Int32,Voile.UI.UIElement) + parent: Voile.UI.Container + langs: + - csharp + - vb + name: RearrangeChild(int, UIElement) + nameWithType: Container.RearrangeChild(int, UIElement) + fullName: Voile.UI.Container.RearrangeChild(int, Voile.UI.UIElement) + type: Method + source: + remote: + path: Voile/Source/UI/Container.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RearrangeChild + path: Source/UI/Container.cs + startLine: 37 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: protected virtual void RearrangeChild(int idx, UIElement child) + parameters: + - id: idx + type: System.Int32 + - id: child + type: Voile.UI.UIElement + content.vb: Protected Overridable Sub RearrangeChild(idx As Integer, child As UIElement) + overload: Voile.UI.Container.RearrangeChild* + nameWithType.vb: Container.RearrangeChild(Integer, UIElement) + fullName.vb: Voile.UI.Container.RearrangeChild(Integer, Voile.UI.UIElement) + name.vb: RearrangeChild(Integer, UIElement) +- uid: Voile.UI.Container.OnRender(Voile.Rendering.RenderSystem) + commentId: M:Voile.UI.Container.OnRender(Voile.Rendering.RenderSystem) + id: OnRender(Voile.Rendering.RenderSystem) + parent: Voile.UI.Container + langs: + - csharp + - vb + name: OnRender(RenderSystem) + nameWithType: Container.OnRender(RenderSystem) + fullName: Voile.UI.Container.OnRender(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/UI/Container.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnRender + path: Source/UI/Container.cs + startLine: 39 + assemblies: + - Voile + namespace: Voile.UI + example: [] + syntax: + content: protected override void OnRender(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Protected Overrides Sub OnRender(renderer As RenderSystem) + overridden: Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem) + overload: Voile.UI.Container.OnRender* +references: +- uid: Voile.UI + commentId: N:Voile.UI + href: Voile.html + name: Voile.UI + nameWithType: Voile.UI + fullName: Voile.UI + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.UI.UIElement + commentId: T:Voile.UI.UIElement + parent: Voile.UI + href: Voile.UI.UIElement.html + name: UIElement + nameWithType: UIElement + fullName: Voile.UI.UIElement +- uid: Voile.UI.UIElement.Rect + commentId: P:Voile.UI.UIElement.Rect + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Rect + name: Rect + nameWithType: UIElement.Rect + fullName: Voile.UI.UIElement.Rect +- uid: Voile.UI.UIElement.VerticalSizeFlags + commentId: P:Voile.UI.UIElement.VerticalSizeFlags + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_VerticalSizeFlags + name: VerticalSizeFlags + nameWithType: UIElement.VerticalSizeFlags + fullName: Voile.UI.UIElement.VerticalSizeFlags +- uid: Voile.UI.UIElement.HorizontalSizeFlags + commentId: P:Voile.UI.UIElement.HorizontalSizeFlags + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_HorizontalSizeFlags + name: HorizontalSizeFlags + nameWithType: UIElement.HorizontalSizeFlags + fullName: Voile.UI.UIElement.HorizontalSizeFlags +- uid: Voile.UI.UIElement.ExpandRatio + commentId: P:Voile.UI.UIElement.ExpandRatio + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_ExpandRatio + name: ExpandRatio + nameWithType: UIElement.ExpandRatio + fullName: Voile.UI.UIElement.ExpandRatio +- uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + commentId: M:Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_ + name: AddChild(UIElement) + nameWithType: UIElement.AddChild(UIElement) + fullName: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + spec.csharp: + - uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + name: AddChild + href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_ + - name: ( + - uid: Voile.UI.UIElement + name: UIElement + href: Voile.UI.UIElement.html + - name: ) + spec.vb: + - uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + name: AddChild + href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_ + - name: ( + - uid: Voile.UI.UIElement + name: UIElement + href: Voile.UI.UIElement.html + - name: ) +- uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + commentId: M:Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_ + name: Render(RenderSystem) + nameWithType: UIElement.Render(RenderSystem) + fullName: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + name: Render + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + name: Render + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.UI.UIElement.children + commentId: F:Voile.UI.UIElement.children + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_children + name: children + nameWithType: UIElement.children + fullName: Voile.UI.UIElement.children +- uid: Voile.UI.UIElement.parent + commentId: F:Voile.UI.UIElement.parent + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_parent + name: parent + nameWithType: UIElement.parent + fullName: Voile.UI.UIElement.parent +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.UI.Container.UpdateRect* + commentId: Overload:Voile.UI.Container.UpdateRect + href: Voile.UI.Container.html#Voile_UI_Container_UpdateRect_System_Numerics_Vector2_System_Numerics_Vector2_ + name: UpdateRect + nameWithType: Container.UpdateRect + fullName: Voile.UI.Container.UpdateRect +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: Voile.UI.Container.RearrangeChildren* + commentId: Overload:Voile.UI.Container.RearrangeChildren + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChildren + name: RearrangeChildren + nameWithType: Container.RearrangeChildren + fullName: Voile.UI.Container.RearrangeChildren +- uid: Voile.UI.Container.RearrangeChild* + commentId: Overload:Voile.UI.Container.RearrangeChild + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChild_System_Int32_Voile_UI_UIElement_ + name: RearrangeChild + nameWithType: Container.RearrangeChild + fullName: Voile.UI.Container.RearrangeChild +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem) + commentId: M:Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem) + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_OnRender_Voile_Rendering_RenderSystem_ + name: OnRender(RenderSystem) + nameWithType: UIElement.OnRender(RenderSystem) + fullName: Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem) + name: OnRender + href: Voile.UI.UIElement.html#Voile_UI_UIElement_OnRender_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem) + name: OnRender + href: Voile.UI.UIElement.html#Voile_UI_UIElement_OnRender_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.UI.Container.OnRender* + commentId: Overload:Voile.UI.Container.OnRender + href: Voile.UI.Container.html#Voile_UI_Container_OnRender_Voile_Rendering_RenderSystem_ + name: OnRender + nameWithType: Container.OnRender + fullName: Voile.UI.Container.OnRender +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html diff --git a/Voile/api/Voile.UI.MarginPanel.yml b/Voile/api/Voile.UI.MarginPanel.yml new file mode 100644 index 0000000..4b501a8 --- /dev/null +++ b/Voile/api/Voile.UI.MarginPanel.yml @@ -0,0 +1,768 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.UI.MarginPanel + commentId: T:Voile.UI.MarginPanel + id: MarginPanel + parent: Voile.UI + children: + - Voile.UI.MarginPanel.#ctor(Voile.UI.PanelStyle) + - Voile.UI.MarginPanel.AbsoluteMargin + - Voile.UI.MarginPanel.RearrangeChild(System.Int32,Voile.UI.UIElement) + - Voile.UI.MarginPanel.RelativeMargin + langs: + - csharp + - vb + name: MarginPanel + nameWithType: MarginPanel + fullName: Voile.UI.MarginPanel + type: Class + source: + remote: + path: Voile/Source/UI/MarginPanel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: MarginPanel + path: Source/UI/MarginPanel.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: 'public class MarginPanel : Panel' + content.vb: Public Class MarginPanel Inherits Panel + inheritance: + - System.Object + - Voile.UI.UIElement + - Voile.UI.Container + - Voile.UI.Panel + inheritedMembers: + - Voile.UI.Panel.Style + - Voile.UI.Panel.OnRender(Voile.Rendering.RenderSystem) + - Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + - Voile.UI.Container.RearrangeChildren + - Voile.UI.UIElement.Rect + - Voile.UI.UIElement.VerticalSizeFlags + - Voile.UI.UIElement.HorizontalSizeFlags + - Voile.UI.UIElement.ExpandRatio + - Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + - Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + - Voile.UI.UIElement.children + - Voile.UI.UIElement.parent + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.UI.MarginPanel.RelativeMargin + commentId: P:Voile.UI.MarginPanel.RelativeMargin + id: RelativeMargin + parent: Voile.UI.MarginPanel + langs: + - csharp + - vb + name: RelativeMargin + nameWithType: MarginPanel.RelativeMargin + fullName: Voile.UI.MarginPanel.RelativeMargin + type: Property + source: + remote: + path: Voile/Source/UI/MarginPanel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RelativeMargin + path: Source/UI/MarginPanel.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public Vector2 RelativeMargin { get; set; } + parameters: [] + return: + type: System.Numerics.Vector2 + content.vb: Public Property RelativeMargin As Vector2 + overload: Voile.UI.MarginPanel.RelativeMargin* +- uid: Voile.UI.MarginPanel.AbsoluteMargin + commentId: P:Voile.UI.MarginPanel.AbsoluteMargin + id: AbsoluteMargin + parent: Voile.UI.MarginPanel + langs: + - csharp + - vb + name: AbsoluteMargin + nameWithType: MarginPanel.AbsoluteMargin + fullName: Voile.UI.MarginPanel.AbsoluteMargin + type: Property + source: + remote: + path: Voile/Source/UI/MarginPanel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AbsoluteMargin + path: Source/UI/MarginPanel.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public Vector2 AbsoluteMargin { get; set; } + parameters: [] + return: + type: System.Numerics.Vector2 + content.vb: Public Property AbsoluteMargin As Vector2 + overload: Voile.UI.MarginPanel.AbsoluteMargin* +- uid: Voile.UI.MarginPanel.#ctor(Voile.UI.PanelStyle) + commentId: M:Voile.UI.MarginPanel.#ctor(Voile.UI.PanelStyle) + id: '#ctor(Voile.UI.PanelStyle)' + parent: Voile.UI.MarginPanel + langs: + - csharp + - vb + name: MarginPanel(PanelStyle) + nameWithType: MarginPanel.MarginPanel(PanelStyle) + fullName: Voile.UI.MarginPanel.MarginPanel(Voile.UI.PanelStyle) + type: Constructor + source: + remote: + path: Voile/Source/UI/MarginPanel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/UI/MarginPanel.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public MarginPanel(PanelStyle style) + parameters: + - id: style + type: Voile.UI.PanelStyle + content.vb: Public Sub New(style As PanelStyle) + overload: Voile.UI.MarginPanel.#ctor* + nameWithType.vb: MarginPanel.New(PanelStyle) + fullName.vb: Voile.UI.MarginPanel.New(Voile.UI.PanelStyle) + name.vb: New(PanelStyle) +- uid: Voile.UI.MarginPanel.RearrangeChild(System.Int32,Voile.UI.UIElement) + commentId: M:Voile.UI.MarginPanel.RearrangeChild(System.Int32,Voile.UI.UIElement) + id: RearrangeChild(System.Int32,Voile.UI.UIElement) + parent: Voile.UI.MarginPanel + langs: + - csharp + - vb + name: RearrangeChild(int, UIElement) + nameWithType: MarginPanel.RearrangeChild(int, UIElement) + fullName: Voile.UI.MarginPanel.RearrangeChild(int, Voile.UI.UIElement) + type: Method + source: + remote: + path: Voile/Source/UI/MarginPanel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RearrangeChild + path: Source/UI/MarginPanel.cs + startLine: 12 + assemblies: + - Voile + namespace: Voile.UI + example: [] + syntax: + content: protected override void RearrangeChild(int idx, UIElement child) + parameters: + - id: idx + type: System.Int32 + - id: child + type: Voile.UI.UIElement + content.vb: Protected Overrides Sub RearrangeChild(idx As Integer, child As UIElement) + overridden: Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement) + overload: Voile.UI.MarginPanel.RearrangeChild* + nameWithType.vb: MarginPanel.RearrangeChild(Integer, UIElement) + fullName.vb: Voile.UI.MarginPanel.RearrangeChild(Integer, Voile.UI.UIElement) + name.vb: RearrangeChild(Integer, UIElement) +references: +- uid: Voile.UI + commentId: N:Voile.UI + href: Voile.html + name: Voile.UI + nameWithType: Voile.UI + fullName: Voile.UI + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.UI.UIElement + commentId: T:Voile.UI.UIElement + parent: Voile.UI + href: Voile.UI.UIElement.html + name: UIElement + nameWithType: UIElement + fullName: Voile.UI.UIElement +- uid: Voile.UI.Container + commentId: T:Voile.UI.Container + parent: Voile.UI + href: Voile.UI.Container.html + name: Container + nameWithType: Container + fullName: Voile.UI.Container +- uid: Voile.UI.Panel + commentId: T:Voile.UI.Panel + parent: Voile.UI + href: Voile.UI.Panel.html + name: Panel + nameWithType: Panel + fullName: Voile.UI.Panel +- uid: Voile.UI.Panel.Style + commentId: P:Voile.UI.Panel.Style + parent: Voile.UI.Panel + href: Voile.UI.Panel.html#Voile_UI_Panel_Style + name: Style + nameWithType: Panel.Style + fullName: Voile.UI.Panel.Style +- uid: Voile.UI.Panel.OnRender(Voile.Rendering.RenderSystem) + commentId: M:Voile.UI.Panel.OnRender(Voile.Rendering.RenderSystem) + parent: Voile.UI.Panel + href: Voile.UI.Panel.html#Voile_UI_Panel_OnRender_Voile_Rendering_RenderSystem_ + name: OnRender(RenderSystem) + nameWithType: Panel.OnRender(RenderSystem) + fullName: Voile.UI.Panel.OnRender(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.UI.Panel.OnRender(Voile.Rendering.RenderSystem) + name: OnRender + href: Voile.UI.Panel.html#Voile_UI_Panel_OnRender_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.UI.Panel.OnRender(Voile.Rendering.RenderSystem) + name: OnRender + href: Voile.UI.Panel.html#Voile_UI_Panel_OnRender_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + commentId: M:Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + parent: Voile.UI.Container + isExternal: true + href: Voile.UI.Container.html#Voile_UI_Container_UpdateRect_System_Numerics_Vector2_System_Numerics_Vector2_ + name: UpdateRect(Vector2, Vector2) + nameWithType: Container.UpdateRect(Vector2, Vector2) + fullName: Voile.UI.Container.UpdateRect(System.Numerics.Vector2, System.Numerics.Vector2) + spec.csharp: + - uid: Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + name: UpdateRect + href: Voile.UI.Container.html#Voile_UI_Container_UpdateRect_System_Numerics_Vector2_System_Numerics_Vector2_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ) + spec.vb: + - uid: Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + name: UpdateRect + href: Voile.UI.Container.html#Voile_UI_Container_UpdateRect_System_Numerics_Vector2_System_Numerics_Vector2_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ) +- uid: Voile.UI.Container.RearrangeChildren + commentId: M:Voile.UI.Container.RearrangeChildren + parent: Voile.UI.Container + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChildren + name: RearrangeChildren() + nameWithType: Container.RearrangeChildren() + fullName: Voile.UI.Container.RearrangeChildren() + spec.csharp: + - uid: Voile.UI.Container.RearrangeChildren + name: RearrangeChildren + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChildren + - name: ( + - name: ) + spec.vb: + - uid: Voile.UI.Container.RearrangeChildren + name: RearrangeChildren + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChildren + - name: ( + - name: ) +- uid: Voile.UI.UIElement.Rect + commentId: P:Voile.UI.UIElement.Rect + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Rect + name: Rect + nameWithType: UIElement.Rect + fullName: Voile.UI.UIElement.Rect +- uid: Voile.UI.UIElement.VerticalSizeFlags + commentId: P:Voile.UI.UIElement.VerticalSizeFlags + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_VerticalSizeFlags + name: VerticalSizeFlags + nameWithType: UIElement.VerticalSizeFlags + fullName: Voile.UI.UIElement.VerticalSizeFlags +- uid: Voile.UI.UIElement.HorizontalSizeFlags + commentId: P:Voile.UI.UIElement.HorizontalSizeFlags + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_HorizontalSizeFlags + name: HorizontalSizeFlags + nameWithType: UIElement.HorizontalSizeFlags + fullName: Voile.UI.UIElement.HorizontalSizeFlags +- uid: Voile.UI.UIElement.ExpandRatio + commentId: P:Voile.UI.UIElement.ExpandRatio + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_ExpandRatio + name: ExpandRatio + nameWithType: UIElement.ExpandRatio + fullName: Voile.UI.UIElement.ExpandRatio +- uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + commentId: M:Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_ + name: AddChild(UIElement) + nameWithType: UIElement.AddChild(UIElement) + fullName: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + spec.csharp: + - uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + name: AddChild + href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_ + - name: ( + - uid: Voile.UI.UIElement + name: UIElement + href: Voile.UI.UIElement.html + - name: ) + spec.vb: + - uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + name: AddChild + href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_ + - name: ( + - uid: Voile.UI.UIElement + name: UIElement + href: Voile.UI.UIElement.html + - name: ) +- uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + commentId: M:Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_ + name: Render(RenderSystem) + nameWithType: UIElement.Render(RenderSystem) + fullName: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + name: Render + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + name: Render + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.UI.UIElement.children + commentId: F:Voile.UI.UIElement.children + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_children + name: children + nameWithType: UIElement.children + fullName: Voile.UI.UIElement.children +- uid: Voile.UI.UIElement.parent + commentId: F:Voile.UI.UIElement.parent + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_parent + name: parent + nameWithType: UIElement.parent + fullName: Voile.UI.UIElement.parent +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.UI.MarginPanel.RelativeMargin* + commentId: Overload:Voile.UI.MarginPanel.RelativeMargin + href: Voile.UI.MarginPanel.html#Voile_UI_MarginPanel_RelativeMargin + name: RelativeMargin + nameWithType: MarginPanel.RelativeMargin + fullName: Voile.UI.MarginPanel.RelativeMargin +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: Voile.UI.MarginPanel.AbsoluteMargin* + commentId: Overload:Voile.UI.MarginPanel.AbsoluteMargin + href: Voile.UI.MarginPanel.html#Voile_UI_MarginPanel_AbsoluteMargin + name: AbsoluteMargin + nameWithType: MarginPanel.AbsoluteMargin + fullName: Voile.UI.MarginPanel.AbsoluteMargin +- uid: Voile.UI.MarginPanel.#ctor* + commentId: Overload:Voile.UI.MarginPanel.#ctor + href: Voile.UI.MarginPanel.html#Voile_UI_MarginPanel__ctor_Voile_UI_PanelStyle_ + name: MarginPanel + nameWithType: MarginPanel.MarginPanel + fullName: Voile.UI.MarginPanel.MarginPanel + nameWithType.vb: MarginPanel.New + fullName.vb: Voile.UI.MarginPanel.New + name.vb: New +- uid: Voile.UI.PanelStyle + commentId: T:Voile.UI.PanelStyle + parent: Voile.UI + href: Voile.UI.PanelStyle.html + name: PanelStyle + nameWithType: PanelStyle + fullName: Voile.UI.PanelStyle +- uid: Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement) + commentId: M:Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement) + parent: Voile.UI.Container + isExternal: true + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChild_System_Int32_Voile_UI_UIElement_ + name: RearrangeChild(int, UIElement) + nameWithType: Container.RearrangeChild(int, UIElement) + fullName: Voile.UI.Container.RearrangeChild(int, Voile.UI.UIElement) + nameWithType.vb: Container.RearrangeChild(Integer, UIElement) + fullName.vb: Voile.UI.Container.RearrangeChild(Integer, Voile.UI.UIElement) + name.vb: RearrangeChild(Integer, UIElement) + spec.csharp: + - uid: Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement) + name: RearrangeChild + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChild_System_Int32_Voile_UI_UIElement_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: Voile.UI.UIElement + name: UIElement + href: Voile.UI.UIElement.html + - name: ) + spec.vb: + - uid: Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement) + name: RearrangeChild + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChild_System_Int32_Voile_UI_UIElement_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: Voile.UI.UIElement + name: UIElement + href: Voile.UI.UIElement.html + - name: ) +- uid: Voile.UI.MarginPanel.RearrangeChild* + commentId: Overload:Voile.UI.MarginPanel.RearrangeChild + href: Voile.UI.MarginPanel.html#Voile_UI_MarginPanel_RearrangeChild_System_Int32_Voile_UI_UIElement_ + name: RearrangeChild + nameWithType: MarginPanel.RearrangeChild + fullName: Voile.UI.MarginPanel.RearrangeChild +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer diff --git a/Voile/api/Voile.UI.Panel.yml b/Voile/api/Voile.UI.Panel.yml new file mode 100644 index 0000000..10b1f1a --- /dev/null +++ b/Voile/api/Voile.UI.Panel.yml @@ -0,0 +1,697 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.UI.Panel + commentId: T:Voile.UI.Panel + id: Panel + parent: Voile.UI + children: + - Voile.UI.Panel.#ctor(Voile.UI.PanelStyle) + - Voile.UI.Panel.OnRender(Voile.Rendering.RenderSystem) + - Voile.UI.Panel.Style + langs: + - csharp + - vb + name: Panel + nameWithType: Panel + fullName: Voile.UI.Panel + type: Class + source: + remote: + path: Voile/Source/UI/Panel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Panel + path: Source/UI/Panel.cs + startLine: 5 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: 'public class Panel : Container' + content.vb: Public Class Panel Inherits Container + inheritance: + - System.Object + - Voile.UI.UIElement + - Voile.UI.Container + derivedClasses: + - Voile.UI.MarginPanel + - Voile.UI.VerticalPanel + inheritedMembers: + - Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + - Voile.UI.Container.RearrangeChildren + - Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement) + - Voile.UI.UIElement.Rect + - Voile.UI.UIElement.VerticalSizeFlags + - Voile.UI.UIElement.HorizontalSizeFlags + - Voile.UI.UIElement.ExpandRatio + - Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + - Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + - Voile.UI.UIElement.children + - Voile.UI.UIElement.parent + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.UI.Panel.Style + commentId: P:Voile.UI.Panel.Style + id: Style + parent: Voile.UI.Panel + langs: + - csharp + - vb + name: Style + nameWithType: Panel.Style + fullName: Voile.UI.Panel.Style + type: Property + source: + remote: + path: Voile/Source/UI/Panel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Style + path: Source/UI/Panel.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public PanelStyle Style { get; set; } + parameters: [] + return: + type: Voile.UI.PanelStyle + content.vb: Public Property Style As PanelStyle + overload: Voile.UI.Panel.Style* +- uid: Voile.UI.Panel.#ctor(Voile.UI.PanelStyle) + commentId: M:Voile.UI.Panel.#ctor(Voile.UI.PanelStyle) + id: '#ctor(Voile.UI.PanelStyle)' + parent: Voile.UI.Panel + langs: + - csharp + - vb + name: Panel(PanelStyle) + nameWithType: Panel.Panel(PanelStyle) + fullName: Voile.UI.Panel.Panel(Voile.UI.PanelStyle) + type: Constructor + source: + remote: + path: Voile/Source/UI/Panel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/UI/Panel.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public Panel(PanelStyle style) + parameters: + - id: style + type: Voile.UI.PanelStyle + content.vb: Public Sub New(style As PanelStyle) + overload: Voile.UI.Panel.#ctor* + nameWithType.vb: Panel.New(PanelStyle) + fullName.vb: Voile.UI.Panel.New(Voile.UI.PanelStyle) + name.vb: New(PanelStyle) +- uid: Voile.UI.Panel.OnRender(Voile.Rendering.RenderSystem) + commentId: M:Voile.UI.Panel.OnRender(Voile.Rendering.RenderSystem) + id: OnRender(Voile.Rendering.RenderSystem) + parent: Voile.UI.Panel + langs: + - csharp + - vb + name: OnRender(RenderSystem) + nameWithType: Panel.OnRender(RenderSystem) + fullName: Voile.UI.Panel.OnRender(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/UI/Panel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnRender + path: Source/UI/Panel.cs + startLine: 14 + assemblies: + - Voile + namespace: Voile.UI + example: [] + syntax: + content: protected override void OnRender(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Protected Overrides Sub OnRender(renderer As RenderSystem) + overridden: Voile.UI.Container.OnRender(Voile.Rendering.RenderSystem) + overload: Voile.UI.Panel.OnRender* +references: +- uid: Voile.UI + commentId: N:Voile.UI + href: Voile.html + name: Voile.UI + nameWithType: Voile.UI + fullName: Voile.UI + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.UI.UIElement + commentId: T:Voile.UI.UIElement + parent: Voile.UI + href: Voile.UI.UIElement.html + name: UIElement + nameWithType: UIElement + fullName: Voile.UI.UIElement +- uid: Voile.UI.Container + commentId: T:Voile.UI.Container + parent: Voile.UI + href: Voile.UI.Container.html + name: Container + nameWithType: Container + fullName: Voile.UI.Container +- uid: Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + commentId: M:Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + parent: Voile.UI.Container + isExternal: true + href: Voile.UI.Container.html#Voile_UI_Container_UpdateRect_System_Numerics_Vector2_System_Numerics_Vector2_ + name: UpdateRect(Vector2, Vector2) + nameWithType: Container.UpdateRect(Vector2, Vector2) + fullName: Voile.UI.Container.UpdateRect(System.Numerics.Vector2, System.Numerics.Vector2) + spec.csharp: + - uid: Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + name: UpdateRect + href: Voile.UI.Container.html#Voile_UI_Container_UpdateRect_System_Numerics_Vector2_System_Numerics_Vector2_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ) + spec.vb: + - uid: Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + name: UpdateRect + href: Voile.UI.Container.html#Voile_UI_Container_UpdateRect_System_Numerics_Vector2_System_Numerics_Vector2_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ) +- uid: Voile.UI.Container.RearrangeChildren + commentId: M:Voile.UI.Container.RearrangeChildren + parent: Voile.UI.Container + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChildren + name: RearrangeChildren() + nameWithType: Container.RearrangeChildren() + fullName: Voile.UI.Container.RearrangeChildren() + spec.csharp: + - uid: Voile.UI.Container.RearrangeChildren + name: RearrangeChildren + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChildren + - name: ( + - name: ) + spec.vb: + - uid: Voile.UI.Container.RearrangeChildren + name: RearrangeChildren + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChildren + - name: ( + - name: ) +- uid: Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement) + commentId: M:Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement) + parent: Voile.UI.Container + isExternal: true + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChild_System_Int32_Voile_UI_UIElement_ + name: RearrangeChild(int, UIElement) + nameWithType: Container.RearrangeChild(int, UIElement) + fullName: Voile.UI.Container.RearrangeChild(int, Voile.UI.UIElement) + nameWithType.vb: Container.RearrangeChild(Integer, UIElement) + fullName.vb: Voile.UI.Container.RearrangeChild(Integer, Voile.UI.UIElement) + name.vb: RearrangeChild(Integer, UIElement) + spec.csharp: + - uid: Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement) + name: RearrangeChild + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChild_System_Int32_Voile_UI_UIElement_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: Voile.UI.UIElement + name: UIElement + href: Voile.UI.UIElement.html + - name: ) + spec.vb: + - uid: Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement) + name: RearrangeChild + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChild_System_Int32_Voile_UI_UIElement_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: Voile.UI.UIElement + name: UIElement + href: Voile.UI.UIElement.html + - name: ) +- uid: Voile.UI.UIElement.Rect + commentId: P:Voile.UI.UIElement.Rect + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Rect + name: Rect + nameWithType: UIElement.Rect + fullName: Voile.UI.UIElement.Rect +- uid: Voile.UI.UIElement.VerticalSizeFlags + commentId: P:Voile.UI.UIElement.VerticalSizeFlags + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_VerticalSizeFlags + name: VerticalSizeFlags + nameWithType: UIElement.VerticalSizeFlags + fullName: Voile.UI.UIElement.VerticalSizeFlags +- uid: Voile.UI.UIElement.HorizontalSizeFlags + commentId: P:Voile.UI.UIElement.HorizontalSizeFlags + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_HorizontalSizeFlags + name: HorizontalSizeFlags + nameWithType: UIElement.HorizontalSizeFlags + fullName: Voile.UI.UIElement.HorizontalSizeFlags +- uid: Voile.UI.UIElement.ExpandRatio + commentId: P:Voile.UI.UIElement.ExpandRatio + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_ExpandRatio + name: ExpandRatio + nameWithType: UIElement.ExpandRatio + fullName: Voile.UI.UIElement.ExpandRatio +- uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + commentId: M:Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_ + name: AddChild(UIElement) + nameWithType: UIElement.AddChild(UIElement) + fullName: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + spec.csharp: + - uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + name: AddChild + href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_ + - name: ( + - uid: Voile.UI.UIElement + name: UIElement + href: Voile.UI.UIElement.html + - name: ) + spec.vb: + - uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + name: AddChild + href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_ + - name: ( + - uid: Voile.UI.UIElement + name: UIElement + href: Voile.UI.UIElement.html + - name: ) +- uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + commentId: M:Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_ + name: Render(RenderSystem) + nameWithType: UIElement.Render(RenderSystem) + fullName: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + name: Render + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + name: Render + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.UI.UIElement.children + commentId: F:Voile.UI.UIElement.children + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_children + name: children + nameWithType: UIElement.children + fullName: Voile.UI.UIElement.children +- uid: Voile.UI.UIElement.parent + commentId: F:Voile.UI.UIElement.parent + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_parent + name: parent + nameWithType: UIElement.parent + fullName: Voile.UI.UIElement.parent +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.UI.Panel.Style* + commentId: Overload:Voile.UI.Panel.Style + href: Voile.UI.Panel.html#Voile_UI_Panel_Style + name: Style + nameWithType: Panel.Style + fullName: Voile.UI.Panel.Style +- uid: Voile.UI.PanelStyle + commentId: T:Voile.UI.PanelStyle + parent: Voile.UI + href: Voile.UI.PanelStyle.html + name: PanelStyle + nameWithType: PanelStyle + fullName: Voile.UI.PanelStyle +- uid: Voile.UI.Panel.#ctor* + commentId: Overload:Voile.UI.Panel.#ctor + href: Voile.UI.Panel.html#Voile_UI_Panel__ctor_Voile_UI_PanelStyle_ + name: Panel + nameWithType: Panel.Panel + fullName: Voile.UI.Panel.Panel + nameWithType.vb: Panel.New + fullName.vb: Voile.UI.Panel.New + name.vb: New +- uid: Voile.UI.Container.OnRender(Voile.Rendering.RenderSystem) + commentId: M:Voile.UI.Container.OnRender(Voile.Rendering.RenderSystem) + parent: Voile.UI.Container + href: Voile.UI.Container.html#Voile_UI_Container_OnRender_Voile_Rendering_RenderSystem_ + name: OnRender(RenderSystem) + nameWithType: Container.OnRender(RenderSystem) + fullName: Voile.UI.Container.OnRender(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.UI.Container.OnRender(Voile.Rendering.RenderSystem) + name: OnRender + href: Voile.UI.Container.html#Voile_UI_Container_OnRender_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.UI.Container.OnRender(Voile.Rendering.RenderSystem) + name: OnRender + href: Voile.UI.Container.html#Voile_UI_Container_OnRender_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.UI.Panel.OnRender* + commentId: Overload:Voile.UI.Panel.OnRender + href: Voile.UI.Panel.html#Voile_UI_Panel_OnRender_Voile_Rendering_RenderSystem_ + name: OnRender + nameWithType: Panel.OnRender + fullName: Voile.UI.Panel.OnRender +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html diff --git a/Voile/api/Voile.UI.PanelStyle.yml b/Voile/api/Voile.UI.PanelStyle.yml new file mode 100644 index 0000000..09c44e2 --- /dev/null +++ b/Voile/api/Voile.UI.PanelStyle.yml @@ -0,0 +1,324 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.UI.PanelStyle + commentId: T:Voile.UI.PanelStyle + id: PanelStyle + parent: Voile.UI + children: + - Voile.UI.PanelStyle.BackgroundColor + langs: + - csharp + - vb + name: PanelStyle + nameWithType: PanelStyle + fullName: Voile.UI.PanelStyle + type: Struct + source: + remote: + path: Voile/Source/UI/PanelStyle.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: PanelStyle + path: Source/UI/PanelStyle.cs + startLine: 2 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public struct PanelStyle + content.vb: Public Structure PanelStyle + inheritedMembers: + - System.ValueType.Equals(System.Object) + - System.ValueType.GetHashCode + - System.ValueType.ToString + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetType + - System.Object.ReferenceEquals(System.Object,System.Object) +- uid: Voile.UI.PanelStyle.BackgroundColor + commentId: P:Voile.UI.PanelStyle.BackgroundColor + id: BackgroundColor + parent: Voile.UI.PanelStyle + langs: + - csharp + - vb + name: BackgroundColor + nameWithType: PanelStyle.BackgroundColor + fullName: Voile.UI.PanelStyle.BackgroundColor + type: Property + source: + remote: + path: Voile/Source/UI/PanelStyle.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: BackgroundColor + path: Source/UI/PanelStyle.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public Color BackgroundColor { readonly get; set; } + parameters: [] + return: + type: Voile.Color + content.vb: Public Property BackgroundColor As Color + overload: Voile.UI.PanelStyle.BackgroundColor* +references: +- uid: Voile.UI + commentId: N:Voile.UI + href: Voile.html + name: Voile.UI + nameWithType: Voile.UI + fullName: Voile.UI + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html +- uid: System.ValueType.Equals(System.Object) + commentId: M:System.ValueType.Equals(System.Object) + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + name: Equals(object) + nameWithType: ValueType.Equals(object) + fullName: System.ValueType.Equals(object) + nameWithType.vb: ValueType.Equals(Object) + fullName.vb: System.ValueType.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.ValueType.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType.GetHashCode + commentId: M:System.ValueType.GetHashCode + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + name: GetHashCode() + nameWithType: ValueType.GetHashCode() + fullName: System.ValueType.GetHashCode() + spec.csharp: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode + - name: ( + - name: ) +- uid: System.ValueType.ToString + commentId: M:System.ValueType.ToString + parent: System.ValueType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + name: ToString() + nameWithType: ValueType.ToString() + fullName: System.ValueType.ToString() + spec.csharp: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.ValueType.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring + - name: ( + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.ValueType + commentId: T:System.ValueType + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.valuetype + name: ValueType + nameWithType: ValueType + fullName: System.ValueType +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.UI.PanelStyle.BackgroundColor* + commentId: Overload:Voile.UI.PanelStyle.BackgroundColor + href: Voile.UI.PanelStyle.html#Voile_UI_PanelStyle_BackgroundColor + name: BackgroundColor + nameWithType: PanelStyle.BackgroundColor + fullName: Voile.UI.PanelStyle.BackgroundColor +- uid: Voile.Color + commentId: T:Voile.Color + parent: Voile + href: Voile.Color.html + name: Color + nameWithType: Color + fullName: Voile.Color +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile diff --git a/Voile/api/Voile.UI.Rect.yml b/Voile/api/Voile.UI.Rect.yml new file mode 100644 index 0000000..ac57063 --- /dev/null +++ b/Voile/api/Voile.UI.Rect.yml @@ -0,0 +1,441 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.UI.Rect + commentId: T:Voile.UI.Rect + id: Rect + parent: Voile.UI + children: + - Voile.UI.Rect.Position + - Voile.UI.Rect.Scale + - Voile.UI.Rect.Size + langs: + - csharp + - vb + name: Rect + nameWithType: Rect + fullName: Voile.UI.Rect + type: Class + source: + remote: + path: Voile/Source/UI/Rect.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Rect + path: Source/UI/Rect.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public class Rect + content.vb: Public Class Rect + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.UI.Rect.Position + commentId: P:Voile.UI.Rect.Position + id: Position + parent: Voile.UI.Rect + langs: + - csharp + - vb + name: Position + nameWithType: Rect.Position + fullName: Voile.UI.Rect.Position + type: Property + source: + remote: + path: Voile/Source/UI/Rect.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Position + path: Source/UI/Rect.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public Vector2 Position { get; set; } + parameters: [] + return: + type: System.Numerics.Vector2 + content.vb: Public Property Position As Vector2 + overload: Voile.UI.Rect.Position* +- uid: Voile.UI.Rect.Size + commentId: P:Voile.UI.Rect.Size + id: Size + parent: Voile.UI.Rect + langs: + - csharp + - vb + name: Size + nameWithType: Rect.Size + fullName: Voile.UI.Rect.Size + type: Property + source: + remote: + path: Voile/Source/UI/Rect.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Size + path: Source/UI/Rect.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public Vector2 Size { get; set; } + parameters: [] + return: + type: System.Numerics.Vector2 + content.vb: Public Property Size As Vector2 + overload: Voile.UI.Rect.Size* +- uid: Voile.UI.Rect.Scale + commentId: P:Voile.UI.Rect.Scale + id: Scale + parent: Voile.UI.Rect + langs: + - csharp + - vb + name: Scale + nameWithType: Rect.Scale + fullName: Voile.UI.Rect.Scale + type: Property + source: + remote: + path: Voile/Source/UI/Rect.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Scale + path: Source/UI/Rect.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public Vector2 Scale { get; set; } + parameters: [] + return: + type: System.Numerics.Vector2 + content.vb: Public Property Scale As Vector2 + overload: Voile.UI.Rect.Scale* +references: +- uid: Voile.UI + commentId: N:Voile.UI + href: Voile.html + name: Voile.UI + nameWithType: Voile.UI + fullName: Voile.UI + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.UI.Rect.Position* + commentId: Overload:Voile.UI.Rect.Position + href: Voile.UI.Rect.html#Voile_UI_Rect_Position + name: Position + nameWithType: Rect.Position + fullName: Voile.UI.Rect.Position +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: Voile.UI.Rect.Size* + commentId: Overload:Voile.UI.Rect.Size + href: Voile.UI.Rect.html#Voile_UI_Rect_Size + name: Size + nameWithType: Rect.Size + fullName: Voile.UI.Rect.Size +- uid: Voile.UI.Rect.Scale* + commentId: Overload:Voile.UI.Rect.Scale + href: Voile.UI.Rect.html#Voile_UI_Rect_Scale + name: Scale + nameWithType: Rect.Scale + fullName: Voile.UI.Rect.Scale diff --git a/Voile/api/Voile.UI.SizeFlags.yml b/Voile/api/Voile.UI.SizeFlags.yml new file mode 100644 index 0000000..f95ea29 --- /dev/null +++ b/Voile/api/Voile.UI.SizeFlags.yml @@ -0,0 +1,177 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.UI.SizeFlags + commentId: T:Voile.UI.SizeFlags + id: SizeFlags + parent: Voile.UI + children: + - Voile.UI.SizeFlags.Fill + - Voile.UI.SizeFlags.ShrinkBegin + - Voile.UI.SizeFlags.ShrinkCenter + - Voile.UI.SizeFlags.ShrinkEnd + langs: + - csharp + - vb + name: SizeFlags + nameWithType: SizeFlags + fullName: Voile.UI.SizeFlags + type: Enum + source: + remote: + path: Voile/Source/UI/UIElement.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: SizeFlags + path: Source/UI/UIElement.cs + startLine: 47 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: >- + [Flags] + + public enum SizeFlags + content.vb: >- + + + Public Enum SizeFlags + attributes: + - type: System.FlagsAttribute + ctor: System.FlagsAttribute.#ctor + arguments: [] +- uid: Voile.UI.SizeFlags.ShrinkBegin + commentId: F:Voile.UI.SizeFlags.ShrinkBegin + id: ShrinkBegin + parent: Voile.UI.SizeFlags + langs: + - csharp + - vb + name: ShrinkBegin + nameWithType: SizeFlags.ShrinkBegin + fullName: Voile.UI.SizeFlags.ShrinkBegin + type: Field + source: + remote: + path: Voile/Source/UI/UIElement.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ShrinkBegin + path: Source/UI/UIElement.cs + startLine: 50 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: ShrinkBegin = 0 + return: + type: Voile.UI.SizeFlags +- uid: Voile.UI.SizeFlags.ShrinkCenter + commentId: F:Voile.UI.SizeFlags.ShrinkCenter + id: ShrinkCenter + parent: Voile.UI.SizeFlags + langs: + - csharp + - vb + name: ShrinkCenter + nameWithType: SizeFlags.ShrinkCenter + fullName: Voile.UI.SizeFlags.ShrinkCenter + type: Field + source: + remote: + path: Voile/Source/UI/UIElement.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ShrinkCenter + path: Source/UI/UIElement.cs + startLine: 51 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: ShrinkCenter = 1 + return: + type: Voile.UI.SizeFlags +- uid: Voile.UI.SizeFlags.ShrinkEnd + commentId: F:Voile.UI.SizeFlags.ShrinkEnd + id: ShrinkEnd + parent: Voile.UI.SizeFlags + langs: + - csharp + - vb + name: ShrinkEnd + nameWithType: SizeFlags.ShrinkEnd + fullName: Voile.UI.SizeFlags.ShrinkEnd + type: Field + source: + remote: + path: Voile/Source/UI/UIElement.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ShrinkEnd + path: Source/UI/UIElement.cs + startLine: 52 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: ShrinkEnd = 2 + return: + type: Voile.UI.SizeFlags +- uid: Voile.UI.SizeFlags.Fill + commentId: F:Voile.UI.SizeFlags.Fill + id: Fill + parent: Voile.UI.SizeFlags + langs: + - csharp + - vb + name: Fill + nameWithType: SizeFlags.Fill + fullName: Voile.UI.SizeFlags.Fill + type: Field + source: + remote: + path: Voile/Source/UI/UIElement.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Fill + path: Source/UI/UIElement.cs + startLine: 53 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: Fill = ShrinkCenter | ShrinkEnd + return: + type: Voile.UI.SizeFlags + content.vb: Fill = ShrinkCenter Or ShrinkEnd +references: +- uid: Voile.UI + commentId: N:Voile.UI + href: Voile.html + name: Voile.UI + nameWithType: Voile.UI + fullName: Voile.UI + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html +- uid: Voile.UI.SizeFlags + commentId: T:Voile.UI.SizeFlags + parent: Voile.UI + href: Voile.UI.SizeFlags.html + name: SizeFlags + nameWithType: SizeFlags + fullName: Voile.UI.SizeFlags diff --git a/Voile/api/Voile.UI.TextLabel.yml b/Voile/api/Voile.UI.TextLabel.yml new file mode 100644 index 0000000..14e9d37 --- /dev/null +++ b/Voile/api/Voile.UI.TextLabel.yml @@ -0,0 +1,684 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.UI.TextLabel + commentId: T:Voile.UI.TextLabel + id: TextLabel + parent: Voile.UI + children: + - Voile.UI.TextLabel.Font + - Voile.UI.TextLabel.FontColor + - Voile.UI.TextLabel.FontSize + - Voile.UI.TextLabel.OnRender(Voile.Rendering.RenderSystem) + - Voile.UI.TextLabel.Text + langs: + - csharp + - vb + name: TextLabel + nameWithType: TextLabel + fullName: Voile.UI.TextLabel + type: Class + source: + remote: + path: Voile/Source/UI/TextLabel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: TextLabel + path: Source/UI/TextLabel.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: 'public class TextLabel : UIElement' + content.vb: Public Class TextLabel Inherits UIElement + inheritance: + - System.Object + - Voile.UI.UIElement + inheritedMembers: + - Voile.UI.UIElement.Rect + - Voile.UI.UIElement.VerticalSizeFlags + - Voile.UI.UIElement.HorizontalSizeFlags + - Voile.UI.UIElement.ExpandRatio + - Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + - Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + - Voile.UI.UIElement.children + - Voile.UI.UIElement.parent + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.UI.TextLabel.Text + commentId: P:Voile.UI.TextLabel.Text + id: Text + parent: Voile.UI.TextLabel + langs: + - csharp + - vb + name: Text + nameWithType: TextLabel.Text + fullName: Voile.UI.TextLabel.Text + type: Property + source: + remote: + path: Voile/Source/UI/TextLabel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Text + path: Source/UI/TextLabel.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public string Text { get; set; } + parameters: [] + return: + type: System.String + content.vb: Public Property Text As String + overload: Voile.UI.TextLabel.Text* +- uid: Voile.UI.TextLabel.Font + commentId: P:Voile.UI.TextLabel.Font + id: Font + parent: Voile.UI.TextLabel + langs: + - csharp + - vb + name: Font + nameWithType: TextLabel.Font + fullName: Voile.UI.TextLabel.Font + type: Property + source: + remote: + path: Voile/Source/UI/TextLabel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Font + path: Source/UI/TextLabel.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public Font Font { get; set; } + parameters: [] + return: + type: Voile.Font + content.vb: Public Property Font As Font + overload: Voile.UI.TextLabel.Font* +- uid: Voile.UI.TextLabel.FontSize + commentId: P:Voile.UI.TextLabel.FontSize + id: FontSize + parent: Voile.UI.TextLabel + langs: + - csharp + - vb + name: FontSize + nameWithType: TextLabel.FontSize + fullName: Voile.UI.TextLabel.FontSize + type: Property + source: + remote: + path: Voile/Source/UI/TextLabel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: FontSize + path: Source/UI/TextLabel.cs + startLine: 14 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public int FontSize { get; set; } + parameters: [] + return: + type: System.Int32 + content.vb: Public Property FontSize As Integer + overload: Voile.UI.TextLabel.FontSize* +- uid: Voile.UI.TextLabel.FontColor + commentId: P:Voile.UI.TextLabel.FontColor + id: FontColor + parent: Voile.UI.TextLabel + langs: + - csharp + - vb + name: FontColor + nameWithType: TextLabel.FontColor + fullName: Voile.UI.TextLabel.FontColor + type: Property + source: + remote: + path: Voile/Source/UI/TextLabel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: FontColor + path: Source/UI/TextLabel.cs + startLine: 15 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public Color FontColor { get; set; } + parameters: [] + return: + type: Voile.Color + content.vb: Public Property FontColor As Color + overload: Voile.UI.TextLabel.FontColor* +- uid: Voile.UI.TextLabel.OnRender(Voile.Rendering.RenderSystem) + commentId: M:Voile.UI.TextLabel.OnRender(Voile.Rendering.RenderSystem) + id: OnRender(Voile.Rendering.RenderSystem) + parent: Voile.UI.TextLabel + langs: + - csharp + - vb + name: OnRender(RenderSystem) + nameWithType: TextLabel.OnRender(RenderSystem) + fullName: Voile.UI.TextLabel.OnRender(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/UI/TextLabel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnRender + path: Source/UI/TextLabel.cs + startLine: 16 + assemblies: + - Voile + namespace: Voile.UI + example: [] + syntax: + content: protected override void OnRender(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Protected Overrides Sub OnRender(renderer As RenderSystem) + overridden: Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem) + overload: Voile.UI.TextLabel.OnRender* +references: +- uid: Voile.UI + commentId: N:Voile.UI + href: Voile.html + name: Voile.UI + nameWithType: Voile.UI + fullName: Voile.UI + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.UI.UIElement + commentId: T:Voile.UI.UIElement + parent: Voile.UI + href: Voile.UI.UIElement.html + name: UIElement + nameWithType: UIElement + fullName: Voile.UI.UIElement +- uid: Voile.UI.UIElement.Rect + commentId: P:Voile.UI.UIElement.Rect + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Rect + name: Rect + nameWithType: UIElement.Rect + fullName: Voile.UI.UIElement.Rect +- uid: Voile.UI.UIElement.VerticalSizeFlags + commentId: P:Voile.UI.UIElement.VerticalSizeFlags + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_VerticalSizeFlags + name: VerticalSizeFlags + nameWithType: UIElement.VerticalSizeFlags + fullName: Voile.UI.UIElement.VerticalSizeFlags +- uid: Voile.UI.UIElement.HorizontalSizeFlags + commentId: P:Voile.UI.UIElement.HorizontalSizeFlags + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_HorizontalSizeFlags + name: HorizontalSizeFlags + nameWithType: UIElement.HorizontalSizeFlags + fullName: Voile.UI.UIElement.HorizontalSizeFlags +- uid: Voile.UI.UIElement.ExpandRatio + commentId: P:Voile.UI.UIElement.ExpandRatio + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_ExpandRatio + name: ExpandRatio + nameWithType: UIElement.ExpandRatio + fullName: Voile.UI.UIElement.ExpandRatio +- uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + commentId: M:Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_ + name: AddChild(UIElement) + nameWithType: UIElement.AddChild(UIElement) + fullName: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + spec.csharp: + - uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + name: AddChild + href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_ + - name: ( + - uid: Voile.UI.UIElement + name: UIElement + href: Voile.UI.UIElement.html + - name: ) + spec.vb: + - uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + name: AddChild + href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_ + - name: ( + - uid: Voile.UI.UIElement + name: UIElement + href: Voile.UI.UIElement.html + - name: ) +- uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + commentId: M:Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_ + name: Render(RenderSystem) + nameWithType: UIElement.Render(RenderSystem) + fullName: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + name: Render + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + name: Render + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.UI.UIElement.children + commentId: F:Voile.UI.UIElement.children + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_children + name: children + nameWithType: UIElement.children + fullName: Voile.UI.UIElement.children +- uid: Voile.UI.UIElement.parent + commentId: F:Voile.UI.UIElement.parent + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_parent + name: parent + nameWithType: UIElement.parent + fullName: Voile.UI.UIElement.parent +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.UI.TextLabel.Text* + commentId: Overload:Voile.UI.TextLabel.Text + href: Voile.UI.TextLabel.html#Voile_UI_TextLabel_Text + name: Text + nameWithType: TextLabel.Text + fullName: Voile.UI.TextLabel.Text +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.UI.TextLabel.Font* + commentId: Overload:Voile.UI.TextLabel.Font + href: Voile.UI.TextLabel.html#Voile_UI_TextLabel_Font + name: Font + nameWithType: TextLabel.Font + fullName: Voile.UI.TextLabel.Font +- uid: Voile.Font + commentId: T:Voile.Font + parent: Voile + href: Voile.Font.html + name: Font + nameWithType: Font + fullName: Voile.Font +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile +- uid: Voile.UI.TextLabel.FontSize* + commentId: Overload:Voile.UI.TextLabel.FontSize + href: Voile.UI.TextLabel.html#Voile_UI_TextLabel_FontSize + name: FontSize + nameWithType: TextLabel.FontSize + fullName: Voile.UI.TextLabel.FontSize +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: Voile.UI.TextLabel.FontColor* + commentId: Overload:Voile.UI.TextLabel.FontColor + href: Voile.UI.TextLabel.html#Voile_UI_TextLabel_FontColor + name: FontColor + nameWithType: TextLabel.FontColor + fullName: Voile.UI.TextLabel.FontColor +- uid: Voile.Color + commentId: T:Voile.Color + parent: Voile + href: Voile.Color.html + name: Color + nameWithType: Color + fullName: Voile.Color +- uid: Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem) + commentId: M:Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem) + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_OnRender_Voile_Rendering_RenderSystem_ + name: OnRender(RenderSystem) + nameWithType: UIElement.OnRender(RenderSystem) + fullName: Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem) + name: OnRender + href: Voile.UI.UIElement.html#Voile_UI_UIElement_OnRender_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem) + name: OnRender + href: Voile.UI.UIElement.html#Voile_UI_UIElement_OnRender_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.UI.TextLabel.OnRender* + commentId: Overload:Voile.UI.TextLabel.OnRender + href: Voile.UI.TextLabel.html#Voile_UI_TextLabel_OnRender_Voile_Rendering_RenderSystem_ + name: OnRender + nameWithType: TextLabel.OnRender + fullName: Voile.UI.TextLabel.OnRender +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html diff --git a/Voile/api/Voile.UI.UIElement.yml b/Voile/api/Voile.UI.UIElement.yml new file mode 100644 index 0000000..1cc1b11 --- /dev/null +++ b/Voile/api/Voile.UI.UIElement.yml @@ -0,0 +1,831 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.UI.UIElement + commentId: T:Voile.UI.UIElement + id: UIElement + parent: Voile.UI + children: + - Voile.UI.UIElement.#ctor + - Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + - Voile.UI.UIElement.ExpandRatio + - Voile.UI.UIElement.HorizontalSizeFlags + - Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem) + - Voile.UI.UIElement.Rect + - Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + - Voile.UI.UIElement.VerticalSizeFlags + - Voile.UI.UIElement.children + - Voile.UI.UIElement.parent + langs: + - csharp + - vb + name: UIElement + nameWithType: UIElement + fullName: Voile.UI.UIElement + type: Class + source: + remote: + path: Voile/Source/UI/UIElement.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: UIElement + path: Source/UI/UIElement.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public abstract class UIElement + content.vb: Public MustInherit Class UIElement + inheritance: + - System.Object + derivedClasses: + - Voile.UI.Container + - Voile.UI.TextLabel + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.UI.UIElement.Rect + commentId: P:Voile.UI.UIElement.Rect + id: Rect + parent: Voile.UI.UIElement + langs: + - csharp + - vb + name: Rect + nameWithType: UIElement.Rect + fullName: Voile.UI.UIElement.Rect + type: Property + source: + remote: + path: Voile/Source/UI/UIElement.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Rect + path: Source/UI/UIElement.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public Rect Rect { get; set; } + parameters: [] + return: + type: Voile.UI.Rect + content.vb: Public Property Rect As Rect + overload: Voile.UI.UIElement.Rect* +- uid: Voile.UI.UIElement.VerticalSizeFlags + commentId: P:Voile.UI.UIElement.VerticalSizeFlags + id: VerticalSizeFlags + parent: Voile.UI.UIElement + langs: + - csharp + - vb + name: VerticalSizeFlags + nameWithType: UIElement.VerticalSizeFlags + fullName: Voile.UI.UIElement.VerticalSizeFlags + type: Property + source: + remote: + path: Voile/Source/UI/UIElement.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: VerticalSizeFlags + path: Source/UI/UIElement.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public SizeFlags VerticalSizeFlags { get; set; } + parameters: [] + return: + type: Voile.UI.SizeFlags + content.vb: Public Property VerticalSizeFlags As SizeFlags + overload: Voile.UI.UIElement.VerticalSizeFlags* +- uid: Voile.UI.UIElement.HorizontalSizeFlags + commentId: P:Voile.UI.UIElement.HorizontalSizeFlags + id: HorizontalSizeFlags + parent: Voile.UI.UIElement + langs: + - csharp + - vb + name: HorizontalSizeFlags + nameWithType: UIElement.HorizontalSizeFlags + fullName: Voile.UI.UIElement.HorizontalSizeFlags + type: Property + source: + remote: + path: Voile/Source/UI/UIElement.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: HorizontalSizeFlags + path: Source/UI/UIElement.cs + startLine: 10 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public SizeFlags HorizontalSizeFlags { get; set; } + parameters: [] + return: + type: Voile.UI.SizeFlags + content.vb: Public Property HorizontalSizeFlags As SizeFlags + overload: Voile.UI.UIElement.HorizontalSizeFlags* +- uid: Voile.UI.UIElement.ExpandRatio + commentId: P:Voile.UI.UIElement.ExpandRatio + id: ExpandRatio + parent: Voile.UI.UIElement + langs: + - csharp + - vb + name: ExpandRatio + nameWithType: UIElement.ExpandRatio + fullName: Voile.UI.UIElement.ExpandRatio + type: Property + source: + remote: + path: Voile/Source/UI/UIElement.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: ExpandRatio + path: Source/UI/UIElement.cs + startLine: 12 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public Vector2 ExpandRatio { get; set; } + parameters: [] + return: + type: System.Numerics.Vector2 + content.vb: Public Property ExpandRatio As Vector2 + overload: Voile.UI.UIElement.ExpandRatio* +- uid: Voile.UI.UIElement.#ctor + commentId: M:Voile.UI.UIElement.#ctor + id: '#ctor' + parent: Voile.UI.UIElement + langs: + - csharp + - vb + name: UIElement() + nameWithType: UIElement.UIElement() + fullName: Voile.UI.UIElement.UIElement() + type: Constructor + source: + remote: + path: Voile/Source/UI/UIElement.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/UI/UIElement.cs + startLine: 14 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public UIElement() + content.vb: Public Sub New() + overload: Voile.UI.UIElement.#ctor* + nameWithType.vb: UIElement.New() + fullName.vb: Voile.UI.UIElement.New() + name.vb: New() +- uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + commentId: M:Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + id: AddChild(Voile.UI.UIElement) + parent: Voile.UI.UIElement + langs: + - csharp + - vb + name: AddChild(UIElement) + nameWithType: UIElement.AddChild(UIElement) + fullName: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + type: Method + source: + remote: + path: Voile/Source/UI/UIElement.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: AddChild + path: Source/UI/UIElement.cs + startLine: 19 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public void AddChild(UIElement child) + parameters: + - id: child + type: Voile.UI.UIElement + content.vb: Public Sub AddChild(child As UIElement) + overload: Voile.UI.UIElement.AddChild* +- uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + commentId: M:Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + id: Render(Voile.Rendering.RenderSystem) + parent: Voile.UI.UIElement + langs: + - csharp + - vb + name: Render(RenderSystem) + nameWithType: UIElement.Render(RenderSystem) + fullName: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/UI/UIElement.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Render + path: Source/UI/UIElement.cs + startLine: 25 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public void Render(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Public Sub Render(renderer As RenderSystem) + overload: Voile.UI.UIElement.Render* +- uid: Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem) + commentId: M:Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem) + id: OnRender(Voile.Rendering.RenderSystem) + parent: Voile.UI.UIElement + langs: + - csharp + - vb + name: OnRender(RenderSystem) + nameWithType: UIElement.OnRender(RenderSystem) + fullName: Voile.UI.UIElement.OnRender(Voile.Rendering.RenderSystem) + type: Method + source: + remote: + path: Voile/Source/UI/UIElement.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnRender + path: Source/UI/UIElement.cs + startLine: 38 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: protected abstract void OnRender(RenderSystem renderer) + parameters: + - id: renderer + type: Voile.Rendering.RenderSystem + content.vb: Protected MustOverride Sub OnRender(renderer As RenderSystem) + overload: Voile.UI.UIElement.OnRender* +- uid: Voile.UI.UIElement.children + commentId: F:Voile.UI.UIElement.children + id: children + parent: Voile.UI.UIElement + langs: + - csharp + - vb + name: children + nameWithType: UIElement.children + fullName: Voile.UI.UIElement.children + type: Field + source: + remote: + path: Voile/Source/UI/UIElement.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: children + path: Source/UI/UIElement.cs + startLine: 40 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: protected List children + return: + type: System.Collections.Generic.List{Voile.UI.UIElement} + content.vb: Protected children As List(Of UIElement) +- uid: Voile.UI.UIElement.parent + commentId: F:Voile.UI.UIElement.parent + id: parent + parent: Voile.UI.UIElement + langs: + - csharp + - vb + name: parent + nameWithType: UIElement.parent + fullName: Voile.UI.UIElement.parent + type: Field + source: + remote: + path: Voile/Source/UI/UIElement.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: parent + path: Source/UI/UIElement.cs + startLine: 41 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: protected UIElement? parent + return: + type: Voile.UI.UIElement + content.vb: Protected parent As UIElement +references: +- uid: Voile.UI + commentId: N:Voile.UI + href: Voile.html + name: Voile.UI + nameWithType: Voile.UI + fullName: Voile.UI + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.UI.UIElement.Rect* + commentId: Overload:Voile.UI.UIElement.Rect + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Rect + name: Rect + nameWithType: UIElement.Rect + fullName: Voile.UI.UIElement.Rect +- uid: Voile.UI.Rect + commentId: T:Voile.UI.Rect + parent: Voile.UI + href: Voile.UI.Rect.html + name: Rect + nameWithType: Rect + fullName: Voile.UI.Rect +- uid: Voile.UI.UIElement.VerticalSizeFlags* + commentId: Overload:Voile.UI.UIElement.VerticalSizeFlags + href: Voile.UI.UIElement.html#Voile_UI_UIElement_VerticalSizeFlags + name: VerticalSizeFlags + nameWithType: UIElement.VerticalSizeFlags + fullName: Voile.UI.UIElement.VerticalSizeFlags +- uid: Voile.UI.SizeFlags + commentId: T:Voile.UI.SizeFlags + parent: Voile.UI + href: Voile.UI.SizeFlags.html + name: SizeFlags + nameWithType: SizeFlags + fullName: Voile.UI.SizeFlags +- uid: Voile.UI.UIElement.HorizontalSizeFlags* + commentId: Overload:Voile.UI.UIElement.HorizontalSizeFlags + href: Voile.UI.UIElement.html#Voile_UI_UIElement_HorizontalSizeFlags + name: HorizontalSizeFlags + nameWithType: UIElement.HorizontalSizeFlags + fullName: Voile.UI.UIElement.HorizontalSizeFlags +- uid: Voile.UI.UIElement.ExpandRatio* + commentId: Overload:Voile.UI.UIElement.ExpandRatio + href: Voile.UI.UIElement.html#Voile_UI_UIElement_ExpandRatio + name: ExpandRatio + nameWithType: UIElement.ExpandRatio + fullName: Voile.UI.UIElement.ExpandRatio +- uid: System.Numerics.Vector2 + commentId: T:System.Numerics.Vector2 + parent: System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + name: Vector2 + nameWithType: Vector2 + fullName: System.Numerics.Vector2 +- uid: System.Numerics + commentId: N:System.Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Numerics + nameWithType: System.Numerics + fullName: System.Numerics + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Numerics + name: Numerics + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics +- uid: Voile.UI.UIElement.#ctor* + commentId: Overload:Voile.UI.UIElement.#ctor + href: Voile.UI.UIElement.html#Voile_UI_UIElement__ctor + name: UIElement + nameWithType: UIElement.UIElement + fullName: Voile.UI.UIElement.UIElement + nameWithType.vb: UIElement.New + fullName.vb: Voile.UI.UIElement.New + name.vb: New +- uid: Voile.UI.UIElement.AddChild* + commentId: Overload:Voile.UI.UIElement.AddChild + href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_ + name: AddChild + nameWithType: UIElement.AddChild + fullName: Voile.UI.UIElement.AddChild +- uid: Voile.UI.UIElement + commentId: T:Voile.UI.UIElement + parent: Voile.UI + href: Voile.UI.UIElement.html + name: UIElement + nameWithType: UIElement + fullName: Voile.UI.UIElement +- uid: Voile.UI.UIElement.Render* + commentId: Overload:Voile.UI.UIElement.Render + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_ + name: Render + nameWithType: UIElement.Render + fullName: Voile.UI.UIElement.Render +- uid: Voile.Rendering.RenderSystem + commentId: T:Voile.Rendering.RenderSystem + parent: Voile.Rendering + href: Voile.Rendering.RenderSystem.html + name: RenderSystem + nameWithType: RenderSystem + fullName: Voile.Rendering.RenderSystem +- uid: Voile.Rendering + commentId: N:Voile.Rendering + href: Voile.html + name: Voile.Rendering + nameWithType: Voile.Rendering + fullName: Voile.Rendering + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Rendering + name: Rendering + href: Voile.Rendering.html +- uid: Voile.UI.UIElement.OnRender* + commentId: Overload:Voile.UI.UIElement.OnRender + href: Voile.UI.UIElement.html#Voile_UI_UIElement_OnRender_Voile_Rendering_RenderSystem_ + name: OnRender + nameWithType: UIElement.OnRender + fullName: Voile.UI.UIElement.OnRender +- uid: System.Collections.Generic.List{Voile.UI.UIElement} + commentId: T:System.Collections.Generic.List{Voile.UI.UIElement} + parent: System.Collections.Generic + definition: System.Collections.Generic.List`1 + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of UIElement) + fullName.vb: System.Collections.Generic.List(Of Voile.UI.UIElement) + name.vb: List(Of UIElement) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - uid: Voile.UI.UIElement + name: UIElement + href: Voile.UI.UIElement.html + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - uid: Voile.UI.UIElement + name: UIElement + href: Voile.UI.UIElement.html + - name: ) +- uid: System.Collections.Generic.List`1 + commentId: T:System.Collections.Generic.List`1 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + name: List + nameWithType: List + fullName: System.Collections.Generic.List + nameWithType.vb: List(Of T) + fullName.vb: System.Collections.Generic.List(Of T) + name.vb: List(Of T) + spec.csharp: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: < + - name: T + - name: '>' + spec.vb: + - uid: System.Collections.Generic.List`1 + name: List + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1 + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: System.Collections.Generic + commentId: N:System.Collections.Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System.Collections.Generic + nameWithType: System.Collections.Generic + fullName: System.Collections.Generic + spec.csharp: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic + spec.vb: + - uid: System + name: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + - name: . + - uid: System.Collections + name: Collections + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections + - name: . + - uid: System.Collections.Generic + name: Generic + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.collections.generic diff --git a/Voile/api/Voile.UI.VerticalPanel.yml b/Voile/api/Voile.UI.VerticalPanel.yml new file mode 100644 index 0000000..7218b72 --- /dev/null +++ b/Voile/api/Voile.UI.VerticalPanel.yml @@ -0,0 +1,708 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.UI.VerticalPanel + commentId: T:Voile.UI.VerticalPanel + id: VerticalPanel + parent: Voile.UI + children: + - Voile.UI.VerticalPanel.#ctor(Voile.UI.PanelStyle) + - Voile.UI.VerticalPanel.RearrangeChild(System.Int32,Voile.UI.UIElement) + - Voile.UI.VerticalPanel.Spacing + langs: + - csharp + - vb + name: VerticalPanel + nameWithType: VerticalPanel + fullName: Voile.UI.VerticalPanel + type: Class + source: + remote: + path: Voile/Source/UI/VerticalPanel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: VerticalPanel + path: Source/UI/VerticalPanel.cs + startLine: 4 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: 'public class VerticalPanel : Panel' + content.vb: Public Class VerticalPanel Inherits Panel + inheritance: + - System.Object + - Voile.UI.UIElement + - Voile.UI.Container + - Voile.UI.Panel + inheritedMembers: + - Voile.UI.Panel.Style + - Voile.UI.Panel.OnRender(Voile.Rendering.RenderSystem) + - Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + - Voile.UI.Container.RearrangeChildren + - Voile.UI.UIElement.Rect + - Voile.UI.UIElement.VerticalSizeFlags + - Voile.UI.UIElement.HorizontalSizeFlags + - Voile.UI.UIElement.ExpandRatio + - Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + - Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + - Voile.UI.UIElement.children + - Voile.UI.UIElement.parent + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.UI.VerticalPanel.Spacing + commentId: P:Voile.UI.VerticalPanel.Spacing + id: Spacing + parent: Voile.UI.VerticalPanel + langs: + - csharp + - vb + name: Spacing + nameWithType: VerticalPanel.Spacing + fullName: Voile.UI.VerticalPanel.Spacing + type: Property + source: + remote: + path: Voile/Source/UI/VerticalPanel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Spacing + path: Source/UI/VerticalPanel.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public float Spacing { get; set; } + parameters: [] + return: + type: System.Single + content.vb: Public Property Spacing As Single + overload: Voile.UI.VerticalPanel.Spacing* +- uid: Voile.UI.VerticalPanel.#ctor(Voile.UI.PanelStyle) + commentId: M:Voile.UI.VerticalPanel.#ctor(Voile.UI.PanelStyle) + id: '#ctor(Voile.UI.PanelStyle)' + parent: Voile.UI.VerticalPanel + langs: + - csharp + - vb + name: VerticalPanel(PanelStyle) + nameWithType: VerticalPanel.VerticalPanel(PanelStyle) + fullName: Voile.UI.VerticalPanel.VerticalPanel(Voile.UI.PanelStyle) + type: Constructor + source: + remote: + path: Voile/Source/UI/VerticalPanel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/UI/VerticalPanel.cs + startLine: 7 + assemblies: + - Voile + namespace: Voile.UI + syntax: + content: public VerticalPanel(PanelStyle style) + parameters: + - id: style + type: Voile.UI.PanelStyle + content.vb: Public Sub New(style As PanelStyle) + overload: Voile.UI.VerticalPanel.#ctor* + nameWithType.vb: VerticalPanel.New(PanelStyle) + fullName.vb: Voile.UI.VerticalPanel.New(Voile.UI.PanelStyle) + name.vb: New(PanelStyle) +- uid: Voile.UI.VerticalPanel.RearrangeChild(System.Int32,Voile.UI.UIElement) + commentId: M:Voile.UI.VerticalPanel.RearrangeChild(System.Int32,Voile.UI.UIElement) + id: RearrangeChild(System.Int32,Voile.UI.UIElement) + parent: Voile.UI.VerticalPanel + langs: + - csharp + - vb + name: RearrangeChild(int, UIElement) + nameWithType: VerticalPanel.RearrangeChild(int, UIElement) + fullName: Voile.UI.VerticalPanel.RearrangeChild(int, Voile.UI.UIElement) + type: Method + source: + remote: + path: Voile/Source/UI/VerticalPanel.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: RearrangeChild + path: Source/UI/VerticalPanel.cs + startLine: 11 + assemblies: + - Voile + namespace: Voile.UI + example: [] + syntax: + content: protected override void RearrangeChild(int idx, UIElement child) + parameters: + - id: idx + type: System.Int32 + - id: child + type: Voile.UI.UIElement + content.vb: Protected Overrides Sub RearrangeChild(idx As Integer, child As UIElement) + overridden: Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement) + overload: Voile.UI.VerticalPanel.RearrangeChild* + nameWithType.vb: VerticalPanel.RearrangeChild(Integer, UIElement) + fullName.vb: Voile.UI.VerticalPanel.RearrangeChild(Integer, Voile.UI.UIElement) + name.vb: RearrangeChild(Integer, UIElement) +references: +- uid: Voile.UI + commentId: N:Voile.UI + href: Voile.html + name: Voile.UI + nameWithType: Voile.UI + fullName: Voile.UI + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: Voile.UI.UIElement + commentId: T:Voile.UI.UIElement + parent: Voile.UI + href: Voile.UI.UIElement.html + name: UIElement + nameWithType: UIElement + fullName: Voile.UI.UIElement +- uid: Voile.UI.Container + commentId: T:Voile.UI.Container + parent: Voile.UI + href: Voile.UI.Container.html + name: Container + nameWithType: Container + fullName: Voile.UI.Container +- uid: Voile.UI.Panel + commentId: T:Voile.UI.Panel + parent: Voile.UI + href: Voile.UI.Panel.html + name: Panel + nameWithType: Panel + fullName: Voile.UI.Panel +- uid: Voile.UI.Panel.Style + commentId: P:Voile.UI.Panel.Style + parent: Voile.UI.Panel + href: Voile.UI.Panel.html#Voile_UI_Panel_Style + name: Style + nameWithType: Panel.Style + fullName: Voile.UI.Panel.Style +- uid: Voile.UI.Panel.OnRender(Voile.Rendering.RenderSystem) + commentId: M:Voile.UI.Panel.OnRender(Voile.Rendering.RenderSystem) + parent: Voile.UI.Panel + href: Voile.UI.Panel.html#Voile_UI_Panel_OnRender_Voile_Rendering_RenderSystem_ + name: OnRender(RenderSystem) + nameWithType: Panel.OnRender(RenderSystem) + fullName: Voile.UI.Panel.OnRender(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.UI.Panel.OnRender(Voile.Rendering.RenderSystem) + name: OnRender + href: Voile.UI.Panel.html#Voile_UI_Panel_OnRender_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.UI.Panel.OnRender(Voile.Rendering.RenderSystem) + name: OnRender + href: Voile.UI.Panel.html#Voile_UI_Panel_OnRender_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + commentId: M:Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + parent: Voile.UI.Container + isExternal: true + href: Voile.UI.Container.html#Voile_UI_Container_UpdateRect_System_Numerics_Vector2_System_Numerics_Vector2_ + name: UpdateRect(Vector2, Vector2) + nameWithType: Container.UpdateRect(Vector2, Vector2) + fullName: Voile.UI.Container.UpdateRect(System.Numerics.Vector2, System.Numerics.Vector2) + spec.csharp: + - uid: Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + name: UpdateRect + href: Voile.UI.Container.html#Voile_UI_Container_UpdateRect_System_Numerics_Vector2_System_Numerics_Vector2_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ) + spec.vb: + - uid: Voile.UI.Container.UpdateRect(System.Numerics.Vector2,System.Numerics.Vector2) + name: UpdateRect + href: Voile.UI.Container.html#Voile_UI_Container_UpdateRect_System_Numerics_Vector2_System_Numerics_Vector2_ + - name: ( + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ',' + - name: " " + - uid: System.Numerics.Vector2 + name: Vector2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.numerics.vector2 + - name: ) +- uid: Voile.UI.Container.RearrangeChildren + commentId: M:Voile.UI.Container.RearrangeChildren + parent: Voile.UI.Container + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChildren + name: RearrangeChildren() + nameWithType: Container.RearrangeChildren() + fullName: Voile.UI.Container.RearrangeChildren() + spec.csharp: + - uid: Voile.UI.Container.RearrangeChildren + name: RearrangeChildren + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChildren + - name: ( + - name: ) + spec.vb: + - uid: Voile.UI.Container.RearrangeChildren + name: RearrangeChildren + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChildren + - name: ( + - name: ) +- uid: Voile.UI.UIElement.Rect + commentId: P:Voile.UI.UIElement.Rect + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Rect + name: Rect + nameWithType: UIElement.Rect + fullName: Voile.UI.UIElement.Rect +- uid: Voile.UI.UIElement.VerticalSizeFlags + commentId: P:Voile.UI.UIElement.VerticalSizeFlags + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_VerticalSizeFlags + name: VerticalSizeFlags + nameWithType: UIElement.VerticalSizeFlags + fullName: Voile.UI.UIElement.VerticalSizeFlags +- uid: Voile.UI.UIElement.HorizontalSizeFlags + commentId: P:Voile.UI.UIElement.HorizontalSizeFlags + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_HorizontalSizeFlags + name: HorizontalSizeFlags + nameWithType: UIElement.HorizontalSizeFlags + fullName: Voile.UI.UIElement.HorizontalSizeFlags +- uid: Voile.UI.UIElement.ExpandRatio + commentId: P:Voile.UI.UIElement.ExpandRatio + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_ExpandRatio + name: ExpandRatio + nameWithType: UIElement.ExpandRatio + fullName: Voile.UI.UIElement.ExpandRatio +- uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + commentId: M:Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_ + name: AddChild(UIElement) + nameWithType: UIElement.AddChild(UIElement) + fullName: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + spec.csharp: + - uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + name: AddChild + href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_ + - name: ( + - uid: Voile.UI.UIElement + name: UIElement + href: Voile.UI.UIElement.html + - name: ) + spec.vb: + - uid: Voile.UI.UIElement.AddChild(Voile.UI.UIElement) + name: AddChild + href: Voile.UI.UIElement.html#Voile_UI_UIElement_AddChild_Voile_UI_UIElement_ + - name: ( + - uid: Voile.UI.UIElement + name: UIElement + href: Voile.UI.UIElement.html + - name: ) +- uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + commentId: M:Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_ + name: Render(RenderSystem) + nameWithType: UIElement.Render(RenderSystem) + fullName: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + spec.csharp: + - uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + name: Render + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) + spec.vb: + - uid: Voile.UI.UIElement.Render(Voile.Rendering.RenderSystem) + name: Render + href: Voile.UI.UIElement.html#Voile_UI_UIElement_Render_Voile_Rendering_RenderSystem_ + - name: ( + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + href: Voile.Rendering.RenderSystem.html + - name: ) +- uid: Voile.UI.UIElement.children + commentId: F:Voile.UI.UIElement.children + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_children + name: children + nameWithType: UIElement.children + fullName: Voile.UI.UIElement.children +- uid: Voile.UI.UIElement.parent + commentId: F:Voile.UI.UIElement.parent + parent: Voile.UI.UIElement + href: Voile.UI.UIElement.html#Voile_UI_UIElement_parent + name: parent + nameWithType: UIElement.parent + fullName: Voile.UI.UIElement.parent +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: Voile.UI.VerticalPanel.Spacing* + commentId: Overload:Voile.UI.VerticalPanel.Spacing + href: Voile.UI.VerticalPanel.html#Voile_UI_VerticalPanel_Spacing + name: Spacing + nameWithType: VerticalPanel.Spacing + fullName: Voile.UI.VerticalPanel.Spacing +- uid: System.Single + commentId: T:System.Single + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.single + name: float + nameWithType: float + fullName: float + nameWithType.vb: Single + fullName.vb: Single + name.vb: Single +- uid: Voile.UI.VerticalPanel.#ctor* + commentId: Overload:Voile.UI.VerticalPanel.#ctor + href: Voile.UI.VerticalPanel.html#Voile_UI_VerticalPanel__ctor_Voile_UI_PanelStyle_ + name: VerticalPanel + nameWithType: VerticalPanel.VerticalPanel + fullName: Voile.UI.VerticalPanel.VerticalPanel + nameWithType.vb: VerticalPanel.New + fullName.vb: Voile.UI.VerticalPanel.New + name.vb: New +- uid: Voile.UI.PanelStyle + commentId: T:Voile.UI.PanelStyle + parent: Voile.UI + href: Voile.UI.PanelStyle.html + name: PanelStyle + nameWithType: PanelStyle + fullName: Voile.UI.PanelStyle +- uid: Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement) + commentId: M:Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement) + parent: Voile.UI.Container + isExternal: true + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChild_System_Int32_Voile_UI_UIElement_ + name: RearrangeChild(int, UIElement) + nameWithType: Container.RearrangeChild(int, UIElement) + fullName: Voile.UI.Container.RearrangeChild(int, Voile.UI.UIElement) + nameWithType.vb: Container.RearrangeChild(Integer, UIElement) + fullName.vb: Voile.UI.Container.RearrangeChild(Integer, Voile.UI.UIElement) + name.vb: RearrangeChild(Integer, UIElement) + spec.csharp: + - uid: Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement) + name: RearrangeChild + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChild_System_Int32_Voile_UI_UIElement_ + - name: ( + - uid: System.Int32 + name: int + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: Voile.UI.UIElement + name: UIElement + href: Voile.UI.UIElement.html + - name: ) + spec.vb: + - uid: Voile.UI.Container.RearrangeChild(System.Int32,Voile.UI.UIElement) + name: RearrangeChild + href: Voile.UI.Container.html#Voile_UI_Container_RearrangeChild_System_Int32_Voile_UI_UIElement_ + - name: ( + - uid: System.Int32 + name: Integer + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + - name: ',' + - name: " " + - uid: Voile.UI.UIElement + name: UIElement + href: Voile.UI.UIElement.html + - name: ) +- uid: Voile.UI.VerticalPanel.RearrangeChild* + commentId: Overload:Voile.UI.VerticalPanel.RearrangeChild + href: Voile.UI.VerticalPanel.html#Voile_UI_VerticalPanel_RearrangeChild_System_Int32_Voile_UI_UIElement_ + name: RearrangeChild + nameWithType: VerticalPanel.RearrangeChild + fullName: Voile.UI.VerticalPanel.RearrangeChild +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer diff --git a/Voile/api/Voile.UI.yml b/Voile/api/Voile.UI.yml new file mode 100644 index 0000000..dc6b920 --- /dev/null +++ b/Voile/api/Voile.UI.yml @@ -0,0 +1,107 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.UI + commentId: N:Voile.UI + id: Voile.UI + children: + - Voile.UI.Container + - Voile.UI.MarginPanel + - Voile.UI.Panel + - Voile.UI.PanelStyle + - Voile.UI.Rect + - Voile.UI.SizeFlags + - Voile.UI.TextLabel + - Voile.UI.UIElement + - Voile.UI.VerticalPanel + langs: + - csharp + - vb + name: Voile.UI + nameWithType: Voile.UI + fullName: Voile.UI + type: Namespace + assemblies: + - Voile +references: +- uid: Voile.UI.Container + commentId: T:Voile.UI.Container + parent: Voile.UI + href: Voile.UI.Container.html + name: Container + nameWithType: Container + fullName: Voile.UI.Container +- uid: Voile.UI.MarginPanel + commentId: T:Voile.UI.MarginPanel + href: Voile.UI.MarginPanel.html + name: MarginPanel + nameWithType: MarginPanel + fullName: Voile.UI.MarginPanel +- uid: Voile.UI.Panel + commentId: T:Voile.UI.Panel + parent: Voile.UI + href: Voile.UI.Panel.html + name: Panel + nameWithType: Panel + fullName: Voile.UI.Panel +- uid: Voile.UI.PanelStyle + commentId: T:Voile.UI.PanelStyle + parent: Voile.UI + href: Voile.UI.PanelStyle.html + name: PanelStyle + nameWithType: PanelStyle + fullName: Voile.UI.PanelStyle +- uid: Voile.UI.Rect + commentId: T:Voile.UI.Rect + parent: Voile.UI + href: Voile.UI.Rect.html + name: Rect + nameWithType: Rect + fullName: Voile.UI.Rect +- uid: Voile.UI.TextLabel + commentId: T:Voile.UI.TextLabel + href: Voile.UI.TextLabel.html + name: TextLabel + nameWithType: TextLabel + fullName: Voile.UI.TextLabel +- uid: Voile.UI.UIElement + commentId: T:Voile.UI.UIElement + parent: Voile.UI + href: Voile.UI.UIElement.html + name: UIElement + nameWithType: UIElement + fullName: Voile.UI.UIElement +- uid: Voile.UI.SizeFlags + commentId: T:Voile.UI.SizeFlags + parent: Voile.UI + href: Voile.UI.SizeFlags.html + name: SizeFlags + nameWithType: SizeFlags + fullName: Voile.UI.SizeFlags +- uid: Voile.UI.VerticalPanel + commentId: T:Voile.UI.VerticalPanel + href: Voile.UI.VerticalPanel.html + name: VerticalPanel + nameWithType: VerticalPanel + fullName: Voile.UI.VerticalPanel +- uid: Voile.UI + commentId: N:Voile.UI + href: Voile.html + name: Voile.UI + nameWithType: Voile.UI + fullName: Voile.UI + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.UI + name: UI + href: Voile.UI.html diff --git a/Voile/api/Voile.Utils.LogLevel.yml b/Voile/api/Voile.Utils.LogLevel.yml new file mode 100644 index 0000000..3ba841a --- /dev/null +++ b/Voile/api/Voile.Utils.LogLevel.yml @@ -0,0 +1,166 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Utils.LogLevel + commentId: T:Voile.Utils.LogLevel + id: LogLevel + parent: Voile.Utils + children: + - Voile.Utils.LogLevel.Echo + - Voile.Utils.LogLevel.Error + - Voile.Utils.LogLevel.Info + - Voile.Utils.LogLevel.Warn + langs: + - csharp + - vb + name: LogLevel + nameWithType: LogLevel + fullName: Voile.Utils.LogLevel + type: Enum + source: + remote: + path: Voile/Source/Utils/Logger.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LogLevel + path: Source/Utils/Logger.cs + startLine: 145 + assemblies: + - Voile + namespace: Voile.Utils + syntax: + content: public enum LogLevel + content.vb: Public Enum LogLevel +- uid: Voile.Utils.LogLevel.Error + commentId: F:Voile.Utils.LogLevel.Error + id: Error + parent: Voile.Utils.LogLevel + langs: + - csharp + - vb + name: Error + nameWithType: LogLevel.Error + fullName: Voile.Utils.LogLevel.Error + type: Field + source: + remote: + path: Voile/Source/Utils/Logger.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Error + path: Source/Utils/Logger.cs + startLine: 147 + assemblies: + - Voile + namespace: Voile.Utils + syntax: + content: Error = 0 + return: + type: Voile.Utils.LogLevel +- uid: Voile.Utils.LogLevel.Warn + commentId: F:Voile.Utils.LogLevel.Warn + id: Warn + parent: Voile.Utils.LogLevel + langs: + - csharp + - vb + name: Warn + nameWithType: LogLevel.Warn + fullName: Voile.Utils.LogLevel.Warn + type: Field + source: + remote: + path: Voile/Source/Utils/Logger.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Warn + path: Source/Utils/Logger.cs + startLine: 148 + assemblies: + - Voile + namespace: Voile.Utils + syntax: + content: Warn = 1 + return: + type: Voile.Utils.LogLevel +- uid: Voile.Utils.LogLevel.Info + commentId: F:Voile.Utils.LogLevel.Info + id: Info + parent: Voile.Utils.LogLevel + langs: + - csharp + - vb + name: Info + nameWithType: LogLevel.Info + fullName: Voile.Utils.LogLevel.Info + type: Field + source: + remote: + path: Voile/Source/Utils/Logger.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Info + path: Source/Utils/Logger.cs + startLine: 149 + assemblies: + - Voile + namespace: Voile.Utils + syntax: + content: Info = 2 + return: + type: Voile.Utils.LogLevel +- uid: Voile.Utils.LogLevel.Echo + commentId: F:Voile.Utils.LogLevel.Echo + id: Echo + parent: Voile.Utils.LogLevel + langs: + - csharp + - vb + name: Echo + nameWithType: LogLevel.Echo + fullName: Voile.Utils.LogLevel.Echo + type: Field + source: + remote: + path: Voile/Source/Utils/Logger.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Echo + path: Source/Utils/Logger.cs + startLine: 150 + assemblies: + - Voile + namespace: Voile.Utils + syntax: + content: Echo = 3 + return: + type: Voile.Utils.LogLevel +references: +- uid: Voile.Utils + commentId: N:Voile.Utils + href: Voile.html + name: Voile.Utils + nameWithType: Voile.Utils + fullName: Voile.Utils + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Utils + name: Utils + href: Voile.Utils.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Utils + name: Utils + href: Voile.Utils.html +- uid: Voile.Utils.LogLevel + commentId: T:Voile.Utils.LogLevel + parent: Voile.Utils + href: Voile.Utils.LogLevel.html + name: LogLevel + nameWithType: LogLevel + fullName: Voile.Utils.LogLevel diff --git a/Voile/api/Voile.Utils.Logger.yml b/Voile/api/Voile.Utils.Logger.yml new file mode 100644 index 0000000..ae0b530 --- /dev/null +++ b/Voile/api/Voile.Utils.Logger.yml @@ -0,0 +1,783 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Utils.Logger + commentId: T:Voile.Utils.Logger + id: Logger + parent: Voile.Utils + children: + - Voile.Utils.Logger.#ctor(System.String) + - Voile.Utils.Logger.Echo(System.String) + - Voile.Utils.Logger.Error(System.String,System.String) + - Voile.Utils.Logger.Info(System.String,System.String) + - Voile.Utils.Logger.LogLevel + - Voile.Utils.Logger.LogPath + - Voile.Utils.Logger.MaxLogFiles + - Voile.Utils.Logger.OnLog + - Voile.Utils.Logger.Warn(System.String,System.String) + - Voile.Utils.Logger.WriteToFile + langs: + - csharp + - vb + name: Logger + nameWithType: Logger + fullName: Voile.Utils.Logger + type: Class + source: + remote: + path: Voile/Source/Utils/Logger.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Logger + path: Source/Utils/Logger.cs + startLine: 6 + assemblies: + - Voile + namespace: Voile.Utils + syntax: + content: public class Logger + content.vb: Public Class Logger + inheritance: + - System.Object + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString +- uid: Voile.Utils.Logger.OnLog + commentId: F:Voile.Utils.Logger.OnLog + id: OnLog + parent: Voile.Utils.Logger + langs: + - csharp + - vb + name: OnLog + nameWithType: Logger.OnLog + fullName: Voile.Utils.Logger.OnLog + type: Field + source: + remote: + path: Voile/Source/Utils/Logger.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: OnLog + path: Source/Utils/Logger.cs + startLine: 8 + assemblies: + - Voile + namespace: Voile.Utils + syntax: + content: public static Action? OnLog + return: + type: System.Action{System.String,Voile.Utils.LogLevel} + content.vb: Public Shared OnLog As Action(Of String, LogLevel) +- uid: Voile.Utils.Logger.LogPath + commentId: P:Voile.Utils.Logger.LogPath + id: LogPath + parent: Voile.Utils.Logger + langs: + - csharp + - vb + name: LogPath + nameWithType: Logger.LogPath + fullName: Voile.Utils.Logger.LogPath + type: Property + source: + remote: + path: Voile/Source/Utils/Logger.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LogPath + path: Source/Utils/Logger.cs + startLine: 9 + assemblies: + - Voile + namespace: Voile.Utils + syntax: + content: public static string LogPath { get; set; } + parameters: [] + return: + type: System.String + content.vb: Public Shared Property LogPath As String + overload: Voile.Utils.Logger.LogPath* +- uid: Voile.Utils.Logger.MaxLogFiles + commentId: P:Voile.Utils.Logger.MaxLogFiles + id: MaxLogFiles + parent: Voile.Utils.Logger + langs: + - csharp + - vb + name: MaxLogFiles + nameWithType: Logger.MaxLogFiles + fullName: Voile.Utils.Logger.MaxLogFiles + type: Property + source: + remote: + path: Voile/Source/Utils/Logger.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: MaxLogFiles + path: Source/Utils/Logger.cs + startLine: 14 + assemblies: + - Voile + namespace: Voile.Utils + summary: Maximum amount of log files in a log folder. If it reaches the limit, all logs will be written to voile-latest.log instead of creating a new one. + example: [] + syntax: + content: public static int MaxLogFiles { get; set; } + parameters: [] + return: + type: System.Int32 + content.vb: Public Shared Property MaxLogFiles As Integer + overload: Voile.Utils.Logger.MaxLogFiles* +- uid: Voile.Utils.Logger.LogLevel + commentId: F:Voile.Utils.Logger.LogLevel + id: LogLevel + parent: Voile.Utils.Logger + langs: + - csharp + - vb + name: LogLevel + nameWithType: Logger.LogLevel + fullName: Voile.Utils.Logger.LogLevel + type: Field + source: + remote: + path: Voile/Source/Utils/Logger.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: LogLevel + path: Source/Utils/Logger.cs + startLine: 19 + assemblies: + - Voile + namespace: Voile.Utils + summary: Specifies the logging level. In release builds, the log level is Error. In debug, the log level is Echo. + example: [] + syntax: + content: public static LogLevel LogLevel + return: + type: Voile.Utils.LogLevel + content.vb: Public Shared LogLevel As LogLevel +- uid: Voile.Utils.Logger.WriteToFile + commentId: F:Voile.Utils.Logger.WriteToFile + id: WriteToFile + parent: Voile.Utils.Logger + langs: + - csharp + - vb + name: WriteToFile + nameWithType: Logger.WriteToFile + fullName: Voile.Utils.Logger.WriteToFile + type: Field + source: + remote: + path: Voile/Source/Utils/Logger.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: WriteToFile + path: Source/Utils/Logger.cs + startLine: 23 + assemblies: + - Voile + namespace: Voile.Utils + summary: Specifies if the logger should write to file. + example: [] + syntax: + content: public static bool WriteToFile + return: + type: System.Boolean + content.vb: Public Shared WriteToFile As Boolean +- uid: Voile.Utils.Logger.#ctor(System.String) + commentId: M:Voile.Utils.Logger.#ctor(System.String) + id: '#ctor(System.String)' + parent: Voile.Utils.Logger + langs: + - csharp + - vb + name: Logger(string) + nameWithType: Logger.Logger(string) + fullName: Voile.Utils.Logger.Logger(string) + type: Constructor + source: + remote: + path: Voile/Source/Utils/Logger.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: .ctor + path: Source/Utils/Logger.cs + startLine: 25 + assemblies: + - Voile + namespace: Voile.Utils + syntax: + content: public Logger(string className) + parameters: + - id: className + type: System.String + content.vb: Public Sub New(className As String) + overload: Voile.Utils.Logger.#ctor* + nameWithType.vb: Logger.New(String) + fullName.vb: Voile.Utils.Logger.New(String) + name.vb: New(String) +- uid: Voile.Utils.Logger.Echo(System.String) + commentId: M:Voile.Utils.Logger.Echo(System.String) + id: Echo(System.String) + parent: Voile.Utils.Logger + langs: + - csharp + - vb + name: Echo(string) + nameWithType: Logger.Echo(string) + fullName: Voile.Utils.Logger.Echo(string) + type: Method + source: + remote: + path: Voile/Source/Utils/Logger.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Echo + path: Source/Utils/Logger.cs + startLine: 58 + assemblies: + - Voile + namespace: Voile.Utils + syntax: + content: public void Echo(string what) + parameters: + - id: what + type: System.String + content.vb: Public Sub Echo(what As String) + overload: Voile.Utils.Logger.Echo* + nameWithType.vb: Logger.Echo(String) + fullName.vb: Voile.Utils.Logger.Echo(String) + name.vb: Echo(String) +- uid: Voile.Utils.Logger.Info(System.String,System.String) + commentId: M:Voile.Utils.Logger.Info(System.String,System.String) + id: Info(System.String,System.String) + parent: Voile.Utils.Logger + langs: + - csharp + - vb + name: Info(string, string) + nameWithType: Logger.Info(string, string) + fullName: Voile.Utils.Logger.Info(string, string) + type: Method + source: + remote: + path: Voile/Source/Utils/Logger.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Info + path: Source/Utils/Logger.cs + startLine: 67 + assemblies: + - Voile + namespace: Voile.Utils + syntax: + content: public void Info(string what, string method = "") + parameters: + - id: what + type: System.String + - id: method + type: System.String + content.vb: Public Sub Info(what As String, method As String = "") + overload: Voile.Utils.Logger.Info* + nameWithType.vb: Logger.Info(String, String) + fullName.vb: Voile.Utils.Logger.Info(String, String) + name.vb: Info(String, String) +- uid: Voile.Utils.Logger.Warn(System.String,System.String) + commentId: M:Voile.Utils.Logger.Warn(System.String,System.String) + id: Warn(System.String,System.String) + parent: Voile.Utils.Logger + langs: + - csharp + - vb + name: Warn(string, string) + nameWithType: Logger.Warn(string, string) + fullName: Voile.Utils.Logger.Warn(string, string) + type: Method + source: + remote: + path: Voile/Source/Utils/Logger.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Warn + path: Source/Utils/Logger.cs + startLine: 77 + assemblies: + - Voile + namespace: Voile.Utils + syntax: + content: public void Warn(string what, string method = "") + parameters: + - id: what + type: System.String + - id: method + type: System.String + content.vb: Public Sub Warn(what As String, method As String = "") + overload: Voile.Utils.Logger.Warn* + nameWithType.vb: Logger.Warn(String, String) + fullName.vb: Voile.Utils.Logger.Warn(String, String) + name.vb: Warn(String, String) +- uid: Voile.Utils.Logger.Error(System.String,System.String) + commentId: M:Voile.Utils.Logger.Error(System.String,System.String) + id: Error(System.String,System.String) + parent: Voile.Utils.Logger + langs: + - csharp + - vb + name: Error(string, string) + nameWithType: Logger.Error(string, string) + fullName: Voile.Utils.Logger.Error(string, string) + type: Method + source: + remote: + path: Voile/Source/Utils/Logger.cs + branch: main + repo: git@github.com:dnesov/DaggerFramework.git + id: Error + path: Source/Utils/Logger.cs + startLine: 87 + assemblies: + - Voile + namespace: Voile.Utils + syntax: + content: public void Error(string what, string method = "") + parameters: + - id: what + type: System.String + - id: method + type: System.String + content.vb: Public Sub [Error](what As String, method As String = "") + overload: Voile.Utils.Logger.Error* + nameWithType.vb: Logger.Error(String, String) + fullName.vb: Voile.Utils.Logger.Error(String, String) + name.vb: Error(String, String) +references: +- uid: Voile.Utils + commentId: N:Voile.Utils + href: Voile.html + name: Voile.Utils + nameWithType: Voile.Utils + fullName: Voile.Utils + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Utils + name: Utils + href: Voile.Utils.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Utils + name: Utils + href: Voile.Utils.html +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + name: object + nameWithType: object + fullName: object + nameWithType.vb: Object + fullName.vb: Object + name.vb: Object +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + name: Equals(object) + nameWithType: object.Equals(object) + fullName: object.Equals(object) + nameWithType.vb: Object.Equals(Object) + fullName.vb: Object.Equals(Object) + name.vb: Equals(Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + name: Equals(object, object) + nameWithType: object.Equals(object, object) + fullName: object.Equals(object, object) + nameWithType.vb: Object.Equals(Object, Object) + fullName.vb: Object.Equals(Object, Object) + name.vb: Equals(Object, Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + name: GetHashCode() + nameWithType: object.GetHashCode() + fullName: object.GetHashCode() + nameWithType.vb: Object.GetHashCode() + fullName.vb: Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode + - name: ( + - name: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + name: GetType() + nameWithType: object.GetType() + fullName: object.GetType() + nameWithType.vb: Object.GetType() + fullName.vb: Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.gettype + - name: ( + - name: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + name: MemberwiseClone() + nameWithType: object.MemberwiseClone() + fullName: object.MemberwiseClone() + nameWithType.vb: Object.MemberwiseClone() + fullName.vb: Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone + - name: ( + - name: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + name: ReferenceEquals(object, object) + nameWithType: object.ReferenceEquals(object, object) + fullName: object.ReferenceEquals(object, object) + nameWithType.vb: Object.ReferenceEquals(Object, Object) + fullName.vb: Object.ReferenceEquals(Object, Object) + name.vb: ReferenceEquals(Object, Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals + - name: ( + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ',' + - name: " " + - uid: System.Object + name: Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object + - name: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + name: ToString() + nameWithType: object.ToString() + fullName: object.ToString() + nameWithType.vb: Object.ToString() + fullName.vb: Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.object.tostring + - name: ( + - name: ) +- uid: System + commentId: N:System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system + name: System + nameWithType: System + fullName: System +- uid: System.Action{System.String,Voile.Utils.LogLevel} + commentId: T:System.Action{System.String,Voile.Utils.LogLevel} + parent: System + definition: System.Action`2 + href: https://learn.microsoft.com/dotnet/api/system.action-2 + name: Action + nameWithType: Action + fullName: System.Action + nameWithType.vb: Action(Of String, LogLevel) + fullName.vb: System.Action(Of String, Voile.Utils.LogLevel) + name.vb: Action(Of String, LogLevel) + spec.csharp: + - uid: System.Action`2 + name: Action + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.action-2 + - name: < + - uid: System.String + name: string + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: Voile.Utils.LogLevel + name: LogLevel + href: Voile.Utils.LogLevel.html + - name: '>' + spec.vb: + - uid: System.Action`2 + name: Action + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.action-2 + - name: ( + - name: Of + - name: " " + - uid: System.String + name: String + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + - name: ',' + - name: " " + - uid: Voile.Utils.LogLevel + name: LogLevel + href: Voile.Utils.LogLevel.html + - name: ) +- uid: System.Action`2 + commentId: T:System.Action`2 + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.action-2 + name: Action + nameWithType: Action + fullName: System.Action + nameWithType.vb: Action(Of T1, T2) + fullName.vb: System.Action(Of T1, T2) + name.vb: Action(Of T1, T2) + spec.csharp: + - uid: System.Action`2 + name: Action + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.action-2 + - name: < + - name: T1 + - name: ',' + - name: " " + - name: T2 + - name: '>' + spec.vb: + - uid: System.Action`2 + name: Action + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.action-2 + - name: ( + - name: Of + - name: " " + - name: T1 + - name: ',' + - name: " " + - name: T2 + - name: ) +- uid: Voile.Utils.Logger.LogPath* + commentId: Overload:Voile.Utils.Logger.LogPath + href: Voile.Utils.Logger.html#Voile_Utils_Logger_LogPath + name: LogPath + nameWithType: Logger.LogPath + fullName: Voile.Utils.Logger.LogPath +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.string + name: string + nameWithType: string + fullName: string + nameWithType.vb: String + fullName.vb: String + name.vb: String +- uid: Voile.Utils.Logger.MaxLogFiles* + commentId: Overload:Voile.Utils.Logger.MaxLogFiles + href: Voile.Utils.Logger.html#Voile_Utils_Logger_MaxLogFiles + name: MaxLogFiles + nameWithType: Logger.MaxLogFiles + fullName: Voile.Utils.Logger.MaxLogFiles +- uid: System.Int32 + commentId: T:System.Int32 + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.int32 + name: int + nameWithType: int + fullName: int + nameWithType.vb: Integer + fullName.vb: Integer + name.vb: Integer +- uid: Voile.Utils.LogLevel + commentId: T:Voile.Utils.LogLevel + parent: Voile.Utils + href: Voile.Utils.LogLevel.html + name: LogLevel + nameWithType: LogLevel + fullName: Voile.Utils.LogLevel +- uid: System.Boolean + commentId: T:System.Boolean + parent: System + isExternal: true + href: https://learn.microsoft.com/dotnet/api/system.boolean + name: bool + nameWithType: bool + fullName: bool + nameWithType.vb: Boolean + fullName.vb: Boolean + name.vb: Boolean +- uid: Voile.Utils.Logger.#ctor* + commentId: Overload:Voile.Utils.Logger.#ctor + href: Voile.Utils.Logger.html#Voile_Utils_Logger__ctor_System_String_ + name: Logger + nameWithType: Logger.Logger + fullName: Voile.Utils.Logger.Logger + nameWithType.vb: Logger.New + fullName.vb: Voile.Utils.Logger.New + name.vb: New +- uid: Voile.Utils.Logger.Echo* + commentId: Overload:Voile.Utils.Logger.Echo + href: Voile.Utils.Logger.html#Voile_Utils_Logger_Echo_System_String_ + name: Echo + nameWithType: Logger.Echo + fullName: Voile.Utils.Logger.Echo +- uid: Voile.Utils.Logger.Info* + commentId: Overload:Voile.Utils.Logger.Info + href: Voile.Utils.Logger.html#Voile_Utils_Logger_Info_System_String_System_String_ + name: Info + nameWithType: Logger.Info + fullName: Voile.Utils.Logger.Info +- uid: Voile.Utils.Logger.Warn* + commentId: Overload:Voile.Utils.Logger.Warn + href: Voile.Utils.Logger.html#Voile_Utils_Logger_Warn_System_String_System_String_ + name: Warn + nameWithType: Logger.Warn + fullName: Voile.Utils.Logger.Warn +- uid: Voile.Utils.Logger.Error* + commentId: Overload:Voile.Utils.Logger.Error + href: Voile.Utils.Logger.html#Voile_Utils_Logger_Error_System_String_System_String_ + name: Error + nameWithType: Logger.Error + fullName: Voile.Utils.Logger.Error diff --git a/Voile/api/Voile.Utils.yml b/Voile/api/Voile.Utils.yml new file mode 100644 index 0000000..14f9733 --- /dev/null +++ b/Voile/api/Voile.Utils.yml @@ -0,0 +1,53 @@ +### YamlMime:ManagedReference +items: +- uid: Voile.Utils + commentId: N:Voile.Utils + id: Voile.Utils + children: + - Voile.Utils.LogLevel + - Voile.Utils.Logger + langs: + - csharp + - vb + name: Voile.Utils + nameWithType: Voile.Utils + fullName: Voile.Utils + type: Namespace + assemblies: + - Voile +references: +- uid: Voile.Utils.Logger + commentId: T:Voile.Utils.Logger + href: Voile.Utils.Logger.html + name: Logger + nameWithType: Logger + fullName: Voile.Utils.Logger +- uid: Voile.Utils.LogLevel + commentId: T:Voile.Utils.LogLevel + parent: Voile.Utils + href: Voile.Utils.LogLevel.html + name: LogLevel + nameWithType: LogLevel + fullName: Voile.Utils.LogLevel +- uid: Voile.Utils + commentId: N:Voile.Utils + href: Voile.html + name: Voile.Utils + nameWithType: Voile.Utils + fullName: Voile.Utils + spec.csharp: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Utils + name: Utils + href: Voile.Utils.html + spec.vb: + - uid: Voile + name: Voile + href: Voile.html + - name: . + - uid: Voile.Utils + name: Utils + href: Voile.Utils.html diff --git a/Voile/api/Voile.yml b/Voile/api/Voile.yml new file mode 100644 index 0000000..a11c102 --- /dev/null +++ b/Voile/api/Voile.yml @@ -0,0 +1,163 @@ +### YamlMime:ManagedReference +items: +- uid: Voile + commentId: N:Voile + id: Voile + children: + - Voile.AudioBus + - Voile.AudioEffect + - Voile.AudioEffectReverb + - Voile.Color + - Voile.Font + - Voile.Game + - Voile.IStartableSystem + - Voile.IStartableSystem`1 + - Voile.IUpdatableSystem + - Voile.MathUtils + - Voile.Resource + - Voile.Sound + - Voile.SoundFormat + - Voile.Texture2d + - Voile.Texture2dLoader + - Voile.TextureFormat + langs: + - csharp + - vb + name: Voile + nameWithType: Voile + fullName: Voile + type: Namespace + assemblies: + - Voile +references: +- uid: Voile.AudioBus + commentId: T:Voile.AudioBus + href: Voile.AudioBus.html + name: AudioBus + nameWithType: AudioBus + fullName: Voile.AudioBus +- uid: Voile.AudioEffect + commentId: T:Voile.AudioEffect + parent: Voile + href: Voile.AudioEffect.html + name: AudioEffect + nameWithType: AudioEffect + fullName: Voile.AudioEffect +- uid: Voile.AudioEffectReverb + commentId: T:Voile.AudioEffectReverb + href: Voile.AudioEffectReverb.html + name: AudioEffectReverb + nameWithType: AudioEffectReverb + fullName: Voile.AudioEffectReverb +- uid: Voile.Game + commentId: T:Voile.Game + href: Voile.Game.html + name: Game + nameWithType: Game + fullName: Voile.Game +- uid: Voile.Font + commentId: T:Voile.Font + parent: Voile + href: Voile.Font.html + name: Font + nameWithType: Font + fullName: Voile.Font +- uid: Voile.Texture2dLoader + commentId: T:Voile.Texture2dLoader + href: Voile.Texture2dLoader.html + name: Texture2dLoader + nameWithType: Texture2dLoader + fullName: Voile.Texture2dLoader +- uid: Voile.Resource + commentId: T:Voile.Resource + parent: Voile + href: Voile.Resource.html + name: Resource + nameWithType: Resource + fullName: Voile.Resource +- uid: Voile.Sound + commentId: T:Voile.Sound + parent: Voile + href: Voile.Sound.html + name: Sound + nameWithType: Sound + fullName: Voile.Sound +- uid: Voile.SoundFormat + commentId: T:Voile.SoundFormat + parent: Voile + href: Voile.SoundFormat.html + name: SoundFormat + nameWithType: SoundFormat + fullName: Voile.SoundFormat +- uid: Voile.Texture2d + commentId: T:Voile.Texture2d + parent: Voile + href: Voile.Texture2d.html + name: Texture2d + nameWithType: Texture2d + fullName: Voile.Texture2d +- uid: Voile.TextureFormat + commentId: T:Voile.TextureFormat + parent: Voile + href: Voile.TextureFormat.html + name: TextureFormat + nameWithType: TextureFormat + fullName: Voile.TextureFormat +- uid: Voile.IStartableSystem + commentId: T:Voile.IStartableSystem + parent: Voile + href: Voile.IStartableSystem.html + name: IStartableSystem + nameWithType: IStartableSystem + fullName: Voile.IStartableSystem +- uid: Voile.IStartableSystem`1 + commentId: T:Voile.IStartableSystem`1 + href: Voile.IStartableSystem-1.html + name: IStartableSystem + nameWithType: IStartableSystem + fullName: Voile.IStartableSystem + nameWithType.vb: IStartableSystem(Of T) + fullName.vb: Voile.IStartableSystem(Of T) + name.vb: IStartableSystem(Of T) + spec.csharp: + - uid: Voile.IStartableSystem`1 + name: IStartableSystem + href: Voile.IStartableSystem-1.html + - name: < + - name: T + - name: '>' + spec.vb: + - uid: Voile.IStartableSystem`1 + name: IStartableSystem + href: Voile.IStartableSystem-1.html + - name: ( + - name: Of + - name: " " + - name: T + - name: ) +- uid: Voile.IUpdatableSystem + commentId: T:Voile.IUpdatableSystem + parent: Voile + href: Voile.IUpdatableSystem.html + name: IUpdatableSystem + nameWithType: IUpdatableSystem + fullName: Voile.IUpdatableSystem +- uid: Voile.Color + commentId: T:Voile.Color + parent: Voile + href: Voile.Color.html + name: Color + nameWithType: Color + fullName: Voile.Color +- uid: Voile.MathUtils + commentId: T:Voile.MathUtils + href: Voile.MathUtils.html + name: MathUtils + nameWithType: MathUtils + fullName: Voile.MathUtils +- uid: Voile + commentId: N:Voile + href: Voile.html + name: Voile + nameWithType: Voile + fullName: Voile diff --git a/Voile/api/toc.yml b/Voile/api/toc.yml new file mode 100644 index 0000000..c30eb77 --- /dev/null +++ b/Voile/api/toc.yml @@ -0,0 +1,180 @@ +### YamlMime:TableOfContent +items: +- uid: Voile + name: Voile + items: + - uid: Voile.AudioBus + name: AudioBus + - uid: Voile.AudioEffect + name: AudioEffect + - uid: Voile.AudioEffectReverb + name: AudioEffectReverb + - uid: Voile.Color + name: Color + - uid: Voile.Font + name: Font + - uid: Voile.Game + name: Game + - uid: Voile.IStartableSystem + name: IStartableSystem + - uid: Voile.IStartableSystem`1 + name: IStartableSystem + - uid: Voile.IUpdatableSystem + name: IUpdatableSystem + - uid: Voile.MathUtils + name: MathUtils + - uid: Voile.Resource + name: Resource + - uid: Voile.Sound + name: Sound + - uid: Voile.SoundFormat + name: SoundFormat + - uid: Voile.Texture2d + name: Texture2d + - uid: Voile.Texture2dLoader + name: Texture2dLoader + - uid: Voile.TextureFormat + name: TextureFormat +- uid: Voile.Audio + name: Voile.Audio + items: + - uid: Voile.Audio.AudioSystem + name: AudioSystem + - uid: Voile.Audio.DummyAudioSystem + name: DummyAudioSystem + - uid: Voile.Audio.FmodAudioSystem + name: FmodAudioSystem + - uid: Voile.Audio.SoundInstance + name: SoundInstance +- uid: Voile.Extensions + name: Voile.Extensions + items: + - uid: Voile.Extensions.Mat4Extensions + name: Mat4Extensions + - uid: Voile.Extensions.Vector2Extensions + name: Vector2Extensions +- uid: Voile.Input + name: Voile.Input + items: + - uid: Voile.Input.InputAction + name: InputAction + - uid: Voile.Input.InputSystem + name: InputSystem + - uid: Voile.Input.KeyInputAction + name: KeyInputAction + - uid: Voile.Input.KeyboardKey + name: KeyboardKey + - uid: Voile.Input.MouseButton + name: MouseButton + - uid: Voile.Input.RaylibInputSystem + name: RaylibInputSystem +- uid: Voile.Rendering + name: Voile.Rendering + items: + - uid: Voile.Rendering.ColorRectShader + name: ColorRectShader + - uid: Voile.Rendering.Material + name: Material + - uid: Voile.Rendering.Msaa + name: Msaa + - uid: Voile.Rendering.RaylibRenderSystem + name: RaylibRenderSystem + - uid: Voile.Rendering.RenderSystem + name: RenderSystem + - uid: Voile.Rendering.RendererSettings + name: RendererSettings + - uid: Voile.Rendering.Shader + name: Shader + - uid: Voile.Rendering.StandardRenderSystem + name: StandardRenderSystem + - uid: Voile.Rendering.UnlitMaterial + name: UnlitMaterial + - uid: Voile.Rendering.WindowSettings + name: WindowSettings +- uid: Voile.Resources + name: Voile.Resources + items: + - uid: Voile.Resources.FontLoader + name: FontLoader + - uid: Voile.Resources.IResourceLoader`1 + name: IResourceLoader + - uid: Voile.Resources.IResourceSaver`1 + name: IResourceSaver + - uid: Voile.Resources.ResourceManager + name: ResourceManager + - uid: Voile.Resources.SoundLoader + name: SoundLoader +- uid: Voile.SceneGraph + name: Voile.SceneGraph + items: + - uid: Voile.SceneGraph.Camera2d + name: Camera2d + - uid: Voile.SceneGraph.CircleShape2d + name: CircleShape2d + - uid: Voile.SceneGraph.Drawable2d + name: Drawable2d + - uid: Voile.SceneGraph.Entity + name: Entity + - uid: Voile.SceneGraph.Entity2d + name: Entity2d + - uid: Voile.SceneGraph.EntityLayer + name: EntityLayer + - uid: Voile.SceneGraph.IDrawable + name: IDrawable + - uid: Voile.SceneGraph.IMainLoop + name: IMainLoop + - uid: Voile.SceneGraph.ImGuiController + name: ImGuiController + - uid: Voile.SceneGraph.ImGuiRenderLayer + name: ImGuiRenderLayer + - uid: Voile.SceneGraph.Layer + name: Layer + - uid: Voile.SceneGraph.Particle + name: Particle + - uid: Voile.SceneGraph.ParticleSettings + name: ParticleSettings + - uid: Voile.SceneGraph.Particles2d + name: Particles2d + - uid: Voile.SceneGraph.RectangleShape2d + name: RectangleShape2d + - uid: Voile.SceneGraph.Scene + name: Scene + - uid: Voile.SceneGraph.SceneSettings + name: SceneSettings + - uid: Voile.SceneGraph.SerializedScene + name: SerializedScene + - uid: Voile.SceneGraph.SerializedSceneSaver + name: SerializedSceneSaver + - uid: Voile.SceneGraph.Sprite2d + name: Sprite2d + - uid: Voile.SceneGraph.Text2d + name: Text2d +- uid: Voile.UI + name: Voile.UI + items: + - uid: Voile.UI.Container + name: Container + - uid: Voile.UI.MarginPanel + name: MarginPanel + - uid: Voile.UI.Panel + name: Panel + - uid: Voile.UI.PanelStyle + name: PanelStyle + - uid: Voile.UI.Rect + name: Rect + - uid: Voile.UI.SizeFlags + name: SizeFlags + - uid: Voile.UI.TextLabel + name: TextLabel + - uid: Voile.UI.UIElement + name: UIElement + - uid: Voile.UI.VerticalPanel + name: VerticalPanel +- uid: Voile.Utils + name: Voile.Utils + items: + - uid: Voile.Utils.LogLevel + name: LogLevel + - uid: Voile.Utils.Logger + name: Logger +memberLayout: SamePage diff --git a/Voile/docfx.json b/Voile/docfx.json new file mode 100644 index 0000000..d562bbe --- /dev/null +++ b/Voile/docfx.json @@ -0,0 +1,45 @@ +{ + "metadata": [ + { + "src": [ + { + "src": "", + "files": [ + "**/*.csproj" + ] + } + ], + "dest": "api" + } + ], + "build": { + "content": [ + { + "files": [ + "**/*.{md,yml}" + ], + "exclude": [ + "_site/**" + ] + } + ], + "resource": [ + { + "files": [ + "images/**" + ] + } + ], + "output": "_site", + "template": [ + "default", + "modern" + ], + "globalMetadata": { + "_appName": "Voile Docs", + "_appTitle": "Voile Docs", + "_enableSearch": true, + "pdf": true + } + } +} \ No newline at end of file diff --git a/Voile/docs/architecture.md b/Voile/docs/architecture.md new file mode 100644 index 0000000..63af9e7 --- /dev/null +++ b/Voile/docs/architecture.md @@ -0,0 +1,21 @@ +# Architecture + +## [Game](../api/Voile.Game.yml) + +Entry point for your Voile game. It provides overridable methods for all stages of the lifetime, as well as exposes systems for rendering, input and resource management. + +## Systems + +Individual systems are the building blocks that you can use to construct your game. Default systems accessible in [Game](../api/Voile.Game.yml) class include [RenderSystem](../api/Voile.Rendering.RenderSystem.yml) and [InputSystem](../api/Voile.Input.InputSystem.yml). + +They're convenient wrappers for various libraries and/or functionality providers (ex. particle systems, physics), requiring an initialization and shutdown stage to properly create and dispose their internal resources. As an example, an [FmodAudioSystem](../api/Voile.Audio.FmodAudioSystem.yml) requires to initialize [FMOD](https://www.fmod.com/) audio engine with certain parameters in `Start` method, and release native handles in `Dispose` method. + +You can create custom systems by implementing [IStartableSystem](../api/Voile.IStartableSystem.yml), and/or [IUpdatableSystem](../api/Voile.IUpdatableSystem.yml). Custom systems can later be instantiated and started in `Game`'s `Initialize` step, and disposed in `Shutdown`. For updatable systems, refer to system-specific documentation, as they may require a different or fixed timestep separate from rendering. + +## Resources + +Resources are non-source dependencies of your game. Textures, audio, config data (saved in TOML, JSON, YAML, etc.), and fonts are good example of resources that a game may use. For these typical resources, you can load them and manage their lifetime using the [ResourceManager](../api/Voile.Resources.ResourceManager.yml). + +For advanced use, you can also create custom resources tailored for your needs by inheriting a base [Resource](../api/Voile.Resource.yml). Next step in implementing a resource requires you to create a class that implements [IResourceLoader](../api/Voile.Resources.IResourceLoader-1.yml) and register it in the [ResourceManager](../api/Voile.Resources.ResourceManager.yml) with `AddResourceLoaderAssociation()`, in your `Game`'s `Initialize` step. + +Each resource can be instantiated from a byte buffer, removing the need of using [ResourceManager](../api/Voile.Resources.ResourceManager.yml). This is not recommended and should only be used for corner cases where using ResourceManager is not optimal, such as loading resources from memory, network, and other places outside of the file system. diff --git a/Voile/docs/getting-started.md b/Voile/docs/getting-started.md new file mode 100644 index 0000000..da5ac47 --- /dev/null +++ b/Voile/docs/getting-started.md @@ -0,0 +1,20 @@ +# Getting Started + +> [!NOTE] +> Installation process is subject to change. Currently, Voile doesn't have a dedicated NuGet package and template, so the only way to obtain it is by using it as a git submodule and referencing Voile's .csproj in your project. + +## Installing Voile as a Git submodule + +1. Create a new console project hosting your game with `dotnet new console`. +2. Add Voile as a Git submodule with `git submodule add `. For more information about submodules, refer to the [official manual](https://git-scm.com/book/en/v2/Git-Tools-Submodules). +3. Include Voile.csproj in your project's .csproj file. Example: + +```xml + + + +``` + +4. Create a new C# source file hosting your game. For an example, refer to the [Introduction](introduction.md) page. + +## Shipping your game diff --git a/Voile/docs/introduction.md b/Voile/docs/introduction.md new file mode 100644 index 0000000..9e2a9ec --- /dev/null +++ b/Voile/docs/introduction.md @@ -0,0 +1,107 @@ +# Introduction + +> [!IMPORTANT] +> Voile is still work in progress and not production-ready. Expect stability and performance issues, lacking documentation, and experimental APIs. + +Welcome to the documentation for Voile, a cross-platform game framework written in C#. + +## Considerations + +Before using Voile or any other software, its important to know if a particular engine/framework is suitable for your workflow, goals and requirements. **Here's what Voile doesn't try to be**: + +- **A fully fledged game IDE with a scene editor**. Voile will have its own editors for some resources (particles, asset bundles, etc.) and a default module for a scene graph based on Entity Component architecture, but it will not provide a full blown scene editor in itself. Consider alternatives such as Godot or Unity if you require tight integration with a WYSIWYG editor. +- **A cutting edge 3D engine**. Voile will provide basic 3D functionality suitable for PSX or cartoon-styled games, but if you want to make AAA grade 3D graphics, consider Unreal or Unity. +- **A dedicated game engine**. Voile will never provide tools for a specific genre. Think of it as a collection of libraries that simplify work with rendering, input, physics, and creating your own tools for modifying your game-specific content. Entity management, order of execution, etc. is managed manually by the user. + +## What's missing + +Voile is still work in progress, but has a [roadmap](roadmap.md) with planned features. + +## Features + +- 2D rendering. +- **Minimal size and fast startups**. Voile is built with NativeAOT compatibility in mind, doesn't ship unnecessary things, and doesn't run anything without your knowledge. +- **Full control over resources and lifetime**. No default main loop behavior, implicit system initialization (more on that later), and resources instantiation. +- **Content hot-reloading**. All resources can be reloaded while the game is running, reducing iteration time. + +## Minimal project example + +### TestGame.cs + +```csharp +using Voile; +using Voile.Resources; +using Voile.Utils; + +public class TestGame : Game +{ + public override string ResourceRoot => "Resources/"; + + // Called when it's time to initialize the subsystems, or modify default game settings or system settings. + public override void Initialize() + { + // Initializes systems with defaults. + InitializeDefault(); + } + + // Called when it's time to load the game's resources, such as images or sounds. + protected override void LoadResources() + { + if (!ResourceManager.TryLoad("my_sound", "sounds/test_sound.ogg", out Sound? _testSound)) + { + // Handle resource load failure here. + // Display an on-screen alert, close the game, reload from a different path, etc. + } + + if (!ResourceManager.TryLoad("inter_regular", "fonts/Inter-Regular.ttf", out Font? _font)) + { + // Handle resource load failure here. + // Display an on-screen alert, close the game, reload from a different path, etc. + } + } + + // Called when it's safe to manipulate the resources or/and systems. + // You can safely create game objects, scenes, etc. in this method. + protected override void Ready() + { + Input.AddInputMapping("play", new InputAction[] { new KeyInputAction(KeyboardKey.Spacebar) }); + Input.AddInputMapping("sprint", new InputAction[] { new KeyInputAction(KeyboardKey.LeftShift) }); + Input.AddInputMapping("toggle_fullscreen", new InputAction[] { new KeyInputAction(KeyboardKey.F11) }); + } + + // Called when everything has been readied to start the main loop. + protected override void Run() + { + while (Renderer.ShouldRun) + { + if (Input.IsActionPressed("play")) + { + _logger.Echo("Spacebar pressed!"); + } + + Renderer.BeginFrame(); + // Sets transform for drawing at the center of the screen. We won't use transform pivot. + Renderer.SetTransform(position: Renderer.WindowSize / 2, pivot: Vector2.Zero); + Renderer.DrawCircle(radius: 16f, Color.White); + Renderer.EndFrame(); + } + } + + // Called when the application quits and it's safe to clean up. + public override void Shutdown() + { + // Default resource shutdown and cleanup. + ShutdownDefault(); + } + + private Logger _logger = new(nameof(TestGame)); +} +``` + +### Program.cs + +```csharp +// Use the default constructor for game. +var game = new TestGame(); +game.Start(); +``` diff --git a/Voile/docs/roadmap.md b/Voile/docs/roadmap.md new file mode 100644 index 0000000..1adb97e --- /dev/null +++ b/Voile/docs/roadmap.md @@ -0,0 +1,60 @@ +# Roadmap + +## Core + +- ~~Add and implement interfaces for systems (ISystem, IUpdatableSystem, etc.)~~ +- Minimize amount of possible null references. +- Serialization and deserialization of Resources from and to TOML files. +- Add documentation for common classes. +- Hot reloading of resources. + +## I/O + +- Use GUIDs and string ID maps for fetching resources instead of string IDs alone. +- (stretch goal) Make async API for ResourceManager +- (stretch goal/1.0) Streamed resource loading +- (stretch goal) Virtual file system + +## Serialization + +- Serialize attribute. +- Add automatic serialization of resources through code generation and System.Text.Json. +- Provide means for fetching key/value configuration (INI? TOML?) + - Expose some sort of ConfigFile class for safe key/value configuration fetching. + +## Rendering + +- ~~API for drawing textured quads~~ +- ~~Camera API~~ +- Arbitrary mesh rendering API. +- (1.0) Create WebGPU renderer (StandardRenderer) + +## Audio + +- ~~Integrate FMOD~~ +- 2D audio abstraction + +## Misc + +- ~~Asset manager~~ +- ~~Separate engine and game into separate projects~~ +- ~~Particle system~~ + +## SceneGraph module + +- ~~Layers (sorting mechanism)~~ +- Full overhaul using Entity Component architecture (not to be mistaken with ECS). +- Save/load scenes from file + +## Input + +- ~~Action system~~ +- Make action system use an InputMap resource instead. +- Gamepad support + +## UI + +- Immediate mode API. +- Styling. +- Basic input elements (button, text field, toggle). +- Containers (vertical and horizontal). diff --git a/Voile/docs/toc.yml b/Voile/docs/toc.yml new file mode 100644 index 0000000..712e309 --- /dev/null +++ b/Voile/docs/toc.yml @@ -0,0 +1,9 @@ +- name: Basics +- href: introduction.md +- href: getting-started.md +- href: architecture.md +- name: Examples +- name: Optional Systems +- name: Scene Graph Module +- name: Other +- href: roadmap.md diff --git a/Voile/index.md b/Voile/index.md new file mode 100644 index 0000000..31d2600 --- /dev/null +++ b/Voile/index.md @@ -0,0 +1,9 @@ +--- +_layout: landing +--- + +# Voile Docs + +Welcome to the documentation page for Voile. + +[Introduction](docs/introduction.md) diff --git a/Voile/toc.yml b/Voile/toc.yml new file mode 100644 index 0000000..061acc6 --- /dev/null +++ b/Voile/toc.yml @@ -0,0 +1,4 @@ +- name: Docs + href: docs/ +- name: API + href: api/ \ No newline at end of file