Question about drawing and layers
Displaying 1-4 of 4 total.
1
TheGerf
|
Here's the problem. I want to use a circlefill() but want it drawn under the Entity Layer. Is it possible?
BTW, I'm using V2. Just plain, basic, V2.
TheGerf, not just any gerf.
Posted on 2000-11-19 22:22:38
|
Tricron
|
Heres one way of doing it: Hook retrace a function that draws a circle, and make your renderstring "1RE2". If you only want the circle to draw at a certain time, make sure your hook-retraced function has an IF statement in it.
Alternatively you could read up about 'masking'
Quote: BlaH! How do I change my password?
Posted on 2000-11-19 22:32:03
|
TheGerf
|
Hmm. It says nt, yet you persisnt on reading it.
TheGerf, not just any gerf.
Posted on 2000-11-19 22:34:00
|
Hatchet
|
Sometimes a hooked script can be inconvenient. So you can do this instead.
Assuming your render string was 12E3:
SetRstring("12"); Render(); //draw first 2 layers
Circle(blah); //draw your circle
SetRstring("E3"); Render(); //draw the entity layer and layer 3
There ya go. :)
-Hatchet
Posted on 2000-11-20 17:41:26
|