| ASLObjectPostCreateCloudAnchorFunction Delegate |
Delegate for the post create cloud anchor function to execute after creating a cloud anchor
Namespace:
ASL
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax public delegate void PostCreateCloudAnchorFunction(
GameObject _anchorObjectPrefab,
Pose _hitResult = default
)
Public Delegate Sub PostCreateCloudAnchorFunction (
_anchorObjectPrefab As GameObject,
Optional _hitResult As Pose = Nothing
)
public delegate void PostCreateCloudAnchorFunction(
GameObject^ _anchorObjectPrefab,
Pose _hitResult = Pose()
)
type PostCreateCloudAnchorFunction =
delegate of
_anchorObjectPrefab : GameObject *
?_hitResult : Pose
(* Defaults:
let __hitResult = defaultArg _hitResult new Pose()
*)
-> unit
Parameters
- _anchorObjectPrefab
- Type: GameObject
The ASL object this function is tied to - _hitResult (Optional)
- Type: Pose
Information on where the cloud anchor was created
See Also