Description
The Id
property of a Component
in the Sandbox framework is a unique identifier of type System.Guid
. This identifier is used to distinguish each component instance uniquely within the game environment. It is automatically assigned and managed by the system, ensuring that each component can be referenced and manipulated individually.
Usage
Use the Id
property when you need to uniquely identify a component within your game logic. This can be particularly useful for tracking components, debugging, or when implementing custom serialization and deserialization logic.
Example
// Example of accessing the Id property of a component
Component myComponent = new Component();
System.Guid componentId = myComponent.Id;
// Use the Id for logging or tracking
Log.Info($"Component ID: {componentId}");