YaEntity
YaEntity
identifies an object in games. YaEntity
can only function when the YaEntity module (https://developer.yahaha.com/manual/yahaha-studio-manual/scripting/module/module-reference/YaEntity/) is added to the same object.Functions
number GetEntityId()
local entityId = script:SelfEntity():GetEntityId()
print("This entity's entity ID is " .. entityId)
boolean IsEmpty()
local raycastResult = PhysicsAPI.RaycastSingle(float3.New(0, 0, 0), float3.New(0, 0, 1), YaQueryParameter.Instance())
if raycastResult.Entity:IsEmpty()
then
print("Could not find any entity")
else
print("Found entity " .. raycastResult.Entity.EntityId)
end
boolean IsAlive()
IsEmpty
).
If an entity value is stored for latter usage, this method can help check whether the entity still exists (if users are not sure about the existence).
Empty entities always not alive.local position = script:GetYaComponent("YaMovableComponent"):GetGlobalPosition()
local raycastResult = PhysicsAPI.RaycastSingle(float3.New(position.x, position.y, position.z + 4), float3.New(0, 0, 1), YaQueryParameter.Instance():QueryAllPhysicsLayer())
if raycastResult.Entity:IsEmpty()
then
print("Could not find any entity")
else
print("Found entity " .. raycastResult.Entity.EntityId)
local waitEvent = YaTime:WaitFor(10)
EventHelper.AddListener(waitEvent, "TimeEvent", function ()
if raycastResult.Entity:IsAlive()
then
print("Entity is still alive")
else
print("Entity is eliminated")
end
end)
end
boolean HasTag(string tag)
tag
The name of the tag
YaEntity YaEntity.GetEntityById(number entityId)
IsEmpty
method would return true.entityId
The entity ID that was retrieve by theYaEntity.EntityId field
Array<YaEntity> YaEntity.GetEntitiesByTag(string tag)
tag
The name of the tag
void SetRotationEuler(float3 rotation)
Sets the entity's rotation as Euler angles in degrees.
Though this API is available both on clients and on servers, we recommend using it on the server to get consistent results.
rotation
The rotation of the entity
void SetRotationQuaternion(quaternion rotation)
Sets the entity's rotation as a quaternion.
Though this API is available both on clients and on servers, we recommend using it on the server to get consistent results.
rotation
The rotation of the entity
void SetGlobalRotationEuler(float3 rotation)
Sets the entity's rotation in world space as Euler angles in degrees.
Though this API is available both on clients and on servers, we recommend using it on the server to get consistent results.
rotation
The rotation of the entity
void SetGlobalRotationQuaternion(quaternion rotation)
Sets the entity's rotation in world space as a quaternion.
Though this API is available both on clients and on servers, we recommend using it on the server to get consistent results.
rotation
The rotation of the entity
float3 GetRotationEuler()
quaternion GetRotationQuaternion()
float3 GetGlobalRotationEuler()
quaternion GetGlobalRotationQuaternion()
void SetPosition(float3 position)
Sets the entity's position.
Though this API is available both on clients and on servers, we recommend using it on the server to get consistent results.
position
The position of the entity
void SetGlobalPosition(float3 position)
Sets the entity's position in world space.
Though this API is available both on clients and on servers, we recommend using it on server scripts to get consistent result.
position
The position of the entity
float3 GetPosition()
float3 GetGlobalPosition()
float3 GetScale()
float3 GetGlobalLossyScale()