Add DocFX documentation.
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -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/
|
||||
@@ -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).
|
||||
@@ -1,8 +1,2 @@
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
var game = new TestGame();
|
||||
game.Start();
|
||||
}
|
||||
}
|
||||
var game = new TestGame();
|
||||
game.Start();
|
||||
@@ -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<Sound>("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<Font>("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"))
|
||||
{
|
||||
|
||||
40
Voile/Source/Audio/AudioSystem.cs
Normal file
40
Voile/Source/Audio/AudioSystem.cs
Normal file
@@ -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>(T effect, string bus = "Master") where T : AudioEffect;
|
||||
|
||||
|
||||
private LehmerRandom _random = new LehmerRandom();
|
||||
}
|
||||
@@ -1,3 +1,4 @@
|
||||
using Voile.Input;
|
||||
using Voile.Rendering;
|
||||
using Voile.Resources;
|
||||
|
||||
@@ -34,6 +35,9 @@ namespace Voile
|
||||
/// </summary>
|
||||
public virtual string Name => "";
|
||||
|
||||
/// <summary>
|
||||
/// Default game constructor.
|
||||
/// </summary>
|
||||
public Game()
|
||||
{
|
||||
ResourceManager = new ResourceManager();
|
||||
@@ -41,6 +45,19 @@ namespace Voile
|
||||
Renderer = new RaylibRenderSystem();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Game constructor with custom systems.
|
||||
/// </summary>
|
||||
/// <param name="resourceManager"></param>
|
||||
/// <param name="inputSystem"></param>
|
||||
/// <param name="renderSystem"></param>
|
||||
public Game(ResourceManager resourceManager, InputSystem inputSystem, RenderSystem renderSystem)
|
||||
{
|
||||
ResourceManager = resourceManager;
|
||||
Input = inputSystem;
|
||||
Renderer = renderSystem;
|
||||
}
|
||||
|
||||
/// <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.
|
||||
@@ -77,7 +94,7 @@ namespace Voile
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 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.
|
||||
/// </summary>
|
||||
public abstract void Initialize();
|
||||
/// <summary>
|
||||
@@ -85,7 +102,7 @@ namespace Voile
|
||||
/// </summary>
|
||||
protected abstract void LoadResources();
|
||||
/// <summary>
|
||||
/// 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.
|
||||
/// </summary>
|
||||
protected abstract void Ready();
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Voile
|
||||
namespace Voile.Input
|
||||
{
|
||||
public abstract class InputAction
|
||||
{
|
||||
|
||||
@@ -2,7 +2,7 @@ using System.Diagnostics.CodeAnalysis;
|
||||
using System.Numerics;
|
||||
using Voile.Utils;
|
||||
|
||||
namespace Voile
|
||||
namespace Voile.Input
|
||||
{
|
||||
/// <summary>
|
||||
/// A system providing means for collecting user input, as well as defining custom <see cref="InputAction"/> list.
|
||||
@@ -1,10 +1,10 @@
|
||||
using System.Numerics;
|
||||
using Raylib_cs;
|
||||
|
||||
namespace Voile
|
||||
namespace Voile.Input
|
||||
{
|
||||
/// <summary>
|
||||
/// An input system implemented using Raylib's API. Used by default together with <see cref="RaylibRenderer"/>.
|
||||
/// An input system implemented using Raylib's API. Used by default together with <see cref="RaylibRenderSystem"/>.
|
||||
/// </summary>
|
||||
public class RaylibInputSystem : InputSystem
|
||||
{
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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.
|
||||
/// </summary>
|
||||
/// <param name="position">Global transform position.</param>
|
||||
/// <param name="offset">Local offset point around which shapes will rotate.</param>
|
||||
/// <param name="pivot">Local offset point around which shapes will rotate.</param>
|
||||
/// <param name="rotation">Rotation.</param>
|
||||
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;
|
||||
}
|
||||
/// <summary>
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -8,9 +8,10 @@ namespace Voile.Resources
|
||||
{
|
||||
public string ResourceRoot { get; set; } = "Resources/";
|
||||
|
||||
public bool TryLoad<T>(string resourceId, string path) where T : Resource
|
||||
public bool TryLoad<T>(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;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using Voile.Audio;
|
||||
using Voile.Input;
|
||||
using Voile.Rendering;
|
||||
|
||||
namespace Voile.SceneGraph
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
using Voile.Resources;
|
||||
using Voile.Rendering;
|
||||
using System.Text.Json.Serialization;
|
||||
using Voile.Input;
|
||||
|
||||
namespace Voile.SceneGraph
|
||||
{
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
using System.Text.Json;
|
||||
using Voile.Audio;
|
||||
using Voile.Input;
|
||||
using Voile.Rendering;
|
||||
using Voile.Resources;
|
||||
|
||||
|
||||
@@ -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>(T effect, string bus = "Master") where T : AudioEffect;
|
||||
|
||||
|
||||
private LehmerRandom _random = new LehmerRandom();
|
||||
}
|
||||
}
|
||||
@@ -1,3 +1,5 @@
|
||||
namespace Voile;
|
||||
|
||||
public interface IStartableSystem
|
||||
{
|
||||
void Start();
|
||||
|
||||
@@ -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)
|
||||
|
||||
713
Voile/api/.manifest
Normal file
713
Voile/api/.manifest
Normal file
@@ -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"
|
||||
}
|
||||
952
Voile/api/Voile.Audio.AudioSystem.yml
Normal file
952
Voile/api/Voile.Audio.AudioSystem.yml
Normal file
@@ -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>(T, string)
|
||||
nameWithType: AudioSystem.AddBusEffect<T>(T, string)
|
||||
fullName: Voile.Audio.AudioSystem.AddBusEffect<T>(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>(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
|
||||
1159
Voile/api/Voile.Audio.DummyAudioSystem.yml
Normal file
1159
Voile/api/Voile.Audio.DummyAudioSystem.yml
Normal file
File diff suppressed because it is too large
Load Diff
1157
Voile/api/Voile.Audio.FmodAudioSystem.yml
Normal file
1157
Voile/api/Voile.Audio.FmodAudioSystem.yml
Normal file
File diff suppressed because it is too large
Load Diff
587
Voile/api/Voile.Audio.SoundInstance.yml
Normal file
587
Voile/api/Voile.Audio.SoundInstance.yml
Normal file
@@ -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
|
||||
68
Voile/api/Voile.Audio.yml
Normal file
68
Voile/api/Voile.Audio.yml
Normal file
@@ -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
|
||||
282
Voile/api/Voile.AudioBus.yml
Normal file
282
Voile/api/Voile.AudioBus.yml
Normal file
@@ -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
|
||||
284
Voile/api/Voile.AudioEffect.yml
Normal file
284
Voile/api/Voile.AudioEffect.yml
Normal file
@@ -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
|
||||
290
Voile/api/Voile.AudioEffectReverb.yml
Normal file
290
Voile/api/Voile.AudioEffectReverb.yml
Normal file
@@ -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
|
||||
1544
Voile/api/Voile.Color.yml
Normal file
1544
Voile/api/Voile.Color.yml
Normal file
File diff suppressed because it is too large
Load Diff
382
Voile/api/Voile.Extensions.Mat4Extensions.yml
Normal file
382
Voile/api/Voile.Extensions.Mat4Extensions.yml
Normal file
@@ -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
|
||||
390
Voile/api/Voile.Extensions.Vector2Extensions.yml
Normal file
390
Voile/api/Voile.Extensions.Vector2Extensions.yml
Normal file
@@ -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
|
||||
30
Voile/api/Voile.Extensions.yml
Normal file
30
Voile/api/Voile.Extensions.yml
Normal file
@@ -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
|
||||
477
Voile/api/Voile.Font.yml
Normal file
477
Voile/api/Voile.Font.yml
Normal file
@@ -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: )
|
||||
987
Voile/api/Voile.Game.yml
Normal file
987
Voile/api/Voile.Game.yml
Normal file
@@ -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 <xref href="Voile.Input.RaylibInputSystem" data-throw-if-not-resolved="false"></xref> 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 <xref href="Voile.Rendering.RaylibRenderSystem" data-throw-if-not-resolved="false"></xref> 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
|
||||
93
Voile/api/Voile.IStartableSystem-1.yml
Normal file
93
Voile/api/Voile.IStartableSystem-1.yml
Normal file
@@ -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<T>
|
||||
nameWithType: IStartableSystem<T>
|
||||
fullName: Voile.IStartableSystem<T>
|
||||
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<T>
|
||||
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<T>.Start(T)
|
||||
fullName: Voile.IStartableSystem<T>.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<T>.Start
|
||||
fullName: Voile.IStartableSystem<T>.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
|
||||
68
Voile/api/Voile.IStartableSystem.yml
Normal file
68
Voile/api/Voile.IStartableSystem.yml
Normal file
@@ -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
|
||||
92
Voile/api/Voile.IUpdatableSystem.yml
Normal file
92
Voile/api/Voile.IUpdatableSystem.yml
Normal file
@@ -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
|
||||
432
Voile/api/Voile.Input.InputAction.yml
Normal file
432
Voile/api/Voile.Input.InputAction.yml
Normal file
@@ -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
|
||||
1678
Voile/api/Voile.Input.InputSystem.yml
Normal file
1678
Voile/api/Voile.Input.InputSystem.yml
Normal file
File diff suppressed because it is too large
Load Diff
604
Voile/api/Voile.Input.KeyInputAction.yml
Normal file
604
Voile/api/Voile.Input.KeyInputAction.yml
Normal file
@@ -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
|
||||
3028
Voile/api/Voile.Input.KeyboardKey.yml
Normal file
3028
Voile/api/Voile.Input.KeyboardKey.yml
Normal file
File diff suppressed because it is too large
Load Diff
149
Voile/api/Voile.Input.MouseButton.yml
Normal file
149
Voile/api/Voile.Input.MouseButton.yml
Normal file
@@ -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: >-
|
||||
<Flags>
|
||||
|
||||
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
|
||||
1734
Voile/api/Voile.Input.RaylibInputSystem.yml
Normal file
1734
Voile/api/Voile.Input.RaylibInputSystem.yml
Normal file
File diff suppressed because it is too large
Load Diff
84
Voile/api/Voile.Input.yml
Normal file
84
Voile/api/Voile.Input.yml
Normal file
@@ -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
|
||||
416
Voile/api/Voile.InputAction.yml
Normal file
416
Voile/api/Voile.InputAction.yml
Normal file
@@ -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
|
||||
1655
Voile/api/Voile.InputSystem.yml
Normal file
1655
Voile/api/Voile.InputSystem.yml
Normal file
File diff suppressed because it is too large
Load Diff
588
Voile/api/Voile.KeyInputAction.yml
Normal file
588
Voile/api/Voile.KeyInputAction.yml
Normal file
@@ -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
|
||||
3012
Voile/api/Voile.KeyboardKey.yml
Normal file
3012
Voile/api/Voile.KeyboardKey.yml
Normal file
File diff suppressed because it is too large
Load Diff
558
Voile/api/Voile.MathUtils.yml
Normal file
558
Voile/api/Voile.MathUtils.yml
Normal file
@@ -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
|
||||
133
Voile/api/Voile.MouseButton.yml
Normal file
133
Voile/api/Voile.MouseButton.yml
Normal file
@@ -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: >-
|
||||
<Flags>
|
||||
|
||||
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
|
||||
1711
Voile/api/Voile.RaylibInputSystem.yml
Normal file
1711
Voile/api/Voile.RaylibInputSystem.yml
Normal file
File diff suppressed because it is too large
Load Diff
407
Voile/api/Voile.Rendering.ColorRectShader.yml
Normal file
407
Voile/api/Voile.Rendering.ColorRectShader.yml
Normal file
@@ -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
|
||||
345
Voile/api/Voile.Rendering.Material.yml
Normal file
345
Voile/api/Voile.Rendering.Material.yml
Normal file
@@ -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
|
||||
166
Voile/api/Voile.Rendering.Msaa.yml
Normal file
166
Voile/api/Voile.Rendering.Msaa.yml
Normal file
@@ -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
|
||||
2721
Voile/api/Voile.Rendering.RaylibRenderSystem.yml
Normal file
2721
Voile/api/Voile.Rendering.RaylibRenderSystem.yml
Normal file
File diff suppressed because it is too large
Load Diff
2059
Voile/api/Voile.Rendering.RenderSystem.yml
Normal file
2059
Voile/api/Voile.Rendering.RenderSystem.yml
Normal file
File diff suppressed because it is too large
Load Diff
533
Voile/api/Voile.Rendering.RendererSettings.yml
Normal file
533
Voile/api/Voile.Rendering.RendererSettings.yml
Normal file
@@ -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
|
||||
383
Voile/api/Voile.Rendering.Shader.yml
Normal file
383
Voile/api/Voile.Rendering.Shader.yml
Normal file
@@ -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
|
||||
2723
Voile/api/Voile.Rendering.StandardRenderSystem.yml
Normal file
2723
Voile/api/Voile.Rendering.StandardRenderSystem.yml
Normal file
File diff suppressed because it is too large
Load Diff
316
Voile/api/Voile.Rendering.UnlitMaterial.yml
Normal file
316
Voile/api/Voile.Rendering.UnlitMaterial.yml
Normal file
@@ -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
|
||||
511
Voile/api/Voile.Rendering.WindowSettings.yml
Normal file
511
Voile/api/Voile.Rendering.WindowSettings.yml
Normal file
@@ -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
|
||||
115
Voile/api/Voile.Rendering.yml
Normal file
115
Voile/api/Voile.Rendering.yml
Normal file
@@ -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
|
||||
617
Voile/api/Voile.Resource.yml
Normal file
617
Voile/api/Voile.Resource.yml
Normal file
@@ -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: >-
|
||||
<JsonIgnore>
|
||||
|
||||
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: >-
|
||||
<JsonIgnore>
|
||||
|
||||
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: )
|
||||
642
Voile/api/Voile.Resources.FontLoader.yml
Normal file
642
Voile/api/Voile.Resources.FontLoader.yml
Normal file
@@ -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<Font>'
|
||||
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<string> 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<Font>
|
||||
nameWithType: IResourceLoader<Font>
|
||||
fullName: Voile.Resources.IResourceLoader<Voile.Font>
|
||||
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<T>
|
||||
nameWithType: IResourceLoader<T>
|
||||
fullName: Voile.Resources.IResourceLoader<T>
|
||||
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<Font>.SupportedExtensions
|
||||
fullName: Voile.Resources.IResourceLoader<Voile.Font>.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<string>
|
||||
nameWithType: IEnumerable<string>
|
||||
fullName: System.Collections.Generic.IEnumerable<string>
|
||||
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<T>.SupportedExtensions
|
||||
fullName: Voile.Resources.IResourceLoader<T>.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<T>
|
||||
nameWithType: IEnumerable<T>
|
||||
fullName: System.Collections.Generic.IEnumerable<T>
|
||||
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<Font>.Load(string)
|
||||
fullName: Voile.Resources.IResourceLoader<Voile.Font>.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<T>.Load(string)
|
||||
fullName: Voile.Resources.IResourceLoader<T>.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
|
||||
267
Voile/api/Voile.Resources.IResourceLoader-1.yml
Normal file
267
Voile/api/Voile.Resources.IResourceLoader-1.yml
Normal file
@@ -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<T>
|
||||
nameWithType: IResourceLoader<T>
|
||||
fullName: Voile.Resources.IResourceLoader<T>
|
||||
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<T> 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<T>.SupportedExtensions
|
||||
fullName: Voile.Resources.IResourceLoader<T>.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<string> 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<T>.Load(string)
|
||||
fullName: Voile.Resources.IResourceLoader<T>.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<T>.SupportedExtensions
|
||||
fullName: Voile.Resources.IResourceLoader<T>.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<string>
|
||||
nameWithType: IEnumerable<string>
|
||||
fullName: System.Collections.Generic.IEnumerable<string>
|
||||
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<T>
|
||||
nameWithType: IEnumerable<T>
|
||||
fullName: System.Collections.Generic.IEnumerable<T>
|
||||
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<T>.Load
|
||||
fullName: Voile.Resources.IResourceLoader<T>.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
|
||||
140
Voile/api/Voile.Resources.IResourceSaver-1.yml
Normal file
140
Voile/api/Voile.Resources.IResourceSaver-1.yml
Normal file
@@ -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<T>
|
||||
nameWithType: IResourceSaver<T>
|
||||
fullName: Voile.Resources.IResourceSaver<T>
|
||||
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<T> 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<T>.TrySave(string, in T)
|
||||
fullName: Voile.Resources.IResourceSaver<T>.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<T>.TrySave
|
||||
fullName: Voile.Resources.IResourceSaver<T>.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
|
||||
840
Voile/api/Voile.Resources.ResourceManager.yml
Normal file
840
Voile/api/Voile.Resources.ResourceManager.yml
Normal file
@@ -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<T>(string, string, out T?)
|
||||
nameWithType: ResourceManager.TryLoad<T>(string, string, out T?)
|
||||
fullName: Voile.Resources.ResourceManager.TryLoad<T>(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<T>(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<T>(string, in T)
|
||||
nameWithType: ResourceManager.TrySave<T>(string, in T)
|
||||
fullName: Voile.Resources.ResourceManager.TrySave<T>(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<T>(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<T>(string, out T?)
|
||||
nameWithType: ResourceManager.TryGetResource<T>(string, out T?)
|
||||
fullName: Voile.Resources.ResourceManager.TryGetResource<T>(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<T>(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<T>(IResourceLoader<T>)
|
||||
nameWithType: ResourceManager.AddResourceLoaderAssociation<T>(IResourceLoader<T>)
|
||||
fullName: Voile.Resources.ResourceManager.AddResourceLoaderAssociation<T>(Voile.Resources.IResourceLoader<T>)
|
||||
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<T>(IResourceLoader<T> 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<T>(IResourceSaver<T>)
|
||||
nameWithType: ResourceManager.AddResourceSaverAssociation<T>(IResourceSaver<T>)
|
||||
fullName: Voile.Resources.ResourceManager.AddResourceSaverAssociation<T>(Voile.Resources.IResourceSaver<T>)
|
||||
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<T>(IResourceSaver<T> 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<T>
|
||||
nameWithType: IResourceLoader<T>
|
||||
fullName: Voile.Resources.IResourceLoader<T>
|
||||
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<T>
|
||||
nameWithType: IResourceLoader<T>
|
||||
fullName: Voile.Resources.IResourceLoader<T>
|
||||
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<T>
|
||||
nameWithType: IResourceSaver<T>
|
||||
fullName: Voile.Resources.IResourceSaver<T>
|
||||
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<T>
|
||||
nameWithType: IResourceSaver<T>
|
||||
fullName: Voile.Resources.IResourceSaver<T>
|
||||
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: )
|
||||
642
Voile/api/Voile.Resources.SoundLoader.yml
Normal file
642
Voile/api/Voile.Resources.SoundLoader.yml
Normal file
@@ -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<Sound>'
|
||||
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<string> 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<Sound>
|
||||
nameWithType: IResourceLoader<Sound>
|
||||
fullName: Voile.Resources.IResourceLoader<Voile.Sound>
|
||||
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<T>
|
||||
nameWithType: IResourceLoader<T>
|
||||
fullName: Voile.Resources.IResourceLoader<T>
|
||||
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<Sound>.SupportedExtensions
|
||||
fullName: Voile.Resources.IResourceLoader<Voile.Sound>.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<string>
|
||||
nameWithType: IEnumerable<string>
|
||||
fullName: System.Collections.Generic.IEnumerable<string>
|
||||
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<T>.SupportedExtensions
|
||||
fullName: Voile.Resources.IResourceLoader<T>.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<T>
|
||||
nameWithType: IEnumerable<T>
|
||||
fullName: System.Collections.Generic.IEnumerable<T>
|
||||
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<Sound>.Load(string)
|
||||
fullName: Voile.Resources.IResourceLoader<Voile.Sound>.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<T>.Load(string)
|
||||
fullName: Voile.Resources.IResourceLoader<T>.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
|
||||
112
Voile/api/Voile.Resources.yml
Normal file
112
Voile/api/Voile.Resources.yml
Normal file
@@ -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<T>
|
||||
nameWithType: IResourceLoader<T>
|
||||
fullName: Voile.Resources.IResourceLoader<T>
|
||||
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<T>
|
||||
nameWithType: IResourceSaver<T>
|
||||
fullName: Voile.Resources.IResourceSaver<T>
|
||||
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
|
||||
765
Voile/api/Voile.SceneGraph.Camera2d.yml
Normal file
765
Voile/api/Voile.SceneGraph.Camera2d.yml
Normal file
@@ -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
|
||||
805
Voile/api/Voile.SceneGraph.CircleShape2d.yml
Normal file
805
Voile/api/Voile.SceneGraph.CircleShape2d.yml
Normal file
@@ -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
|
||||
781
Voile/api/Voile.SceneGraph.Drawable2d.yml
Normal file
781
Voile/api/Voile.SceneGraph.Drawable2d.yml
Normal file
@@ -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
|
||||
918
Voile/api/Voile.SceneGraph.Entity.yml
Normal file
918
Voile/api/Voile.SceneGraph.Entity.yml
Normal file
@@ -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: >-
|
||||
<JsonIgnore>
|
||||
|
||||
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: >-
|
||||
<JsonIgnore>
|
||||
|
||||
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: >-
|
||||
<JsonIgnore>
|
||||
|
||||
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: >-
|
||||
<JsonIgnore>
|
||||
|
||||
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
|
||||
663
Voile/api/Voile.SceneGraph.Entity2d.yml
Normal file
663
Voile/api/Voile.SceneGraph.Entity2d.yml
Normal file
@@ -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
|
||||
1264
Voile/api/Voile.SceneGraph.EntityLayer.yml
Normal file
1264
Voile/api/Voile.SceneGraph.EntityLayer.yml
Normal file
File diff suppressed because it is too large
Load Diff
116
Voile/api/Voile.SceneGraph.IDrawable.yml
Normal file
116
Voile/api/Voile.SceneGraph.IDrawable.yml
Normal file
@@ -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
|
||||
251
Voile/api/Voile.SceneGraph.IMainLoop.yml
Normal file
251
Voile/api/Voile.SceneGraph.IMainLoop.yml
Normal file
@@ -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
|
||||
695
Voile/api/Voile.SceneGraph.ImGuiController.yml
Normal file
695
Voile/api/Voile.SceneGraph.ImGuiController.yml
Normal file
@@ -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
|
||||
909
Voile/api/Voile.SceneGraph.ImGuiRenderLayer.yml
Normal file
909
Voile/api/Voile.SceneGraph.ImGuiRenderLayer.yml
Normal file
@@ -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
|
||||
1013
Voile/api/Voile.SceneGraph.Layer.yml
Normal file
1013
Voile/api/Voile.SceneGraph.Layer.yml
Normal file
File diff suppressed because it is too large
Load Diff
595
Voile/api/Voile.SceneGraph.Particle.yml
Normal file
595
Voile/api/Voile.SceneGraph.Particle.yml
Normal file
@@ -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
|
||||
804
Voile/api/Voile.SceneGraph.ParticleSettings.yml
Normal file
804
Voile/api/Voile.SceneGraph.ParticleSettings.yml
Normal file
@@ -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
|
||||
959
Voile/api/Voile.SceneGraph.Particles2d.yml
Normal file
959
Voile/api/Voile.SceneGraph.Particles2d.yml
Normal file
@@ -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
|
||||
829
Voile/api/Voile.SceneGraph.RectangleShape2d.yml
Normal file
829
Voile/api/Voile.SceneGraph.RectangleShape2d.yml
Normal file
@@ -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
|
||||
1270
Voile/api/Voile.SceneGraph.Scene.yml
Normal file
1270
Voile/api/Voile.SceneGraph.Scene.yml
Normal file
File diff suppressed because it is too large
Load Diff
535
Voile/api/Voile.SceneGraph.SceneSettings.yml
Normal file
535
Voile/api/Voile.SceneGraph.SceneSettings.yml
Normal file
@@ -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
|
||||
604
Voile/api/Voile.SceneGraph.SerializedScene.yml
Normal file
604
Voile/api/Voile.SceneGraph.SerializedScene.yml
Normal file
@@ -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<string, Layer> 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<string, Layer>
|
||||
nameWithType: Dictionary<string, Layer>
|
||||
fullName: System.Collections.Generic.Dictionary<string, Voile.SceneGraph.Layer>
|
||||
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<TKey, TValue>
|
||||
nameWithType: Dictionary<TKey, TValue>
|
||||
fullName: System.Collections.Generic.Dictionary<TKey, TValue>
|
||||
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: )
|
||||
534
Voile/api/Voile.SceneGraph.SerializedSceneSaver.yml
Normal file
534
Voile/api/Voile.SceneGraph.SerializedSceneSaver.yml
Normal file
@@ -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<SerializedScene>'
|
||||
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<SerializedScene>
|
||||
nameWithType: IResourceSaver<SerializedScene>
|
||||
fullName: Voile.Resources.IResourceSaver<Voile.SceneGraph.SerializedScene>
|
||||
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<T>
|
||||
nameWithType: IResourceSaver<T>
|
||||
fullName: Voile.Resources.IResourceSaver<T>
|
||||
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<SerializedScene>.TrySave(string, in SerializedScene)
|
||||
fullName: Voile.Resources.IResourceSaver<Voile.SceneGraph.SerializedScene>.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<T>.TrySave(string, in T)
|
||||
fullName: Voile.Resources.IResourceSaver<T>.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: )
|
||||
792
Voile/api/Voile.SceneGraph.Sprite2d.yml
Normal file
792
Voile/api/Voile.SceneGraph.Sprite2d.yml
Normal file
@@ -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
|
||||
890
Voile/api/Voile.SceneGraph.Text2d.yml
Normal file
890
Voile/api/Voile.SceneGraph.Text2d.yml
Normal file
@@ -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
|
||||
197
Voile/api/Voile.SceneGraph.yml
Normal file
197
Voile/api/Voile.SceneGraph.yml
Normal file
@@ -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
|
||||
520
Voile/api/Voile.Sound.yml
Normal file
520
Voile/api/Voile.Sound.yml
Normal file
@@ -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: )
|
||||
96
Voile/api/Voile.SoundFormat.yml
Normal file
96
Voile/api/Voile.SoundFormat.yml
Normal file
@@ -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
|
||||
635
Voile/api/Voile.Texture2d.yml
Normal file
635
Voile/api/Voile.Texture2d.yml
Normal file
@@ -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
|
||||
642
Voile/api/Voile.Texture2dLoader.yml
Normal file
642
Voile/api/Voile.Texture2dLoader.yml
Normal file
@@ -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<Texture2d>'
|
||||
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<string> 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<Texture2d>
|
||||
nameWithType: IResourceLoader<Texture2d>
|
||||
fullName: Voile.Resources.IResourceLoader<Voile.Texture2d>
|
||||
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<T>
|
||||
nameWithType: IResourceLoader<T>
|
||||
fullName: Voile.Resources.IResourceLoader<T>
|
||||
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<Texture2d>.SupportedExtensions
|
||||
fullName: Voile.Resources.IResourceLoader<Voile.Texture2d>.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<string>
|
||||
nameWithType: IEnumerable<string>
|
||||
fullName: System.Collections.Generic.IEnumerable<string>
|
||||
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<T>.SupportedExtensions
|
||||
fullName: Voile.Resources.IResourceLoader<T>.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<T>
|
||||
nameWithType: IEnumerable<T>
|
||||
fullName: System.Collections.Generic.IEnumerable<T>
|
||||
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<Texture2d>.Load(string)
|
||||
fullName: Voile.Resources.IResourceLoader<Voile.Texture2d>.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<T>.Load(string)
|
||||
fullName: Voile.Resources.IResourceLoader<T>.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: )
|
||||
609
Voile/api/Voile.TextureFormat.yml
Normal file
609
Voile/api/Voile.TextureFormat.yml
Normal file
@@ -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
|
||||
664
Voile/api/Voile.UI.Container.yml
Normal file
664
Voile/api/Voile.UI.Container.yml
Normal file
@@ -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
|
||||
768
Voile/api/Voile.UI.MarginPanel.yml
Normal file
768
Voile/api/Voile.UI.MarginPanel.yml
Normal file
@@ -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
|
||||
697
Voile/api/Voile.UI.Panel.yml
Normal file
697
Voile/api/Voile.UI.Panel.yml
Normal file
@@ -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
|
||||
324
Voile/api/Voile.UI.PanelStyle.yml
Normal file
324
Voile/api/Voile.UI.PanelStyle.yml
Normal file
@@ -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
|
||||
441
Voile/api/Voile.UI.Rect.yml
Normal file
441
Voile/api/Voile.UI.Rect.yml
Normal file
@@ -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
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user