class MAGES::Analytics::CollisionRecord

Overview

Class that represents the tracked data of a collision. More…

class CollisionRecord
{
public:
    // properties

    string Name;
    string OtherName;
    List ActionNames;
    float Timestamp;
    bool IsTrigger;
};

Detailed Documentation

Class that represents the tracked data of a collision.

Properties

string Name

Gets or sets name of collided object.

string OtherName

Gets or sets name of other collision object.

List ActionNames

Gets or sets names of the current live Actions.

float Timestamp

Gets or sets its time occurence.

bool IsTrigger

Gets or sets a value indicating whether the type of collision is trigger or not.