示例#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;
}