- This wiki is out of date, use the continuation of this wiki instead
Graph
From FenixWiki
(Difference between revisions)
Revision as of 02:09, 12 May 2007 (edit) Sandman (Talk | contribs) ← Previous diff |
Revision as of 11:32, 9 July 2007 (edit) (undo) Sandman (Talk | contribs) m Next diff → |
||
Line 19: | Line 19: | ||
End | End | ||
</pre> | </pre> | ||
- | Used in example: [[new_map]](), [[map_clear]], [[ | + | Used in example: [[new_map]](), [[map_clear]](), [[graphic]], [[x]], [[y]] |
Revision as of 11:32, 9 July 2007
Definition
INT graph
Graph is a predefined local variable which holds the GraphID of the process. A graphic can be assigned to the process by assigning the GraphID of that graphic to graph.
Example
Process cyan_graphic() Begin graph = new_map(100,100,8); // create a new 100x100x8 map. map_clear(0,graph,rgb(0,255,255)); // clear it cyan-colored x = 100; //Position the graphic 100 pixels y = 100; //from the top and left of the screen Loop frame; End End