Files
Voile/Voile/api/Voile.SceneGraph.Layer.yml
2024-10-14 20:01:01 +02:00

1014 lines
31 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: Voile.SceneGraph.Layer
commentId: T:Voile.SceneGraph.Layer
id: Layer
parent: Voile.SceneGraph
children:
- Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem)
- Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem)
- Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem)
- Voile.SceneGraph.Layer.Input
- Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem)
- Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem)
- Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem)
- Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem)
- Voile.SceneGraph.Layer.OnStart
- Voile.SceneGraph.Layer.OnUpdate(System.Double)
- Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem)
- Voile.SceneGraph.Layer.ResourceManager
- Voile.SceneGraph.Layer.Scene
- Voile.SceneGraph.Layer.Start
- Voile.SceneGraph.Layer.Update(System.Double)
langs:
- csharp
- vb
name: Layer
nameWithType: Layer
fullName: Voile.SceneGraph.Layer
type: Class
source:
remote:
path: Voile/Source/SceneGraph/Layer.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: Layer
path: Source/SceneGraph/Layer.cs
startLine: 7
assemblies:
- Voile
namespace: Voile.SceneGraph
syntax:
content: 'public abstract class Layer : IDrawable'
content.vb: Public MustInherit Class Layer Implements IDrawable
inheritance:
- System.Object
derivedClasses:
- Voile.SceneGraph.EntityLayer
- Voile.SceneGraph.ImGuiRenderLayer
implements:
- Voile.SceneGraph.IDrawable
inheritedMembers:
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
- uid: Voile.SceneGraph.Layer.Scene
commentId: P:Voile.SceneGraph.Layer.Scene
id: Scene
parent: Voile.SceneGraph.Layer
langs:
- csharp
- vb
name: Scene
nameWithType: Layer.Scene
fullName: Voile.SceneGraph.Layer.Scene
type: Property
source:
remote:
path: Voile/Source/SceneGraph/Layer.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: Scene
path: Source/SceneGraph/Layer.cs
startLine: 9
assemblies:
- Voile
namespace: Voile.SceneGraph
syntax:
content: >-
[JsonIgnore]
public Scene? Scene { get; set; }
parameters: []
return:
type: Voile.SceneGraph.Scene
content.vb: >-
<JsonIgnore>
Public Property Scene As Scene
overload: Voile.SceneGraph.Layer.Scene*
attributes:
- type: System.Text.Json.Serialization.JsonIgnoreAttribute
ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor
arguments: []
- uid: Voile.SceneGraph.Layer.Input
commentId: P:Voile.SceneGraph.Layer.Input
id: Input
parent: Voile.SceneGraph.Layer
langs:
- csharp
- vb
name: Input
nameWithType: Layer.Input
fullName: Voile.SceneGraph.Layer.Input
type: Property
source:
remote:
path: Voile/Source/SceneGraph/Layer.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: Input
path: Source/SceneGraph/Layer.cs
startLine: 10
assemblies:
- Voile
namespace: Voile.SceneGraph
syntax:
content: >-
[JsonIgnore]
public InputSystem? Input { get; set; }
parameters: []
return:
type: Voile.Input.InputSystem
content.vb: >-
<JsonIgnore>
Public Property Input As InputSystem
overload: Voile.SceneGraph.Layer.Input*
attributes:
- type: System.Text.Json.Serialization.JsonIgnoreAttribute
ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor
arguments: []
- uid: Voile.SceneGraph.Layer.ResourceManager
commentId: P:Voile.SceneGraph.Layer.ResourceManager
id: ResourceManager
parent: Voile.SceneGraph.Layer
langs:
- csharp
- vb
name: ResourceManager
nameWithType: Layer.ResourceManager
fullName: Voile.SceneGraph.Layer.ResourceManager
type: Property
source:
remote:
path: Voile/Source/SceneGraph/Layer.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: ResourceManager
path: Source/SceneGraph/Layer.cs
startLine: 11
assemblies:
- Voile
namespace: Voile.SceneGraph
syntax:
content: >-
[JsonIgnore]
public ResourceManager ResourceManager { get; }
parameters: []
return:
type: Voile.Resources.ResourceManager
content.vb: >-
<JsonIgnore>
Public ReadOnly Property ResourceManager As ResourceManager
overload: Voile.SceneGraph.Layer.ResourceManager*
attributes:
- type: System.Text.Json.Serialization.JsonIgnoreAttribute
ctor: System.Text.Json.Serialization.JsonIgnoreAttribute.#ctor
arguments: []
- uid: Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem)
commentId: M:Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem)
id: BeginDraw(Voile.Rendering.RenderSystem)
parent: Voile.SceneGraph.Layer
langs:
- csharp
- vb
name: BeginDraw(RenderSystem)
nameWithType: Layer.BeginDraw(RenderSystem)
fullName: Voile.SceneGraph.Layer.BeginDraw(Voile.Rendering.RenderSystem)
type: Method
source:
remote:
path: Voile/Source/SceneGraph/Layer.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: BeginDraw
path: Source/SceneGraph/Layer.cs
startLine: 13
assemblies:
- Voile
namespace: Voile.SceneGraph
syntax:
content: public void BeginDraw(RenderSystem renderer)
parameters:
- id: renderer
type: Voile.Rendering.RenderSystem
content.vb: Public Sub BeginDraw(renderer As RenderSystem)
overload: Voile.SceneGraph.Layer.BeginDraw*
- uid: Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem)
commentId: M:Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem)
id: Draw(Voile.Rendering.RenderSystem)
parent: Voile.SceneGraph.Layer
langs:
- csharp
- vb
name: Draw(RenderSystem)
nameWithType: Layer.Draw(RenderSystem)
fullName: Voile.SceneGraph.Layer.Draw(Voile.Rendering.RenderSystem)
type: Method
source:
remote:
path: Voile/Source/SceneGraph/Layer.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: Draw
path: Source/SceneGraph/Layer.cs
startLine: 14
assemblies:
- Voile
namespace: Voile.SceneGraph
example: []
syntax:
content: public void Draw(RenderSystem renderer)
parameters:
- id: renderer
type: Voile.Rendering.RenderSystem
content.vb: Public Sub Draw(renderer As RenderSystem)
overload: Voile.SceneGraph.Layer.Draw*
implements:
- Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem)
- uid: Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem)
commentId: M:Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem)
id: EndDraw(Voile.Rendering.RenderSystem)
parent: Voile.SceneGraph.Layer
langs:
- csharp
- vb
name: EndDraw(RenderSystem)
nameWithType: Layer.EndDraw(RenderSystem)
fullName: Voile.SceneGraph.Layer.EndDraw(Voile.Rendering.RenderSystem)
type: Method
source:
remote:
path: Voile/Source/SceneGraph/Layer.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: EndDraw
path: Source/SceneGraph/Layer.cs
startLine: 15
assemblies:
- Voile
namespace: Voile.SceneGraph
syntax:
content: public void EndDraw(RenderSystem renderer)
parameters:
- id: renderer
type: Voile.Rendering.RenderSystem
content.vb: Public Sub EndDraw(renderer As RenderSystem)
overload: Voile.SceneGraph.Layer.EndDraw*
- uid: Voile.SceneGraph.Layer.Start
commentId: M:Voile.SceneGraph.Layer.Start
id: Start
parent: Voile.SceneGraph.Layer
langs:
- csharp
- vb
name: Start()
nameWithType: Layer.Start()
fullName: Voile.SceneGraph.Layer.Start()
type: Method
source:
remote:
path: Voile/Source/SceneGraph/Layer.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: Start
path: Source/SceneGraph/Layer.cs
startLine: 17
assemblies:
- Voile
namespace: Voile.SceneGraph
syntax:
content: public void Start()
content.vb: Public Sub Start()
overload: Voile.SceneGraph.Layer.Start*
- uid: Voile.SceneGraph.Layer.Update(System.Double)
commentId: M:Voile.SceneGraph.Layer.Update(System.Double)
id: Update(System.Double)
parent: Voile.SceneGraph.Layer
langs:
- csharp
- vb
name: Update(double)
nameWithType: Layer.Update(double)
fullName: Voile.SceneGraph.Layer.Update(double)
type: Method
source:
remote:
path: Voile/Source/SceneGraph/Layer.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: Update
path: Source/SceneGraph/Layer.cs
startLine: 18
assemblies:
- Voile
namespace: Voile.SceneGraph
syntax:
content: public void Update(double dt)
parameters:
- id: dt
type: System.Double
content.vb: Public Sub Update(dt As Double)
overload: Voile.SceneGraph.Layer.Update*
nameWithType.vb: Layer.Update(Double)
fullName.vb: Voile.SceneGraph.Layer.Update(Double)
name.vb: Update(Double)
- uid: Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem)
commentId: M:Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem)
id: ReceiveInput(Voile.Input.InputSystem)
parent: Voile.SceneGraph.Layer
langs:
- csharp
- vb
name: ReceiveInput(InputSystem)
nameWithType: Layer.ReceiveInput(InputSystem)
fullName: Voile.SceneGraph.Layer.ReceiveInput(Voile.Input.InputSystem)
type: Method
source:
remote:
path: Voile/Source/SceneGraph/Layer.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: ReceiveInput
path: Source/SceneGraph/Layer.cs
startLine: 19
assemblies:
- Voile
namespace: Voile.SceneGraph
syntax:
content: public void ReceiveInput(InputSystem input)
parameters:
- id: input
type: Voile.Input.InputSystem
content.vb: Public Sub ReceiveInput(input As InputSystem)
overload: Voile.SceneGraph.Layer.ReceiveInput*
- uid: Voile.SceneGraph.Layer.OnStart
commentId: M:Voile.SceneGraph.Layer.OnStart
id: OnStart
parent: Voile.SceneGraph.Layer
langs:
- csharp
- vb
name: OnStart()
nameWithType: Layer.OnStart()
fullName: Voile.SceneGraph.Layer.OnStart()
type: Method
source:
remote:
path: Voile/Source/SceneGraph/Layer.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: OnStart
path: Source/SceneGraph/Layer.cs
startLine: 21
assemblies:
- Voile
namespace: Voile.SceneGraph
syntax:
content: protected virtual void OnStart()
content.vb: Protected Overridable Sub OnStart()
overload: Voile.SceneGraph.Layer.OnStart*
- uid: Voile.SceneGraph.Layer.OnUpdate(System.Double)
commentId: M:Voile.SceneGraph.Layer.OnUpdate(System.Double)
id: OnUpdate(System.Double)
parent: Voile.SceneGraph.Layer
langs:
- csharp
- vb
name: OnUpdate(double)
nameWithType: Layer.OnUpdate(double)
fullName: Voile.SceneGraph.Layer.OnUpdate(double)
type: Method
source:
remote:
path: Voile/Source/SceneGraph/Layer.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: OnUpdate
path: Source/SceneGraph/Layer.cs
startLine: 22
assemblies:
- Voile
namespace: Voile.SceneGraph
syntax:
content: protected virtual void OnUpdate(double dt)
parameters:
- id: dt
type: System.Double
content.vb: Protected Overridable Sub OnUpdate(dt As Double)
overload: Voile.SceneGraph.Layer.OnUpdate*
nameWithType.vb: Layer.OnUpdate(Double)
fullName.vb: Voile.SceneGraph.Layer.OnUpdate(Double)
name.vb: OnUpdate(Double)
- uid: Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem)
commentId: M:Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem)
id: OnInput(Voile.Input.InputSystem)
parent: Voile.SceneGraph.Layer
langs:
- csharp
- vb
name: OnInput(InputSystem)
nameWithType: Layer.OnInput(InputSystem)
fullName: Voile.SceneGraph.Layer.OnInput(Voile.Input.InputSystem)
type: Method
source:
remote:
path: Voile/Source/SceneGraph/Layer.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: OnInput
path: Source/SceneGraph/Layer.cs
startLine: 23
assemblies:
- Voile
namespace: Voile.SceneGraph
syntax:
content: protected virtual void OnInput(InputSystem input)
parameters:
- id: input
type: Voile.Input.InputSystem
content.vb: Protected Overridable Sub OnInput(input As InputSystem)
overload: Voile.SceneGraph.Layer.OnInput*
- uid: Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem)
commentId: M:Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem)
id: OnBeginDraw(Voile.Rendering.RenderSystem)
parent: Voile.SceneGraph.Layer
langs:
- csharp
- vb
name: OnBeginDraw(RenderSystem)
nameWithType: Layer.OnBeginDraw(RenderSystem)
fullName: Voile.SceneGraph.Layer.OnBeginDraw(Voile.Rendering.RenderSystem)
type: Method
source:
remote:
path: Voile/Source/SceneGraph/Layer.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: OnBeginDraw
path: Source/SceneGraph/Layer.cs
startLine: 24
assemblies:
- Voile
namespace: Voile.SceneGraph
syntax:
content: protected abstract void OnBeginDraw(RenderSystem renderer)
parameters:
- id: renderer
type: Voile.Rendering.RenderSystem
content.vb: Protected MustOverride Sub OnBeginDraw(renderer As RenderSystem)
overload: Voile.SceneGraph.Layer.OnBeginDraw*
- uid: Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem)
commentId: M:Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem)
id: OnDraw(Voile.Rendering.RenderSystem)
parent: Voile.SceneGraph.Layer
langs:
- csharp
- vb
name: OnDraw(RenderSystem)
nameWithType: Layer.OnDraw(RenderSystem)
fullName: Voile.SceneGraph.Layer.OnDraw(Voile.Rendering.RenderSystem)
type: Method
source:
remote:
path: Voile/Source/SceneGraph/Layer.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: OnDraw
path: Source/SceneGraph/Layer.cs
startLine: 25
assemblies:
- Voile
namespace: Voile.SceneGraph
syntax:
content: protected abstract void OnDraw(RenderSystem renderer)
parameters:
- id: renderer
type: Voile.Rendering.RenderSystem
content.vb: Protected MustOverride Sub OnDraw(renderer As RenderSystem)
overload: Voile.SceneGraph.Layer.OnDraw*
- uid: Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem)
commentId: M:Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem)
id: OnEndDraw(Voile.Rendering.RenderSystem)
parent: Voile.SceneGraph.Layer
langs:
- csharp
- vb
name: OnEndDraw(RenderSystem)
nameWithType: Layer.OnEndDraw(RenderSystem)
fullName: Voile.SceneGraph.Layer.OnEndDraw(Voile.Rendering.RenderSystem)
type: Method
source:
remote:
path: Voile/Source/SceneGraph/Layer.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: OnEndDraw
path: Source/SceneGraph/Layer.cs
startLine: 26
assemblies:
- Voile
namespace: Voile.SceneGraph
syntax:
content: protected abstract void OnEndDraw(RenderSystem renderer)
parameters:
- id: renderer
type: Voile.Rendering.RenderSystem
content.vb: Protected MustOverride Sub OnEndDraw(renderer As RenderSystem)
overload: Voile.SceneGraph.Layer.OnEndDraw*
references:
- uid: Voile.SceneGraph
commentId: N:Voile.SceneGraph
href: Voile.html
name: Voile.SceneGraph
nameWithType: Voile.SceneGraph
fullName: Voile.SceneGraph
spec.csharp:
- uid: Voile
name: Voile
href: Voile.html
- name: .
- uid: Voile.SceneGraph
name: SceneGraph
href: Voile.SceneGraph.html
spec.vb:
- uid: Voile
name: Voile
href: Voile.html
- name: .
- uid: Voile.SceneGraph
name: SceneGraph
href: Voile.SceneGraph.html
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
- uid: Voile.SceneGraph.IDrawable
commentId: T:Voile.SceneGraph.IDrawable
parent: Voile.SceneGraph
href: Voile.SceneGraph.IDrawable.html
name: IDrawable
nameWithType: IDrawable
fullName: Voile.SceneGraph.IDrawable
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
name: MemberwiseClone()
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: Voile.SceneGraph.Layer.Scene*
commentId: Overload:Voile.SceneGraph.Layer.Scene
href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Scene
name: Scene
nameWithType: Layer.Scene
fullName: Voile.SceneGraph.Layer.Scene
- uid: Voile.SceneGraph.Scene
commentId: T:Voile.SceneGraph.Scene
parent: Voile.SceneGraph
href: Voile.SceneGraph.Scene.html
name: Scene
nameWithType: Scene
fullName: Voile.SceneGraph.Scene
- uid: Voile.SceneGraph.Layer.Input*
commentId: Overload:Voile.SceneGraph.Layer.Input
href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Input
name: Input
nameWithType: Layer.Input
fullName: Voile.SceneGraph.Layer.Input
- uid: Voile.Input.InputSystem
commentId: T:Voile.Input.InputSystem
parent: Voile.Input
href: Voile.Input.InputSystem.html
name: InputSystem
nameWithType: InputSystem
fullName: Voile.Input.InputSystem
- uid: Voile.Input
commentId: N:Voile.Input
href: Voile.html
name: Voile.Input
nameWithType: Voile.Input
fullName: Voile.Input
spec.csharp:
- uid: Voile
name: Voile
href: Voile.html
- name: .
- uid: Voile.Input
name: Input
href: Voile.Input.html
spec.vb:
- uid: Voile
name: Voile
href: Voile.html
- name: .
- uid: Voile.Input
name: Input
href: Voile.Input.html
- uid: Voile.SceneGraph.Layer.ResourceManager*
commentId: Overload:Voile.SceneGraph.Layer.ResourceManager
href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_ResourceManager
name: ResourceManager
nameWithType: Layer.ResourceManager
fullName: Voile.SceneGraph.Layer.ResourceManager
- uid: Voile.Resources.ResourceManager
commentId: T:Voile.Resources.ResourceManager
parent: Voile.Resources
href: Voile.Resources.ResourceManager.html
name: ResourceManager
nameWithType: ResourceManager
fullName: Voile.Resources.ResourceManager
- uid: Voile.Resources
commentId: N:Voile.Resources
href: Voile.html
name: Voile.Resources
nameWithType: Voile.Resources
fullName: Voile.Resources
spec.csharp:
- uid: Voile
name: Voile
href: Voile.html
- name: .
- uid: Voile.Resources
name: Resources
href: Voile.Resources.html
spec.vb:
- uid: Voile
name: Voile
href: Voile.html
- name: .
- uid: Voile.Resources
name: Resources
href: Voile.Resources.html
- uid: Voile.SceneGraph.Layer.BeginDraw*
commentId: Overload:Voile.SceneGraph.Layer.BeginDraw
href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_BeginDraw_Voile_Rendering_RenderSystem_
name: BeginDraw
nameWithType: Layer.BeginDraw
fullName: Voile.SceneGraph.Layer.BeginDraw
- uid: Voile.Rendering.RenderSystem
commentId: T:Voile.Rendering.RenderSystem
parent: Voile.Rendering
href: Voile.Rendering.RenderSystem.html
name: RenderSystem
nameWithType: RenderSystem
fullName: Voile.Rendering.RenderSystem
- uid: Voile.Rendering
commentId: N:Voile.Rendering
href: Voile.html
name: Voile.Rendering
nameWithType: Voile.Rendering
fullName: Voile.Rendering
spec.csharp:
- uid: Voile
name: Voile
href: Voile.html
- name: .
- uid: Voile.Rendering
name: Rendering
href: Voile.Rendering.html
spec.vb:
- uid: Voile
name: Voile
href: Voile.html
- name: .
- uid: Voile.Rendering
name: Rendering
href: Voile.Rendering.html
- uid: Voile.SceneGraph.Layer.Draw*
commentId: Overload:Voile.SceneGraph.Layer.Draw
href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Draw_Voile_Rendering_RenderSystem_
name: Draw
nameWithType: Layer.Draw
fullName: Voile.SceneGraph.Layer.Draw
- uid: Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem)
commentId: M:Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem)
parent: Voile.SceneGraph.IDrawable
href: Voile.SceneGraph.IDrawable.html#Voile_SceneGraph_IDrawable_Draw_Voile_Rendering_RenderSystem_
name: Draw(RenderSystem)
nameWithType: IDrawable.Draw(RenderSystem)
fullName: Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem)
spec.csharp:
- uid: Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem)
name: Draw
href: Voile.SceneGraph.IDrawable.html#Voile_SceneGraph_IDrawable_Draw_Voile_Rendering_RenderSystem_
- name: (
- uid: Voile.Rendering.RenderSystem
name: RenderSystem
href: Voile.Rendering.RenderSystem.html
- name: )
spec.vb:
- uid: Voile.SceneGraph.IDrawable.Draw(Voile.Rendering.RenderSystem)
name: Draw
href: Voile.SceneGraph.IDrawable.html#Voile_SceneGraph_IDrawable_Draw_Voile_Rendering_RenderSystem_
- name: (
- uid: Voile.Rendering.RenderSystem
name: RenderSystem
href: Voile.Rendering.RenderSystem.html
- name: )
- uid: Voile.SceneGraph.Layer.EndDraw*
commentId: Overload:Voile.SceneGraph.Layer.EndDraw
href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_EndDraw_Voile_Rendering_RenderSystem_
name: EndDraw
nameWithType: Layer.EndDraw
fullName: Voile.SceneGraph.Layer.EndDraw
- uid: Voile.SceneGraph.Layer.Start*
commentId: Overload:Voile.SceneGraph.Layer.Start
href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Start
name: Start
nameWithType: Layer.Start
fullName: Voile.SceneGraph.Layer.Start
- uid: Voile.SceneGraph.Layer.Update*
commentId: Overload:Voile.SceneGraph.Layer.Update
href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_Update_System_Double_
name: Update
nameWithType: Layer.Update
fullName: Voile.SceneGraph.Layer.Update
- uid: System.Double
commentId: T:System.Double
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.double
name: double
nameWithType: double
fullName: double
nameWithType.vb: Double
fullName.vb: Double
name.vb: Double
- uid: Voile.SceneGraph.Layer.ReceiveInput*
commentId: Overload:Voile.SceneGraph.Layer.ReceiveInput
href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_ReceiveInput_Voile_Input_InputSystem_
name: ReceiveInput
nameWithType: Layer.ReceiveInput
fullName: Voile.SceneGraph.Layer.ReceiveInput
- uid: Voile.SceneGraph.Layer.OnStart*
commentId: Overload:Voile.SceneGraph.Layer.OnStart
href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnStart
name: OnStart
nameWithType: Layer.OnStart
fullName: Voile.SceneGraph.Layer.OnStart
- uid: Voile.SceneGraph.Layer.OnUpdate*
commentId: Overload:Voile.SceneGraph.Layer.OnUpdate
href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnUpdate_System_Double_
name: OnUpdate
nameWithType: Layer.OnUpdate
fullName: Voile.SceneGraph.Layer.OnUpdate
- uid: Voile.SceneGraph.Layer.OnInput*
commentId: Overload:Voile.SceneGraph.Layer.OnInput
href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnInput_Voile_Input_InputSystem_
name: OnInput
nameWithType: Layer.OnInput
fullName: Voile.SceneGraph.Layer.OnInput
- uid: Voile.SceneGraph.Layer.OnBeginDraw*
commentId: Overload:Voile.SceneGraph.Layer.OnBeginDraw
href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnBeginDraw_Voile_Rendering_RenderSystem_
name: OnBeginDraw
nameWithType: Layer.OnBeginDraw
fullName: Voile.SceneGraph.Layer.OnBeginDraw
- uid: Voile.SceneGraph.Layer.OnDraw*
commentId: Overload:Voile.SceneGraph.Layer.OnDraw
href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnDraw_Voile_Rendering_RenderSystem_
name: OnDraw
nameWithType: Layer.OnDraw
fullName: Voile.SceneGraph.Layer.OnDraw
- uid: Voile.SceneGraph.Layer.OnEndDraw*
commentId: Overload:Voile.SceneGraph.Layer.OnEndDraw
href: Voile.SceneGraph.Layer.html#Voile_SceneGraph_Layer_OnEndDraw_Voile_Rendering_RenderSystem_
name: OnEndDraw
nameWithType: Layer.OnEndDraw
fullName: Voile.SceneGraph.Layer.OnEndDraw