interface MAGES::Recorder::IInterpreter

Overview

A class that can interpret one or more ICapturedEvent types. More…

interface IInterpreter
{
    // properties

    bool Enabled;

    // methods

    void Interpret(ICapturedEvent evt);
    void Initialize();
    void Update();
    void FixedUpdate();
    void LateUpdate();
    void Deinitialize();
};

// direct descendants

class ClientChangeInterpreter;
class GameObjectSpawnerInterpreter;
class PointerInterpreter;
class SceneGraphInterpreter;
class TransformationInterpreter;

Detailed Documentation

A class that can interpret one or more ICapturedEvent types.

Properties

bool Enabled

Gets a value indicating whether the interpreter is enabled and should receive update events.

Methods

void Interpret(ICapturedEvent evt)

Interprets the event.

Only event types in InterpretsEventAttribute will be sent to this method.

Parameters:

evt

The event itself.

void Initialize()

Initialize the interpreter.

void Update()

Called at the start of the update loop.

void FixedUpdate()

Called at the end of the physics update.

void LateUpdate()

Called at the end of the update loop.

void Deinitialize()

Deinitialize the interpreter.