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