Back To Index

TrackRandomSceneList

Jump To Parameters
Jump To Function Definitions


Parameter Definitions

Select the parameter name from below to jump directly to it on this page.

images
indexNumberToTrack
texts


images

The images to manipulate.

Exposed Value Type Default Value
protected Image[] new Image[] { }

Back To Top


indexNumberToTrack

The index of the _randomRoomList on the UICoreLogic to track

Exposed Value Type Default Value
protected int 0

Back To Top


texts

The Text values to manipulate.

Exposed Value Type Default Value
protected Text[] new Text[] { }

Back To Top

Function Definitions

Select the function name from below to jump directly to it on this page.

FixedUpdate
SetSprite
SetText


protected virtual void FixedUpdate()

Sets the images and the texts to whatever the current indexNumberToTrack integer is set to. Will get that info from the UICoreLogic’s _randomRoomList variable.

Expose Value Overrideable Returns
protected True Does not return anything

No parameters

Back To Top


protected virtual void SetSprite(Sprite newImage)

Sets the input Sprite image value into all the images

Expose Value Overrideable Returns
protected True Does not return anything
Parameter Name Description
newImage Sprite type, the image to set all the images to

Back To Top


protected virtual void SetText(string inputText)

Used to set the texts values to be whatever the input value is

Expose Value Overrideable Returns
protected True Does not return anything
Parameter Name Description
inputText string type, the string value to set to the texts

Back To Top