class MAGES::Recorder::TransformCaptor

Overview

Captures transform events sent to/from the network. More…

class TransformCaptor: public MAGES::Recorder::ICaptor
{
public:
    // properties

    bool IsPolling;

    // methods

    void Init();
    void Deinit();
    void Poll(double timestamp, UpdatePhase phase);
};

Inherited Members

public:
    // properties

    bool IsPolling;

    // methods

    void Init();
    void Deinit();
    void Poll(double timestamp, UpdatePhase phase);

Detailed Documentation

Captures transform events sent to/from the network.

Properties

bool IsPolling

Gets a value indicating whether this captor is polling for events.

Note

(mdodis): Since networking is non-existent, we’ll have to pretend that we are capturing network events. So, we’ll poll for now.

Methods

void Init()

Initializes this captor.

void Deinit()

Deinitialize the encoder.

void Poll(double timestamp, UpdatePhase phase)

Polls for events.

Parameters:

timestamp

The current timestamp.

phase

The current update phase.