You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
700 B
HTML

<!menue>
<!h1=MessageInterface>
<h3>Layer</h3>
<!include=Layer Messages,layer_inc.html,>
Surface ist eine einfache rechteckige Plane.
<!h2a=surface.color,surface.color = COLOR,surface.color>
<h3><wT>surface.color = <wD>COLOR|HEXVALUE</h3>
Setzt die Farbe des surface Objekts.
COLOR = Fixtext aus llgfx_color.h
HEX = 0xRRGGBB ... 24bit RGB Wert
<!h2a=surface.xysize,surface.xysize = int:int,surface.xysize>
<h3><wT>surface.xysize = <wV>int:int</h3>
Setzt Breite und Höhe der Plane.
Beispiel: Roter Bereich, halb durchscheinend
<pre>
layer.create testx type=surface zorder=200
layer.testx {
visible = true
color = RED
xysize = 200:200
blitflag = BLIT_FXBLEND
blitfx.fixalpha = 0.5
}
</pre>