Component Class |
Namespace: SampSharp.Entities
public abstract class Component
The Component type exposes the following members.
| Name | Description | |
|---|---|---|
| Entity |
Gets the entity to which this component has been attached.
| |
| IsComponentAlive |
Gets a value indicating whether this component is alive (has not been destroyed).
| |
| Manager |
Gets the manager of the entity of this component.
| |
| Parent |
Gets the parent entity of the entity to which this component has been attached.
|
| Name | Description | |
|---|---|---|
| AddComponentT |
Adds a component of the specified type T to the entity.
| |
| AddComponentT(Object) |
Adds a component of the specified type T to the entity with the specified constructor args.
| |
| Destroy |
Destroys this component.
| |
| DestroyComponentsT |
Destroys the components of the specified type T attached to the entity.
| |
| DestroyEntity |
Destroys the entity.
| |
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
| GetComponentT |
Gets a component of the specified type T attached to the entity.
| |
| GetComponentInChildrenT |
Gets a component of the specified type T attached to a child entity of the entity using a depth first search.
| |
| GetComponentInParentT |
Gets a component of the specified type T attached to a parent entity of the entity.
| |
| GetComponentsT |
Gets all components of the specified type T attached to the entity.
| |
| GetComponentsInChildrenT |
Gets all components of the specified type T attached to a child entity of the entity.
| |
| GetComponentsInParentT |
Gets all components of the specified type T attached to a parent entity of the entity.
| |
| GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
| GetType | Gets the Type of the current instance. (Inherited from Object.) | |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
| OnDestroyComponent |
This method is invoked before this component is destroyed and removed from its entity.
| |
| OnInitializeComponent |
This method is invoked after this component has been attached the an entity.
| |
| ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
| False |
Implements the operator false. Returns true if the specified component is not alive.
| |
| LogicalNot |
Implements the operator !. Returns true if the specified component is not alive.
| |
| True |
Implements the operator true. Returns true if the specified component is alive.
|