Difference between revisions of "AGIWiki/new.room"

Jump to navigation Jump to search
32 bytes added ,  15:11, 25 October 2018
m
Text replacement - "</source>" to "</syntaxhighlight>"
m
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(2 intermediate revisions by the same user not shown)
Line 45: Line 45:
The following code goes to room 25 if [[AGIWiki/Ego|ego]] is touching the left edge of the screen:
The following code goes to room 25 if [[AGIWiki/Ego|ego]] is touching the left edge of the screen:


<syntax type = "C++">
<syntaxhighlight lang="cpp">
  #define ego_edge_code v2
  #define ego_edge_code v2
  #define left_edge      4
  #define left_edge      4
Line 53: Line 53:
     new.room(25);
     new.room(25);
  }
  }
</syntax>
</syntaxhighlight>


The next example accomplishes the same task with <code>new.room.v</code><nowiki>: </nowiki>
The next example accomplishes the same task with <code>new.room.v</code><nowiki>: </nowiki>


<syntax type = "C++">
<syntaxhighlight lang="cpp">
  #define ego_edge_code v2
  #define ego_edge_code v2
  #define left_edge      4
  #define left_edge      4
Line 66: Line 66:
     new.room.v(v202);
     new.room.v(v202);
  }
  }
</syntax>
</syntaxhighlight>


== Technical Information ==
== Technical Information ==
TrustedUser
2,147

edits

Navigation menu