This wiki is out of date, use the continuation of this wiki instead

Size y

From FenixWiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 11:06, 31 March 2008 (edit)
TrevorBradley (Talk | contribs)
(Definition)
← Previous diff
Revision as of 18:47, 3 April 2008 (edit) (undo)
Sandman (Talk | contribs)

Next diff →
Line 9: Line 9:
== Definition == == Definition ==
-'''INT''' size_y+'''INT''' size_y = 100
-Size_y is a predefined [[local variable]] that can be used to stretch or compress a graphic along its vertical axis. It is defined as a percentage of the original graphic size.+Size_y is a predefined [[local variable]] that can be used to stretch or compress a graphic along its vertical axis. It is defined as a percentage of the original graphic size. The graphics's center will remain at the drawing coordinates when the graphic is drawn.
-== Notes ==+When either [[size_x]] or [[size_y]] of a [[process]] are unequal to [code]100[/code], that process' [[size]] has no effect.
-See also [[size_x]].+
== Example == == Example ==
Line 20: Line 19:
To make the [[graphic]] of a [[process]] continually stretch vertically: To make the [[graphic]] of a [[process]] continually stretch vertically:
<pre> <pre>
-Process stretch_graphic()+Process Main()
Begin Begin
- graph = load_png("image.png"); //load the graphic and assign it to the graph variable+ graph = new_map(50,50,8); //create a new graphic
- x = 100; //Position the graphic 100 pixels+ x = 100; //Position the graphic 100 pixels
- y = 100; //from the top and left of the screen+ y = 100; //from the top and left of the screen
- Loop+ Loop
- size_y += 1; //increase the height of the graphic by 1 pixel each frame.+ size_y += 1; //increase the height of the graphic by 1 pixel each frame.
- frame;+ frame;
- End+ End
 +OnExit
 + unload_map(0,graph);
End End
</pre> </pre>
 +Used in example: [[new_map]](), [[x], [[y]], [[unload_map]]()
 +
 +== See also ==
 +* [[size]]
 +* [[size_x]]
{{Locals}} {{Locals}}

Revision as of 18:47, 3 April 2008

Up to Local Variables



Definition

INT size_y = 100

Size_y is a predefined local variable that can be used to stretch or compress a graphic along its vertical axis. It is defined as a percentage of the original graphic size. The graphics's center will remain at the drawing coordinates when the graphic is drawn.

When either size_x or size_y of a process are unequal to [code]100[/code], that process' size has no effect.

Example

To make the graphic of a process continually stretch vertically:

Process Main()
Begin
    graph = new_map(50,50,8);   //create a new graphic
    x = 100;     //Position the graphic 100 pixels
    y = 100;     //from the top and left of the screen
    Loop
        size_y += 1;    //increase the height of the graphic by 1 pixel each frame.
        frame;
    End
OnExit
    unload_map(0,graph);
End

Used in example: new_map(), [[x], y, unload_map()

See also


Local variables
AngleBigbroFatherFileFlagsGraphIdRegionReservedResolutionSizeSize_xSize_ySmallbroSonXYZ
Personal tools