Files
GhostEngine/doc/api/Ghost.Entities.ChunkView.yml
Misaki d8a7b07624 feat(graphics): improve rendering pipeline and docs
- Refactor D3D12 backend and RenderGraph module
- Update graphics RHI and core rendering components
- Add Random.hlsl shader include
- Regenerate API documentation and update user guides
2026-03-27 22:23:44 +09:00

1072 lines
38 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: Ghost.Entities.ChunkView
commentId: T:Ghost.Entities.ChunkView
id: ChunkView
parent: Ghost.Entities
children:
- Ghost.Entities.ChunkView.EntityCount
- Ghost.Entities.ChunkView.GetComponentDataRW``1
- Ghost.Entities.ChunkView.GetComponentData``1
- Ghost.Entities.ChunkView.GetComponentVersion(Ghost.Core.Identifier{Ghost.Entities.IComponent})
- Ghost.Entities.ChunkView.GetComponentVersion``1
- Ghost.Entities.ChunkView.GetEnableBits``1
- Ghost.Entities.ChunkView.GetEntities
- Ghost.Entities.ChunkView.HasChanged(Ghost.Core.Identifier{Ghost.Entities.IComponent},System.Int32)
- Ghost.Entities.ChunkView.HasChanged``1(System.Int32)
- Ghost.Entities.ChunkView.HasStructuralChanged(System.Int32)
- Ghost.Entities.ChunkView.IsComponentEnabled``1(System.Int32)
langs:
- csharp
- vb
name: ChunkView
nameWithType: ChunkView
fullName: Ghost.Entities.ChunkView
type: Struct
source:
remote:
path: src/Runtime/Ghost.Entities/Query.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: ChunkView
path: ../src/Runtime/Ghost.Entities/Query.cs
startLine: 86
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
summary: Provides a read-only view over a chunk of entities and their component data within an archetype.
remarks: This does not filter disabled/enabled components. You must handle that manually.
example: []
syntax:
content: public readonly ref struct ChunkView
content.vb: Public Structure ChunkView
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: Ghost.Entities.ChunkView.EntityCount
commentId: P:Ghost.Entities.ChunkView.EntityCount
id: EntityCount
parent: Ghost.Entities.ChunkView
langs:
- csharp
- vb
name: EntityCount
nameWithType: ChunkView.EntityCount
fullName: Ghost.Entities.ChunkView.EntityCount
type: Property
source:
remote:
path: src/Runtime/Ghost.Entities/Query.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: EntityCount
path: ../src/Runtime/Ghost.Entities/Query.cs
startLine: 98
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
syntax:
content: public int EntityCount { get; }
parameters: []
return:
type: System.Int32
content.vb: Public ReadOnly Property EntityCount As Integer
overload: Ghost.Entities.ChunkView.EntityCount*
- uid: Ghost.Entities.ChunkView.HasChanged(Ghost.Core.Identifier{Ghost.Entities.IComponent},System.Int32)
commentId: M:Ghost.Entities.ChunkView.HasChanged(Ghost.Core.Identifier{Ghost.Entities.IComponent},System.Int32)
id: HasChanged(Ghost.Core.Identifier{Ghost.Entities.IComponent},System.Int32)
parent: Ghost.Entities.ChunkView
langs:
- csharp
- vb
name: HasChanged(Identifier<IComponent>, int)
nameWithType: ChunkView.HasChanged(Identifier<IComponent>, int)
fullName: Ghost.Entities.ChunkView.HasChanged(Ghost.Core.Identifier<Ghost.Entities.IComponent>, int)
type: Method
source:
remote:
path: src/Runtime/Ghost.Entities/Query.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: HasChanged
path: ../src/Runtime/Ghost.Entities/Query.cs
startLine: 131
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
summary: Determines whether the specified component has changed since the given version.
example: []
syntax:
content: public bool HasChanged(Identifier<IComponent> id, int version)
parameters:
- id: id
type: Ghost.Core.Identifier{Ghost.Entities.IComponent}
description: The identifier of the component to check for changes.
- id: version
type: System.Int32
description: The version number to compare against the component's current version. Must be greater than or equal to zero.
return:
type: System.Boolean
description: true if the component's current version is less than or equal to the specified version; otherwise, false.
content.vb: Public Function HasChanged(id As Identifier(Of IComponent), version As Integer) As Boolean
overload: Ghost.Entities.ChunkView.HasChanged*
nameWithType.vb: ChunkView.HasChanged(Identifier(Of IComponent), Integer)
fullName.vb: Ghost.Entities.ChunkView.HasChanged(Ghost.Core.Identifier(Of Ghost.Entities.IComponent), Integer)
name.vb: HasChanged(Identifier(Of IComponent), Integer)
- uid: Ghost.Entities.ChunkView.HasChanged``1(System.Int32)
commentId: M:Ghost.Entities.ChunkView.HasChanged``1(System.Int32)
id: HasChanged``1(System.Int32)
parent: Ghost.Entities.ChunkView
langs:
- csharp
- vb
name: HasChanged<T>(int)
nameWithType: ChunkView.HasChanged<T>(int)
fullName: Ghost.Entities.ChunkView.HasChanged<T>(int)
type: Method
source:
remote:
path: src/Runtime/Ghost.Entities/Query.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: HasChanged
path: ../src/Runtime/Ghost.Entities/Query.cs
startLine: 145
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
summary: >-
Determines whether the specified version indicates that the component of space <code class="typeparamref">T</code> has
changed since the last recorded version.
example: []
syntax:
content: 'public bool HasChanged<T>(int version) where T : unmanaged, IComponent'
parameters:
- id: version
type: System.Int32
description: The version number to compare against the current version of the component.
typeParameters:
- id: T
description: The space of component to check for changes. Must be an unmanaged space that implements <xref href="Ghost.Entities.IComponent" data-throw-if-not-resolved="false"></xref>.
return:
type: System.Boolean
description: true if the component of space T has changed since the specified version; otherwise, false.
content.vb: Public Function HasChanged(Of T As {Structure, IComponent})(version As Integer) As Boolean
overload: Ghost.Entities.ChunkView.HasChanged*
nameWithType.vb: ChunkView.HasChanged(Of T)(Integer)
fullName.vb: Ghost.Entities.ChunkView.HasChanged(Of T)(Integer)
name.vb: HasChanged(Of T)(Integer)
- uid: Ghost.Entities.ChunkView.HasStructuralChanged(System.Int32)
commentId: M:Ghost.Entities.ChunkView.HasStructuralChanged(System.Int32)
id: HasStructuralChanged(System.Int32)
parent: Ghost.Entities.ChunkView
langs:
- csharp
- vb
name: HasStructuralChanged(int)
nameWithType: ChunkView.HasStructuralChanged(int)
fullName: Ghost.Entities.ChunkView.HasStructuralChanged(int)
type: Method
source:
remote:
path: src/Runtime/Ghost.Entities/Query.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: HasStructuralChanged
path: ../src/Runtime/Ghost.Entities/Query.cs
startLine: 158
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
summary: Determines whether the chunk's structure has changed since the specified version.
example: []
syntax:
content: public bool HasStructuralChanged(int version)
parameters:
- id: version
type: System.Int32
description: The version number to compare against the chunk's structural version.
return:
type: System.Boolean
description: true if the chunk's structure has changed since the specified version; otherwise, false.
content.vb: Public Function HasStructuralChanged(version As Integer) As Boolean
overload: Ghost.Entities.ChunkView.HasStructuralChanged*
nameWithType.vb: ChunkView.HasStructuralChanged(Integer)
fullName.vb: Ghost.Entities.ChunkView.HasStructuralChanged(Integer)
name.vb: HasStructuralChanged(Integer)
- uid: Ghost.Entities.ChunkView.GetComponentVersion(Ghost.Core.Identifier{Ghost.Entities.IComponent})
commentId: M:Ghost.Entities.ChunkView.GetComponentVersion(Ghost.Core.Identifier{Ghost.Entities.IComponent})
id: GetComponentVersion(Ghost.Core.Identifier{Ghost.Entities.IComponent})
parent: Ghost.Entities.ChunkView
langs:
- csharp
- vb
name: GetComponentVersion(Identifier<IComponent>)
nameWithType: ChunkView.GetComponentVersion(Identifier<IComponent>)
fullName: Ghost.Entities.ChunkView.GetComponentVersion(Ghost.Core.Identifier<Ghost.Entities.IComponent>)
type: Method
source:
remote:
path: src/Runtime/Ghost.Entities/Query.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: GetComponentVersion
path: ../src/Runtime/Ghost.Entities/Query.cs
startLine: 169
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
summary: Gets the current version number associated with the specified component identifier.
example: []
syntax:
content: public int GetComponentVersion(Identifier<IComponent> id)
parameters:
- id: id
type: Ghost.Core.Identifier{Ghost.Entities.IComponent}
description: The identifier of the component for which to retrieve the version number. Must reference a valid component.
return:
type: System.Int32
description: The version number of the specified component.
content.vb: Public Function GetComponentVersion(id As Identifier(Of IComponent)) As Integer
overload: Ghost.Entities.ChunkView.GetComponentVersion*
nameWithType.vb: ChunkView.GetComponentVersion(Identifier(Of IComponent))
fullName.vb: Ghost.Entities.ChunkView.GetComponentVersion(Ghost.Core.Identifier(Of Ghost.Entities.IComponent))
name.vb: GetComponentVersion(Identifier(Of IComponent))
- uid: Ghost.Entities.ChunkView.GetComponentVersion``1
commentId: M:Ghost.Entities.ChunkView.GetComponentVersion``1
id: GetComponentVersion``1
parent: Ghost.Entities.ChunkView
langs:
- csharp
- vb
name: GetComponentVersion<T>()
nameWithType: ChunkView.GetComponentVersion<T>()
fullName: Ghost.Entities.ChunkView.GetComponentVersion<T>()
type: Method
source:
remote:
path: src/Runtime/Ghost.Entities/Query.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: GetComponentVersion
path: ../src/Runtime/Ghost.Entities/Query.cs
startLine: 180
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
summary: Gets the current version number associated with the specified component space.
example: []
syntax:
content: 'public int GetComponentVersion<T>() where T : unmanaged, IComponent'
typeParameters:
- id: T
description: The component space for which to retrieve the version. Must be an unmanaged space that implements <xref href="Ghost.Entities.IComponent" data-throw-if-not-resolved="false"></xref>.
return:
type: System.Int32
description: The version number of the component space <code class="typeparamref">T</code>.
content.vb: Public Function GetComponentVersion(Of T As {Structure, IComponent})() As Integer
overload: Ghost.Entities.ChunkView.GetComponentVersion*
nameWithType.vb: ChunkView.GetComponentVersion(Of T)()
fullName.vb: Ghost.Entities.ChunkView.GetComponentVersion(Of T)()
name.vb: GetComponentVersion(Of T)()
- uid: Ghost.Entities.ChunkView.GetEntities
commentId: M:Ghost.Entities.ChunkView.GetEntities
id: GetEntities
parent: Ghost.Entities.ChunkView
langs:
- csharp
- vb
name: GetEntities()
nameWithType: ChunkView.GetEntities()
fullName: Ghost.Entities.ChunkView.GetEntities()
type: Method
source:
remote:
path: src/Runtime/Ghost.Entities/Query.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: GetEntities
path: ../src/Runtime/Ghost.Entities/Query.cs
startLine: 191
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
summary: Returns a read-only span containing structuralAll entities stored in the current chunk.
example: []
syntax:
content: public ReadOnlySpan<Entity> GetEntities()
return:
type: System.ReadOnlySpan{Ghost.Entities.Entity}
description: A read-only span of <xref href="Ghost.Entities.Entity" data-throw-if-not-resolved="false"></xref> values representing the entities in the chunk.
content.vb: Public Function GetEntities() As ReadOnlySpan(Of Entity)
overload: Ghost.Entities.ChunkView.GetEntities*
- uid: Ghost.Entities.ChunkView.GetComponentData``1
commentId: M:Ghost.Entities.ChunkView.GetComponentData``1
id: GetComponentData``1
parent: Ghost.Entities.ChunkView
langs:
- csharp
- vb
name: GetComponentData<T>()
nameWithType: ChunkView.GetComponentData<T>()
fullName: Ghost.Entities.ChunkView.GetComponentData<T>()
type: Method
source:
remote:
path: src/Runtime/Ghost.Entities/Query.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: GetComponentData
path: ../src/Runtime/Ghost.Entities/Query.cs
startLine: 204
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
summary: Gets a readonly span providing direct access to the component data of space T0 for structuralAll entities in the chunk.
example: []
syntax:
content: 'public ReadOnlySpan<T> GetComponentData<T>() where T : unmanaged, IComponent'
typeParameters:
- id: T
description: The space of component to access. Must be an unmanaged space that implements Component.
return:
type: System.ReadOnlySpan{{T}}
description: A readonly span of space &lt;T&gt; containing the component data for each entity in the chunk.
content.vb: Public Function GetComponentData(Of T As {Structure, IComponent})() As ReadOnlySpan(Of T)
overload: Ghost.Entities.ChunkView.GetComponentData*
exceptions:
- type: System.InvalidOperationException
commentId: T:System.InvalidOperationException
description: Thrown if the specified component space is not present in the archetype.
nameWithType.vb: ChunkView.GetComponentData(Of T)()
fullName.vb: Ghost.Entities.ChunkView.GetComponentData(Of T)()
name.vb: GetComponentData(Of T)()
- uid: Ghost.Entities.ChunkView.GetComponentDataRW``1
commentId: M:Ghost.Entities.ChunkView.GetComponentDataRW``1
id: GetComponentDataRW``1
parent: Ghost.Entities.ChunkView
langs:
- csharp
- vb
name: GetComponentDataRW<T>()
nameWithType: ChunkView.GetComponentDataRW<T>()
fullName: Ghost.Entities.ChunkView.GetComponentDataRW<T>()
type: Method
source:
remote:
path: src/Runtime/Ghost.Entities/Query.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: GetComponentDataRW
path: ../src/Runtime/Ghost.Entities/Query.cs
startLine: 219
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
summary: Gets a span providing direct access to the component data of space T0 for structuralAll entities in the chunk.
example: []
syntax:
content: 'public Span<T> GetComponentDataRW<T>() where T : unmanaged, IComponent'
typeParameters:
- id: T
description: The space of component to access. Must be an unmanaged space that implements Component.
return:
type: System.Span{{T}}
description: A span of space &lt;T&gt; containing the component data for each entity in the chunk.
content.vb: Public Function GetComponentDataRW(Of T As {Structure, IComponent})() As Span(Of T)
overload: Ghost.Entities.ChunkView.GetComponentDataRW*
exceptions:
- type: System.InvalidOperationException
commentId: T:System.InvalidOperationException
description: Thrown if the specified component space is not present in the archetype.
nameWithType.vb: ChunkView.GetComponentDataRW(Of T)()
fullName.vb: Ghost.Entities.ChunkView.GetComponentDataRW(Of T)()
name.vb: GetComponentDataRW(Of T)()
- uid: Ghost.Entities.ChunkView.GetEnableBits``1
commentId: M:Ghost.Entities.ChunkView.GetEnableBits``1
id: GetEnableBits``1
parent: Ghost.Entities.ChunkView
langs:
- csharp
- vb
name: GetEnableBits<T>()
nameWithType: ChunkView.GetEnableBits<T>()
fullName: Ghost.Entities.ChunkView.GetEnableBits<T>()
type: Method
source:
remote:
path: src/Runtime/Ghost.Entities/Query.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: GetEnableBits
path: ../src/Runtime/Ghost.Entities/Query.cs
startLine: 239
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
summary: >-
Gets a bit set representing the enabled state of each instance of the specified enableable component
space within the current chunk.
example: []
syntax:
content: 'public SpanBitSet GetEnableBits<T>() where T : unmanaged, IEnableableComponent'
typeParameters:
- id: T
description: The component space for which to retrieve enablement bits. Must be unmanaged and implement <xref href="Ghost.Entities.IEnableableComponent" data-throw-if-not-resolved="false"></xref>.
return:
type: Misaki.HighPerformance.LowLevel.Collections.SpanBitSet
description: A <xref href="Misaki.HighPerformance.LowLevel.Collections.SpanBitSet" data-throw-if-not-resolved="false"></xref> that provides access to the enablement bits for all instances of the specified component space in the chunk.
content.vb: Public Function GetEnableBits(Of T As {Structure, IEnableableComponent})() As SpanBitSet
overload: Ghost.Entities.ChunkView.GetEnableBits*
exceptions:
- type: System.InvalidOperationException
commentId: T:System.InvalidOperationException
description: Thrown if the specified component space does not support enablement.
nameWithType.vb: ChunkView.GetEnableBits(Of T)()
fullName.vb: Ghost.Entities.ChunkView.GetEnableBits(Of T)()
name.vb: GetEnableBits(Of T)()
- uid: Ghost.Entities.ChunkView.IsComponentEnabled``1(System.Int32)
commentId: M:Ghost.Entities.ChunkView.IsComponentEnabled``1(System.Int32)
id: IsComponentEnabled``1(System.Int32)
parent: Ghost.Entities.ChunkView
langs:
- csharp
- vb
name: IsComponentEnabled<T>(int)
nameWithType: ChunkView.IsComponentEnabled<T>(int)
fullName: Ghost.Entities.ChunkView.IsComponentEnabled<T>(int)
type: Method
source:
remote:
path: src/Runtime/Ghost.Entities/Query.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: IsComponentEnabled
path: ../src/Runtime/Ghost.Entities/Query.cs
startLine: 255
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
summary: Determines whether the specified component of space <code class="typeparamref">T</code> at the given index is currently enabled.
example: []
syntax:
content: 'public bool IsComponentEnabled<T>(int index) where T : unmanaged, IEnableableComponent'
parameters:
- id: index
type: System.Int32
description: The zero-based index of the component instance to check within the chunk.
typeParameters:
- id: T
description: The space of the component to check. Must be an unmanaged space that implements <xref href="Ghost.Entities.IEnableableComponent" data-throw-if-not-resolved="false"></xref>.
return:
type: System.Boolean
description: true if the component at the specified index is enabled; otherwise, false.
content.vb: Public Function IsComponentEnabled(Of T As {Structure, IEnableableComponent})(index As Integer) As Boolean
overload: Ghost.Entities.ChunkView.IsComponentEnabled*
exceptions:
- type: System.InvalidOperationException
commentId: T:System.InvalidOperationException
description: Thrown if the specified component space <code class="typeparamref">T</code> does not support enable/disable functionality.
nameWithType.vb: ChunkView.IsComponentEnabled(Of T)(Integer)
fullName.vb: Ghost.Entities.ChunkView.IsComponentEnabled(Of T)(Integer)
name.vb: IsComponentEnabled(Of T)(Integer)
references:
- uid: Ghost.Entities
commentId: N:Ghost.Entities
href: Ghost.html
name: Ghost.Entities
nameWithType: Ghost.Entities
fullName: Ghost.Entities
spec.csharp:
- uid: Ghost
name: Ghost
href: Ghost.html
- name: .
- uid: Ghost.Entities
name: Entities
href: Ghost.Entities.html
spec.vb:
- uid: Ghost
name: Ghost
href: Ghost.html
- name: .
- uid: Ghost.Entities
name: Entities
href: Ghost.Entities.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: Ghost.Entities.ChunkView.EntityCount*
commentId: Overload:Ghost.Entities.ChunkView.EntityCount
href: Ghost.Entities.ChunkView.html#Ghost_Entities_ChunkView_EntityCount
name: EntityCount
nameWithType: ChunkView.EntityCount
fullName: Ghost.Entities.ChunkView.EntityCount
- 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: Ghost.Entities.ChunkView.HasChanged*
commentId: Overload:Ghost.Entities.ChunkView.HasChanged
href: Ghost.Entities.ChunkView.html#Ghost_Entities_ChunkView_HasChanged_Ghost_Core_Identifier_Ghost_Entities_IComponent__System_Int32_
name: HasChanged
nameWithType: ChunkView.HasChanged
fullName: Ghost.Entities.ChunkView.HasChanged
- uid: Ghost.Core.Identifier{Ghost.Entities.IComponent}
commentId: T:Ghost.Core.Identifier{Ghost.Entities.IComponent}
parent: Ghost.Core
definition: Ghost.Core.Identifier`1
href: Ghost.Entities.IComponent.html
name: Identifier<IComponent>
nameWithType: Identifier<IComponent>
fullName: Ghost.Core.Identifier<Ghost.Entities.IComponent>
nameWithType.vb: Identifier(Of IComponent)
fullName.vb: Ghost.Core.Identifier(Of Ghost.Entities.IComponent)
name.vb: Identifier(Of IComponent)
spec.csharp:
- uid: Ghost.Core.Identifier`1
name: Identifier
- name: <
- uid: Ghost.Entities.IComponent
name: IComponent
href: Ghost.Entities.IComponent.html
- name: '>'
spec.vb:
- uid: Ghost.Core.Identifier`1
name: Identifier
- name: (
- name: Of
- name: " "
- uid: Ghost.Entities.IComponent
name: IComponent
href: Ghost.Entities.IComponent.html
- name: )
- 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: Ghost.Core.Identifier`1
commentId: T:Ghost.Core.Identifier`1
name: Identifier<T>
nameWithType: Identifier<T>
fullName: Ghost.Core.Identifier<T>
nameWithType.vb: Identifier(Of T)
fullName.vb: Ghost.Core.Identifier(Of T)
name.vb: Identifier(Of T)
spec.csharp:
- uid: Ghost.Core.Identifier`1
name: Identifier
- name: <
- name: T
- name: '>'
spec.vb:
- uid: Ghost.Core.Identifier`1
name: Identifier
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: Ghost.Core
commentId: N:Ghost.Core
name: Ghost.Core
nameWithType: Ghost.Core
fullName: Ghost.Core
spec.csharp:
- uid: Ghost
name: Ghost
- name: .
- uid: Ghost.Core
name: Core
spec.vb:
- uid: Ghost
name: Ghost
- name: .
- uid: Ghost.Core
name: Core
- uid: Ghost.Entities.IComponent
commentId: T:Ghost.Entities.IComponent
parent: Ghost.Entities
href: Ghost.Entities.IComponent.html
name: IComponent
nameWithType: IComponent
fullName: Ghost.Entities.IComponent
- uid: Ghost.Entities.ChunkView.HasStructuralChanged*
commentId: Overload:Ghost.Entities.ChunkView.HasStructuralChanged
href: Ghost.Entities.ChunkView.html#Ghost_Entities_ChunkView_HasStructuralChanged_System_Int32_
name: HasStructuralChanged
nameWithType: ChunkView.HasStructuralChanged
fullName: Ghost.Entities.ChunkView.HasStructuralChanged
- uid: Ghost.Entities.ChunkView.GetComponentVersion*
commentId: Overload:Ghost.Entities.ChunkView.GetComponentVersion
href: Ghost.Entities.ChunkView.html#Ghost_Entities_ChunkView_GetComponentVersion_Ghost_Core_Identifier_Ghost_Entities_IComponent__
name: GetComponentVersion
nameWithType: ChunkView.GetComponentVersion
fullName: Ghost.Entities.ChunkView.GetComponentVersion
- uid: Ghost.Entities.Entity
commentId: T:Ghost.Entities.Entity
parent: Ghost.Entities
href: Ghost.Entities.Entity.html
name: Entity
nameWithType: Entity
fullName: Ghost.Entities.Entity
- uid: Ghost.Entities.ChunkView.GetEntities*
commentId: Overload:Ghost.Entities.ChunkView.GetEntities
href: Ghost.Entities.ChunkView.html#Ghost_Entities_ChunkView_GetEntities
name: GetEntities
nameWithType: ChunkView.GetEntities
fullName: Ghost.Entities.ChunkView.GetEntities
- uid: System.ReadOnlySpan{Ghost.Entities.Entity}
commentId: T:System.ReadOnlySpan{Ghost.Entities.Entity}
parent: System
definition: System.ReadOnlySpan`1
href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1
name: ReadOnlySpan<Entity>
nameWithType: ReadOnlySpan<Entity>
fullName: System.ReadOnlySpan<Ghost.Entities.Entity>
nameWithType.vb: ReadOnlySpan(Of Entity)
fullName.vb: System.ReadOnlySpan(Of Ghost.Entities.Entity)
name.vb: ReadOnlySpan(Of Entity)
spec.csharp:
- uid: System.ReadOnlySpan`1
name: ReadOnlySpan
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1
- name: <
- uid: Ghost.Entities.Entity
name: Entity
href: Ghost.Entities.Entity.html
- name: '>'
spec.vb:
- uid: System.ReadOnlySpan`1
name: ReadOnlySpan
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1
- name: (
- name: Of
- name: " "
- uid: Ghost.Entities.Entity
name: Entity
href: Ghost.Entities.Entity.html
- name: )
- uid: System.ReadOnlySpan`1
commentId: T:System.ReadOnlySpan`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1
name: ReadOnlySpan<T>
nameWithType: ReadOnlySpan<T>
fullName: System.ReadOnlySpan<T>
nameWithType.vb: ReadOnlySpan(Of T)
fullName.vb: System.ReadOnlySpan(Of T)
name.vb: ReadOnlySpan(Of T)
spec.csharp:
- uid: System.ReadOnlySpan`1
name: ReadOnlySpan
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.ReadOnlySpan`1
name: ReadOnlySpan
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.InvalidOperationException
commentId: T:System.InvalidOperationException
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.invalidoperationexception
name: InvalidOperationException
nameWithType: InvalidOperationException
fullName: System.InvalidOperationException
- uid: Ghost.Entities.ChunkView.GetComponentData*
commentId: Overload:Ghost.Entities.ChunkView.GetComponentData
href: Ghost.Entities.ChunkView.html#Ghost_Entities_ChunkView_GetComponentData__1
name: GetComponentData
nameWithType: ChunkView.GetComponentData
fullName: Ghost.Entities.ChunkView.GetComponentData
- uid: System.ReadOnlySpan{{T}}
commentId: T:System.ReadOnlySpan{``0}
parent: System
definition: System.ReadOnlySpan`1
href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1
name: ReadOnlySpan<T>
nameWithType: ReadOnlySpan<T>
fullName: System.ReadOnlySpan<T>
nameWithType.vb: ReadOnlySpan(Of T)
fullName.vb: System.ReadOnlySpan(Of T)
name.vb: ReadOnlySpan(Of T)
spec.csharp:
- uid: System.ReadOnlySpan`1
name: ReadOnlySpan
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.ReadOnlySpan`1
name: ReadOnlySpan
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.readonlyspan-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: Ghost.Entities.ChunkView.GetComponentDataRW*
commentId: Overload:Ghost.Entities.ChunkView.GetComponentDataRW
href: Ghost.Entities.ChunkView.html#Ghost_Entities_ChunkView_GetComponentDataRW__1
name: GetComponentDataRW
nameWithType: ChunkView.GetComponentDataRW
fullName: Ghost.Entities.ChunkView.GetComponentDataRW
- uid: System.Span{{T}}
commentId: T:System.Span{``0}
parent: System
definition: System.Span`1
href: https://learn.microsoft.com/dotnet/api/system.span-1
name: Span<T>
nameWithType: Span<T>
fullName: System.Span<T>
nameWithType.vb: Span(Of T)
fullName.vb: System.Span(Of T)
name.vb: Span(Of T)
spec.csharp:
- uid: System.Span`1
name: Span
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.span-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Span`1
name: Span
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.span-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.Span`1
commentId: T:System.Span`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.span-1
name: Span<T>
nameWithType: Span<T>
fullName: System.Span<T>
nameWithType.vb: Span(Of T)
fullName.vb: System.Span(Of T)
name.vb: Span(Of T)
spec.csharp:
- uid: System.Span`1
name: Span
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.span-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Span`1
name: Span
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.span-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: Ghost.Entities.IEnableableComponent
commentId: T:Ghost.Entities.IEnableableComponent
href: Ghost.Entities.IEnableableComponent.html
name: IEnableableComponent
nameWithType: IEnableableComponent
fullName: Ghost.Entities.IEnableableComponent
- uid: Misaki.HighPerformance.LowLevel.Collections.SpanBitSet
commentId: T:Misaki.HighPerformance.LowLevel.Collections.SpanBitSet
parent: Misaki.HighPerformance.LowLevel.Collections
name: SpanBitSet
nameWithType: SpanBitSet
fullName: Misaki.HighPerformance.LowLevel.Collections.SpanBitSet
- uid: Ghost.Entities.ChunkView.GetEnableBits*
commentId: Overload:Ghost.Entities.ChunkView.GetEnableBits
href: Ghost.Entities.ChunkView.html#Ghost_Entities_ChunkView_GetEnableBits__1
name: GetEnableBits
nameWithType: ChunkView.GetEnableBits
fullName: Ghost.Entities.ChunkView.GetEnableBits
- uid: Misaki.HighPerformance.LowLevel.Collections
commentId: N:Misaki.HighPerformance.LowLevel.Collections
name: Misaki.HighPerformance.LowLevel.Collections
nameWithType: Misaki.HighPerformance.LowLevel.Collections
fullName: Misaki.HighPerformance.LowLevel.Collections
spec.csharp:
- uid: Misaki
name: Misaki
- name: .
- uid: Misaki.HighPerformance
name: HighPerformance
- name: .
- uid: Misaki.HighPerformance.LowLevel
name: LowLevel
- name: .
- uid: Misaki.HighPerformance.LowLevel.Collections
name: Collections
spec.vb:
- uid: Misaki
name: Misaki
- name: .
- uid: Misaki.HighPerformance
name: HighPerformance
- name: .
- uid: Misaki.HighPerformance.LowLevel
name: LowLevel
- name: .
- uid: Misaki.HighPerformance.LowLevel.Collections
name: Collections
- uid: Ghost.Entities.ChunkView.IsComponentEnabled*
commentId: Overload:Ghost.Entities.ChunkView.IsComponentEnabled
href: Ghost.Entities.ChunkView.html#Ghost_Entities_ChunkView_IsComponentEnabled__1_System_Int32_
name: IsComponentEnabled
nameWithType: ChunkView.IsComponentEnabled
fullName: Ghost.Entities.ChunkView.IsComponentEnabled