Guest User

Untitled

a guest
Nov 24th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. function RecordingsGui::PlayDemo() {
  2. %fileName = "recordings/" @ Control::getValue(RecordingsTextList) @ ".rec";
  3. if (isFile(%fileName)) {
  4. $PlayingDemo = true;
  5. if ( $timeDemo )
  6. timeDemo("recordings/" @ Control::getValue(RecordingsTextList) @ ".rec");
  7. else
  8. playDemo("recordings/" @ Control::getValue(RecordingsTextList) @ ".rec");
  9.  
  10. cursorOn(MainWindow);
  11. GuiLoadContentCtrl(MainWindow, "gui/Loading.gui");
  12. renderCanvas(MainWindow);
  13. } else {
  14. RecordingsGui::onOpen();
  15. }
  16. }
Add Comment
Please, Sign In to add comment