Exemplo n.º 1
0
void LLAgentPilot::startPlayback(void *)
{
	gAgentPilot.mNumRuns = -1;
	gAgentPilot.startPlayback();
}
Exemplo n.º 2
0
void LLAgentPilot::stopPlayback(void *)
{
	gAgentPilot.stopPlayback();
}
Exemplo n.º 3
0
void LLAgentPilot::addWaypoint(void *)
{
	gAgentPilot.addAction(STRAIGHT);
}
Exemplo n.º 4
0
void LLAgentPilot::saveRecord(void *)
{
	gAgentPilot.stopRecord();
}
Exemplo n.º 5
0
// static
void LLAgentPilot::startRecord(void *)
{
	gAgentPilot.startRecord();
}
Exemplo n.º 6
0
void LLAgentPilot::stopRecord()
{
	gAgentPilot.addAction(STRAIGHT);
	gAgentPilot.save(gSavedSettings.getString("StatsPilotFile"));
	mRecording = FALSE;
}
Exemplo n.º 7
0
void LLAgentPilot::stopRecord()
{
	gAgentPilot.addAction(STRAIGHT);
	gAgentPilot.save();
	mRecording = FALSE;
}