
Escape key toggles this menu. You can add cameras. You can add jumps. When you click Go, the demo will be fast-forwarded until the jump is loaded. The floating is smoother as well. So essentially, the most important 1.00 playback features are included. Everything you see is functional.
I've created this for the sake of exercise. Are you interested in obtaining it? If so, why?
EDIT: for my fellow programmers, this may be amusing (13 tabs!):
if (menuOpen) {
switch (cmd) {
case UI_KEY_EVENT:
if (arg1) {
switch (arg0) {
case K_MOUSE1:
if (hoverItem) {
switch (hoverItem->type) {
case ITEM_TYPE_BUTTON:
switch (hoverItem->identifier) {
case BUTTON_JUMP_INSERT:
if (NumLines(JUMP_FILE) < LISTBOX_ITEMS) {
AddLine(JUMP_FILE, va("%.2f min", ((float)(curTime-startTime)/60000.0f)));
LoadJumps();
}
break;
case BUTTON_JUMP_DELETE:
Edited by max, 12 March 2012 - 04:55 AM.












