Tile - YEntity - Throw Entity – Ylands
Jump to navigation
Jump to search
No edit summary |
Lou Montana (talk | contribs) m (Text replacement - "{{DEFAULTSORT:{{#sub:{{PAGENAME}}|14}}}}" to "{{DEFAULTSORT:{{#sub:{{PAGENAME}}|7}}}}") |
||
(One intermediate revision by one other user not shown) | |||
Line 10: | Line 10: | ||
==== instigator ==== | ==== instigator ==== | ||
Instigator of the throw (optional) | |||
==== entityTemplate ==== | ==== entityTemplate ==== | ||
Entity template of the projectile | |||
==== origin ==== | ==== origin ==== | ||
Origin of the projectile | |||
==== direction ==== | ==== direction ==== | ||
Direction of the throw (vector) | |||
==== speed ==== | ==== speed ==== | ||
Speed of the throw (m/s) | |||
==== useGravity ==== | ==== useGravity ==== | ||
Whether the throw respect gravity | |||
==== damage ==== | ==== damage ==== | ||
Amount of damage caused by the projectile | |||
==== damageType ==== | ==== damageType ==== | ||
Type of damage caused by the projectile | |||
==== destroyOnHit ==== | ==== destroyOnHit ==== | ||
Whether the projectile should be destroyed on hit | |||
==== onEntityHit ==== | ==== onEntityHit ==== | ||
What should happen if an entity is hit | |||
==== onGroundHit ==== | ==== onGroundHit ==== | ||
What should happen if ground is hit | |||
==== onMissed ==== | ==== onMissed ==== | ||
What should happen if nothing is hit | |||
=== Availability === | |||
[[Ylands:Tile Availability - Server|Server]] | |||
=== Description === | === Description === | ||
Line 39: | Line 67: | ||
=== Notes === | === Notes === | ||
* Instigator will be listed as the source of the damage, | * Instigator will be listed as the source of the damage, if the throw hits something | ||
---- | ---- | ||
{{Navbox/Ylands}} | {{Navbox/Ylands}} | ||
{{DEFAULTSORT:{{#sub:{{PAGENAME}}| | {{DEFAULTSORT:{{#sub:{{PAGENAME}}|7}}}} | ||
[[Category: Instructions]] | [[Category: Instructions]] |
Latest revision as of 14:27, 24 November 2023
Throw Entity(Instigator, Entity template, Origin, Direction, Speed, Gravity, Damage, Damage type, Destroy on hit, On entity hit, On ground hit, On missed)
static throwEntity(instigator: YEntity, entityTemplate: YEntityTemplate, origin: YVector3, direction: YVector3, speed: number, useGravity: boolean, damage: number, damageType: YDamageType, destroyOnHit: boolean, onEntityHit: (entity: YEntity, hitPosition: YVector3) => void, onGroundHit: (hitPosition: YVector3) => void, onMissed: () => void): void;
Parameters
instigator
Instigator of the throw (optional)
entityTemplate
Entity template of the projectile
origin
Origin of the projectile
direction
Direction of the throw (vector)
speed
Speed of the throw (m/s)
useGravity
Whether the throw respect gravity
damage
Amount of damage caused by the projectile
damageType
Type of damage caused by the projectile
destroyOnHit
Whether the projectile should be destroyed on hit
onEntityHit
What should happen if an entity is hit
onGroundHit
What should happen if ground is hit
onMissed
What should happen if nothing is hit
Availability
Description
Throws a projectile spawned from the entity template.
Notes
- Instigator will be listed as the source of the damage, if the throw hits something