Methods

List of methods available in the Profile Manager class

Query Profile List

Trigger a query for available profiles.

-> Profile List Query Result

void QueryProfileList();

Get Current

Get the profile currently loaded to a headset

-> Current Profile Result

void GetCurrent(string headsetId)

Create

Create a new profile

-> Profile Created

void Create(string profileName);

Delete

Delete a profile

void Delete(string profileName);

Rename

Rename a profile

void Rename(string oldName, string newName);

Load

Load profile to a headset

-> Profile Loaded

void Load(string profileName, string headsetId);

Unload

Unload a profile from headset

-> Profile Unloaded

void Unload(string profileName, string headsetId);

Save

Save the potentially modified contents of the profile currenlt loaded to this headset, necessary to save training progress.

-> Profile Saved

void Save(string profileName, string headsetId);

Load Guest

Load a guest profile to a headset

-> Guest Profile Loaded

LoadGuest(string headsetId);

Last updated