| ASLObjectPostDownloadFunction Delegate |
Delegate for the Post Download function - used to send this function across the server to be called once a Texture2D download is successful
Namespace:
ASL
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax public delegate void PostDownloadFunction(
GameObject _myGameObject,
Texture2D _myTexture2D
)
Public Delegate Sub PostDownloadFunction (
_myGameObject As GameObject,
_myTexture2D As Texture2D
)
public delegate void PostDownloadFunction(
GameObject^ _myGameObject,
Texture2D^ _myTexture2D
)
type PostDownloadFunction =
delegate of
_myGameObject : GameObject *
_myTexture2D : Texture2D -> unit
Parameters
- _myGameObject
- Type: GameObject
The GameObject associated with the Texture2D that was sent (the one used to send the Texture2D) - _myTexture2D
- Type: Texture2D
The Texture2D that was sent
See Also