Documentation for the Unity C# Library
Loading...
Searching...
No Matches
PixoVR.Event.QuizDisplay Class Reference
Inheritance diagram for PixoVR.Event.QuizDisplay:
[legend]

Public Member Functions

virtual void ActivateSetCallback (Action callback)
 Waiting for object activation.
 
virtual void Active (bool state)
 
virtual void Awake ()
 
virtual void CheckInspectionStatus ()
 
virtual void Execute ()
 Used to indicate to the step manager that some actions were performed on the object.
 
virtual void GenerateBreakdown (int percentBroke)
 Generate a breakdown on the object with a certain probability.
 
virtual void HideModel ()
 Disable parts of some object childs models. Useful for configuring object breakdowns.
 
virtual void Highlight (bool state)
 Highlight an object.
 
override void Interactive (bool isInteractive)
 
virtual void OnTimerExpired ()
 
override void OpenInspectionMenu (string quizID)
 Enable inpection menu UI.
 
virtual void PlayForwardAnimation (bool playForward, Action callback)
 Used to play an animation and wait for it to finish.
 
virtual void PrepareInspectionReport (List< InteractableClass > interactables)
 
virtual void RepairElement ()
 Remove from the broken state object.
 
virtual void SetDefaultState ()
 Restoring the original state of an object after any actions with it.
 
virtual void SetInspected ()
 
override void SetParametersForItem (string quizId, string[] additionalValues)
 
void SetTimer (float timer)
 Loops and infinitely runs a method after some time in seconds.
 
virtual void ShowModel ()
 Enable parts of some object childs models. Useful for configuring object breakdowns.
 
void StopTimer ()
 Stop loops and infinitely runs a method.
 
virtual void TurnOffWaitForSelection ()
 Disable waiting for object highlighting with a pointer or hand approach. Mainly used in eval fashion.
 
virtual void TurnOnOffState (bool turnOn)
 
virtual void WaitForSelection ()
 Highlight the object with a pointer or hand approach. Mainly used in evaluation mode.
 

Public Attributes

int _selectedAnswerOptionID
 
int BrokenId = 0
 
bool IsActive
 
bool IsBroken
 
bool isInspected = false
 
ItemsEnum ItemId
 
ItemsEnum[] StepsId
 

Protected Member Functions

void SetGrabEnabled (bool isEnabled)
 
void ShowModels ()
 

Protected Attributes

DistanceGrabbable _distanceGrabbable
 [SerializeField]
 
Grabbable[] _grabbables
 
GameObject[] brokenModels
 [SerializeField]
 
GameObject[] correctModels
 [SerializeField]
 

Private Member Functions

void ClearAnswersHistory ()
 
void EnableAdditionalItems (bool isActive)
 
void Hide ()
 
bool IsLastQuestion ()
 
void OnConfirmButtonClick ()
 
void OnStartTargeting (Hand hand, Grabbable grabbable)
 
void OnStopTargeting (Hand hand, Grabbable grabbable)
 
void OnToggleSelected (string selectedAnswer, bool isCorrect, int optionID)
 
void PlayAudio ()
 
void PlayFeedbackVoiceOver (string idVo, bool isLastQuestion=true, bool isVoMustFinished=false)
 
void RepairObject (ItemsEnum itemId)
 
void SendApexEvents (QuestionInformation questionInformation)
 
void SetAnswersOptions (QuestionInformation questionInformation)
 
void SetInspectedMark (ItemsEnum itemId)
 
void SetQuestionInformation ()
 
void SetQuestionText (string questionText)
 
void Start ()
 
IEnumerator StartTimer (float timer)
 
void SubscribeOnToggles ()
 
void UnsubscribeOnToggles ()
 
void UpdateStepManager ()
 

Private Attributes

GameObject[] _additionalItemsToEnable
 [SerializeField]
 
Outline[] _additionalOutlines
 [SerializeField]
 
AnswerOption[] _answerOptions
 [SerializeField]
 
ApexSessionState _apexSessionState
 
AudioService _audioService
 
int _brokenID
 
CanvasGroup _canvasGroup
 
Button _confirmButton
 [SerializeField]
 
TMP_Text _confirmText
 [SerializeField]
 
bool _correectAnswerShouldBeCleanedForNone = false
 [SerializeField]
 
Quiz _currentQuiz
 
bool _isAnswerSaved = false
 
bool _isItemBroken
 
bool _isSelectedCorrectAnswer
 
bool _isShouldWaitForEndingVO = false
 
ItemsEnum _itemIdInQuestion
 
InteractableClass _itemInQuestion
 
NearWaypoint _nearWaypoint
 [SerializeField]
 
bool _objectsShouldBeRepaired = false
 
Outline _outline
 [SerializeField]
 
TMP_Text _questionText
 [SerializeField]
 
QuizData _quizData
 [SerializeField]
 
string _selectedAnswer
 
StepManager _stepManager
 
Coroutine _timerCoroutine
 
bool _useNearWaypoint = false
 [SerializeField]
 
List< VisibilityControlPoint_visibilityControlPoints
 [SerializeField]
 
bool _waitingForSelection
 
int currentQuestionIndex
 [SerializeField]
 
string sfxClick
 [SerializeField]
 
string sfxCorrectAnswer
 [SerializeField]
 
string sfxFixBrokenItem
 [SerializeField]
 
string sfxIncorrectAnswer
 [SerializeField]
 
TMP_Text singleText
 [SerializeField]
 

Static Private Attributes

const int MaxValue = 100
 
const int MinValue = 1
 

Detailed Description

Definition at line 18 of file QuizDisplay.cs.

Member Function Documentation

◆ ActivateSetCallback()

virtual void PixoVR.Event.InteractableClass.ActivateSetCallback ( Action callback)
inlinevirtualinherited

Waiting for object activation.

Parameters
callback

Definition at line 281 of file InteractableClass.cs.

◆ Active()

virtual void PixoVR.Event.InteractableClass.Active ( bool state)
inlinevirtualinherited

Definition at line 69 of file InteractableClass.cs.

Here is the caller graph for this function:

◆ Awake()

virtual void PixoVR.Event.InteractableClass.Awake ( )
inlinevirtualinherited

Reimplemented in PixoVR.Event.SimpleInteractable.

Definition at line 64 of file InteractableClass.cs.

◆ CheckInspectionStatus()

virtual void PixoVR.Event.InteractableClass.CheckInspectionStatus ( )
inlinevirtualinherited

Definition at line 324 of file InteractableClass.cs.

Here is the call graph for this function:

◆ ClearAnswersHistory()

void PixoVR.Event.QuizDisplay.ClearAnswersHistory ( )
inlineprivate

Definition at line 135 of file QuizDisplay.cs.

Here is the caller graph for this function:

◆ EnableAdditionalItems()

void PixoVR.Event.QuizDisplay.EnableAdditionalItems ( bool isActive)
inlineprivate

Definition at line 559 of file QuizDisplay.cs.

Here is the caller graph for this function:

◆ Execute()

virtual void PixoVR.Event.InteractableClass.Execute ( )
inlinevirtualinherited

Used to indicate to the step manager that some actions were performed on the object.

Reimplemented in PixoVR.Event.ItemOnClick.

Definition at line 267 of file InteractableClass.cs.

Here is the caller graph for this function:

◆ GenerateBreakdown()

virtual void PixoVR.Event.InteractableClass.GenerateBreakdown ( int percentBroke)
inlinevirtualinherited

Generate a breakdown on the object with a certain probability.

Parameters
percentBroke

Reimplemented in PixoVR.Event.BreakableInteractable< TBreakType >.

Definition at line 249 of file InteractableClass.cs.

Here is the caller graph for this function:

◆ Hide()

void PixoVR.Event.QuizDisplay.Hide ( )
inlineprivate

Definition at line 494 of file QuizDisplay.cs.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ HideModel()

virtual void PixoVR.Event.InteractableClass.HideModel ( )
inlinevirtualinherited

Disable parts of some object childs models. Useful for configuring object breakdowns.

Definition at line 216 of file InteractableClass.cs.

◆ Highlight()

virtual void PixoVR.Event.InteractableClass.Highlight ( bool state)
inlinevirtualinherited

Highlight an object.

Parameters
state

Reimplemented in PixoVR.Event.ItemOnClick.

Definition at line 101 of file InteractableClass.cs.

Here is the caller graph for this function:

◆ Interactive()

override void PixoVR.Event.QuizDisplay.Interactive ( bool state)
inlinevirtual
Parameters
state

Reimplemented from PixoVR.Event.InteractableClass.

Definition at line 527 of file QuizDisplay.cs.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ IsLastQuestion()

bool PixoVR.Event.QuizDisplay.IsLastQuestion ( )
inlineprivate

Definition at line 248 of file QuizDisplay.cs.

Here is the caller graph for this function:

◆ OnConfirmButtonClick()

void PixoVR.Event.QuizDisplay.OnConfirmButtonClick ( )
inlineprivate

Definition at line 146 of file QuizDisplay.cs.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ OnStartTargeting()

void PixoVR.Event.InteractableClass.OnStartTargeting ( Hand hand,
Grabbable grabbable )
inlineprivateinherited

Definition at line 179 of file InteractableClass.cs.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ OnStopTargeting()

void PixoVR.Event.InteractableClass.OnStopTargeting ( Hand hand,
Grabbable grabbable )
inlineprivateinherited

Definition at line 184 of file InteractableClass.cs.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ OnTimerExpired()

virtual void PixoVR.Event.InteractableClass.OnTimerExpired ( )
inlinevirtualinherited

Definition at line 380 of file InteractableClass.cs.

Here is the caller graph for this function:

◆ OnToggleSelected()

void PixoVR.Event.QuizDisplay.OnToggleSelected ( string selectedAnswer,
bool isCorrect,
int optionID )
inlineprivate

Definition at line 253 of file QuizDisplay.cs.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ OpenInspectionMenu()

override void PixoVR.Event.QuizDisplay.OpenInspectionMenu ( string quizId)
inlinevirtual

Enable inpection menu UI.

Parameters
quizId

Reimplemented from PixoVR.Event.InteractableClass.

Definition at line 512 of file QuizDisplay.cs.

Here is the call graph for this function:

◆ PlayAudio()

void PixoVR.Event.QuizDisplay.PlayAudio ( )
inlineprivate

Definition at line 390 of file QuizDisplay.cs.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ PlayFeedbackVoiceOver()

void PixoVR.Event.QuizDisplay.PlayFeedbackVoiceOver ( string idVo,
bool isLastQuestion = true,
bool isVoMustFinished = false )
inlineprivate

Definition at line 352 of file QuizDisplay.cs.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ PlayForwardAnimation()

virtual void PixoVR.Event.InteractableClass.PlayForwardAnimation ( bool playForward,
Action callback )
inlinevirtualinherited

Used to play an animation and wait for it to finish.

Parameters
playForward
callback

Definition at line 259 of file InteractableClass.cs.

◆ PrepareInspectionReport()

virtual void PixoVR.Event.InteractableClass.PrepareInspectionReport ( List< InteractableClass > interactables)
inlinevirtualinherited

Definition at line 229 of file InteractableClass.cs.

◆ RepairElement()

virtual void PixoVR.Event.InteractableClass.RepairElement ( )
inlinevirtualinherited

Remove from the broken state object.

Definition at line 296 of file InteractableClass.cs.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ RepairObject()

void PixoVR.Event.QuizDisplay.RepairObject ( ItemsEnum itemId)
inlineprivate

Definition at line 270 of file QuizDisplay.cs.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SendApexEvents()

void PixoVR.Event.QuizDisplay.SendApexEvents ( QuestionInformation questionInformation)
inlineprivate

Definition at line 230 of file QuizDisplay.cs.

Here is the caller graph for this function:

◆ SetAnswersOptions()

void PixoVR.Event.QuizDisplay.SetAnswersOptions ( QuestionInformation questionInformation)
inlineprivate

Definition at line 287 of file QuizDisplay.cs.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SetDefaultState()

virtual void PixoVR.Event.InteractableClass.SetDefaultState ( )
inlinevirtualinherited

Restoring the original state of an object after any actions with it.

Definition at line 241 of file InteractableClass.cs.

◆ SetGrabEnabled()

void PixoVR.Event.InteractableClass.SetGrabEnabled ( bool isEnabled)
inlineprotectedinherited

Definition at line 308 of file InteractableClass.cs.

◆ SetInspected()

virtual void PixoVR.Event.InteractableClass.SetInspected ( )
inlinevirtualinherited

Definition at line 303 of file InteractableClass.cs.

Here is the caller graph for this function:

◆ SetInspectedMark()

void PixoVR.Event.QuizDisplay.SetInspectedMark ( ItemsEnum itemId)
inlineprivate

Definition at line 275 of file QuizDisplay.cs.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SetParametersForItem()

override void PixoVR.Event.QuizDisplay.SetParametersForItem ( string quizId,
string[] additionalValues )
inlinevirtual

Reimplemented from PixoVR.Event.InteractableClass.

Definition at line 570 of file QuizDisplay.cs.

Here is the call graph for this function:

◆ SetQuestionInformation()

void PixoVR.Event.QuizDisplay.SetQuestionInformation ( )
inlineprivate

Definition at line 280 of file QuizDisplay.cs.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SetQuestionText()

void PixoVR.Event.QuizDisplay.SetQuestionText ( string questionText)
inlineprivate

Definition at line 385 of file QuizDisplay.cs.

Here is the caller graph for this function:

◆ SetTimer()

void PixoVR.Event.InteractableClass.SetTimer ( float timer)
inlineinherited

Loops and infinitely runs a method after some time in seconds.

Parameters
timer

Definition at line 345 of file InteractableClass.cs.

Here is the call graph for this function:

◆ ShowModel()

virtual void PixoVR.Event.InteractableClass.ShowModel ( )
inlinevirtualinherited

Enable parts of some object childs models. Useful for configuring object breakdowns.

some

Definition at line 200 of file InteractableClass.cs.

◆ ShowModels()

void PixoVR.Event.InteractableClass.ShowModels ( )
inlineprotectedinherited

Definition at line 77 of file InteractableClass.cs.

Here is the caller graph for this function:

◆ Start()

void PixoVR.Event.QuizDisplay.Start ( )
inlineprivate

Definition at line 107 of file QuizDisplay.cs.

Here is the call graph for this function:

◆ StartTimer()

IEnumerator PixoVR.Event.InteractableClass.StartTimer ( float timer)
inlineprivateinherited

Definition at line 370 of file InteractableClass.cs.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ StopTimer()

void PixoVR.Event.InteractableClass.StopTimer ( )
inlineinherited

Stop loops and infinitely runs a method.

Definition at line 360 of file InteractableClass.cs.

Here is the caller graph for this function:

◆ SubscribeOnToggles()

void PixoVR.Event.QuizDisplay.SubscribeOnToggles ( )
inlineprivate

Definition at line 118 of file QuizDisplay.cs.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ TurnOffWaitForSelection()

virtual void PixoVR.Event.InteractableClass.TurnOffWaitForSelection ( )
inlinevirtualinherited

Disable waiting for object highlighting with a pointer or hand approach. Mainly used in eval fashion.

Definition at line 154 of file InteractableClass.cs.

Here is the call graph for this function:

◆ TurnOnOffState()

virtual void PixoVR.Event.InteractableClass.TurnOnOffState ( bool turnOn)
inlinevirtualinherited
Parameters
turnOn

Definition at line 289 of file InteractableClass.cs.

Here is the caller graph for this function:

◆ UnsubscribeOnToggles()

void PixoVR.Event.QuizDisplay.UnsubscribeOnToggles ( )
inlineprivate

Definition at line 127 of file QuizDisplay.cs.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ UpdateStepManager()

void PixoVR.Event.QuizDisplay.UpdateStepManager ( )
inlineprivate

Definition at line 152 of file QuizDisplay.cs.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ WaitForSelection()

virtual void PixoVR.Event.InteractableClass.WaitForSelection ( )
inlinevirtualinherited

Highlight the object with a pointer or hand approach. Mainly used in evaluation mode.

Definition at line 126 of file InteractableClass.cs.

Here is the call graph for this function:

Member Data Documentation

◆ _additionalItemsToEnable

GameObject [] PixoVR.Event.QuizDisplay._additionalItemsToEnable
privateSerializeField

[SerializeField]

Definition at line 68 of file QuizDisplay.cs.

◆ _additionalOutlines

Outline [] PixoVR.Event.InteractableClass._additionalOutlines
privateinheritedSerializeField

[SerializeField]

Definition at line 40 of file InteractableClass.cs.

◆ _answerOptions

AnswerOption [] PixoVR.Event.QuizDisplay._answerOptions
privateSerializeField

[SerializeField]

Definition at line 36 of file QuizDisplay.cs.

◆ _apexSessionState

ApexSessionState PixoVR.Event.QuizDisplay._apexSessionState
private

Definition at line 105 of file QuizDisplay.cs.

◆ _audioService

AudioService PixoVR.Event.QuizDisplay._audioService
private

Definition at line 103 of file QuizDisplay.cs.

◆ _brokenID

int PixoVR.Event.QuizDisplay._brokenID
private

Definition at line 96 of file QuizDisplay.cs.

◆ _canvasGroup

CanvasGroup PixoVR.Event.QuizDisplay._canvasGroup
private

Definition at line 20 of file QuizDisplay.cs.

◆ _confirmButton

Button PixoVR.Event.QuizDisplay._confirmButton
privateSerializeField

[SerializeField]

Definition at line 40 of file QuizDisplay.cs.

◆ _confirmText

TMP_Text PixoVR.Event.QuizDisplay._confirmText
privateSerializeField

[SerializeField]

Definition at line 44 of file QuizDisplay.cs.

◆ _correectAnswerShouldBeCleanedForNone

bool PixoVR.Event.QuizDisplay._correectAnswerShouldBeCleanedForNone = false
privateSerializeField

[SerializeField]

Definition at line 85 of file QuizDisplay.cs.

◆ _currentQuiz

Quiz PixoVR.Event.QuizDisplay._currentQuiz
private

Definition at line 91 of file QuizDisplay.cs.

◆ _distanceGrabbable

DistanceGrabbable PixoVR.Event.InteractableClass._distanceGrabbable
protectedinheritedSerializeField

[SerializeField]

Definition at line 44 of file InteractableClass.cs.

◆ _grabbables

Grabbable [] PixoVR.Event.InteractableClass._grabbables
protectedinherited

Definition at line 49 of file InteractableClass.cs.

◆ _isAnswerSaved

bool PixoVR.Event.QuizDisplay._isAnswerSaved = false
private

Definition at line 100 of file QuizDisplay.cs.

◆ _isItemBroken

bool PixoVR.Event.QuizDisplay._isItemBroken
private

Definition at line 95 of file QuizDisplay.cs.

◆ _isSelectedCorrectAnswer

bool PixoVR.Event.QuizDisplay._isSelectedCorrectAnswer
private

Definition at line 99 of file QuizDisplay.cs.

◆ _isShouldWaitForEndingVO

bool PixoVR.Event.QuizDisplay._isShouldWaitForEndingVO = false
private

Definition at line 97 of file QuizDisplay.cs.

◆ _itemIdInQuestion

ItemsEnum PixoVR.Event.QuizDisplay._itemIdInQuestion
private

Definition at line 94 of file QuizDisplay.cs.

◆ _itemInQuestion

InteractableClass PixoVR.Event.QuizDisplay._itemInQuestion
private

Definition at line 93 of file QuizDisplay.cs.

◆ _nearWaypoint

NearWaypoint PixoVR.Event.QuizDisplay._nearWaypoint
privateSerializeField

[SerializeField]

Definition at line 24 of file QuizDisplay.cs.

◆ _objectsShouldBeRepaired

bool PixoVR.Event.QuizDisplay._objectsShouldBeRepaired = false
private

Definition at line 81 of file QuizDisplay.cs.

◆ _outline

Outline PixoVR.Event.InteractableClass._outline
privateinheritedSerializeField

[SerializeField]

Definition at line 36 of file InteractableClass.cs.

◆ _questionText

TMP_Text PixoVR.Event.QuizDisplay._questionText
privateSerializeField

[SerializeField]

Definition at line 32 of file QuizDisplay.cs.

◆ _quizData

QuizData PixoVR.Event.QuizDisplay._quizData
privateSerializeField

[SerializeField]

Definition at line 28 of file QuizDisplay.cs.

◆ _selectedAnswer

string PixoVR.Event.QuizDisplay._selectedAnswer
private

Definition at line 92 of file QuizDisplay.cs.

◆ _selectedAnswerOptionID

int PixoVR.Event.QuizDisplay._selectedAnswerOptionID

Definition at line 101 of file QuizDisplay.cs.

◆ _stepManager

StepManager PixoVR.Event.QuizDisplay._stepManager
private

Definition at line 104 of file QuizDisplay.cs.

◆ _timerCoroutine

Coroutine PixoVR.Event.InteractableClass._timerCoroutine
privateinherited

Definition at line 52 of file InteractableClass.cs.

◆ _useNearWaypoint

bool PixoVR.Event.QuizDisplay._useNearWaypoint = false
privateSerializeField

[SerializeField]

Definition at line 89 of file QuizDisplay.cs.

◆ _visibilityControlPoints

List<VisibilityControlPoint> PixoVR.Event.QuizDisplay._visibilityControlPoints
privateSerializeField

[SerializeField]

Definition at line 72 of file QuizDisplay.cs.

◆ _waitingForSelection

bool PixoVR.Event.InteractableClass._waitingForSelection
privateinherited

Definition at line 50 of file InteractableClass.cs.

◆ BrokenId

int PixoVR.Event.InteractableClass.BrokenId = 0
inherited

Definition at line 22 of file InteractableClass.cs.

◆ brokenModels

GameObject [] PixoVR.Event.InteractableClass.brokenModels
protectedinheritedSerializeField

[SerializeField]

Definition at line 32 of file InteractableClass.cs.

◆ correctModels

GameObject [] PixoVR.Event.InteractableClass.correctModels
protectedinheritedSerializeField

[SerializeField]

Definition at line 28 of file InteractableClass.cs.

◆ currentQuestionIndex

int PixoVR.Event.QuizDisplay.currentQuestionIndex
privateSerializeField

[SerializeField]

Definition at line 80 of file QuizDisplay.cs.

◆ IsActive

bool PixoVR.Event.InteractableClass.IsActive
inherited

Definition at line 20 of file InteractableClass.cs.

◆ IsBroken

bool PixoVR.Event.InteractableClass.IsBroken
inherited

Definition at line 21 of file InteractableClass.cs.

◆ isInspected

bool PixoVR.Event.InteractableClass.isInspected = false
inherited

Definition at line 23 of file InteractableClass.cs.

◆ ItemId

ItemsEnum PixoVR.Event.InteractableClass.ItemId
inherited

Definition at line 19 of file InteractableClass.cs.

◆ MaxValue

const int PixoVR.Event.InteractableClass.MaxValue = 100
staticprivateinherited

Definition at line 47 of file InteractableClass.cs.

◆ MinValue

const int PixoVR.Event.InteractableClass.MinValue = 1
staticprivateinherited

Definition at line 46 of file InteractableClass.cs.

◆ sfxClick

string PixoVR.Event.QuizDisplay.sfxClick
privateSerializeField

[SerializeField]

Definition at line 64 of file QuizDisplay.cs.

◆ sfxCorrectAnswer

string PixoVR.Event.QuizDisplay.sfxCorrectAnswer
privateSerializeField

[SerializeField]

Definition at line 52 of file QuizDisplay.cs.

◆ sfxFixBrokenItem

string PixoVR.Event.QuizDisplay.sfxFixBrokenItem
privateSerializeField

[SerializeField]

Definition at line 60 of file QuizDisplay.cs.

◆ sfxIncorrectAnswer

string PixoVR.Event.QuizDisplay.sfxIncorrectAnswer
privateSerializeField

[SerializeField]

Definition at line 56 of file QuizDisplay.cs.

◆ singleText

TMP_Text PixoVR.Event.QuizDisplay.singleText
privateSerializeField

[SerializeField]

Definition at line 48 of file QuizDisplay.cs.

◆ StepsId

ItemsEnum [] PixoVR.Event.InteractableClass.StepsId
inherited

Definition at line 24 of file InteractableClass.cs.


The documentation for this class was generated from the following file: