| 500 | } |
| 501 | |
| 502 | void GuiParticleGraphCtrl::setSelectedPlot(S32 plotID) |
| 503 | { |
| 504 | mSelectedPlot = plotID; |
| 505 | |
| 506 | // Argument Buffer. |
| 507 | char argBuffer[32]; |
| 508 | |
| 509 | dSprintf(argBuffer, 32, "%d", plotID); |
| 510 | |
| 511 | // Call Scripts. |
| 512 | Con::executef(this, "onSetSelected", argBuffer); |
| 513 | } |
| 514 | |
| 515 | void GuiParticleGraphCtrl::setSelectedPoint(S32 point) |
| 516 | { |
no test coverage detected