| ASL_AutonomousObjectHandlerInstantiateAutonomousObject Method (GameObject, Vector3, Quaternion) |
Instatiates an ASL_AutonomousObject based on prefab. The caller of this function will be set to the owner of the instatiated ASL_AutonomousObject.
The object is created at position pos, and rotation rotation.
Namespace:
ASL
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax public void InstantiateAutonomousObject(
GameObject prefab,
Vector3 pos,
Quaternion rotation
)
Public Sub InstantiateAutonomousObject (
prefab As GameObject,
pos As Vector3,
rotation As Quaternion
)
public:
void InstantiateAutonomousObject(
GameObject^ prefab,
Vector3 pos,
Quaternion rotation
)
member InstantiateAutonomousObject :
prefab : GameObject *
pos : Vector3 *
rotation : Quaternion -> unit
Parameters
- prefab
- Type: GameObject
Prefab of GameObject to be instatiated. prefab MUST be located in Resources/MyPrefabs. - pos
- Type: Vector3
Desired initial position of the object. - rotation
- Type: Quaternion
Desired initial rotation of the object.
See Also