GW Text on top

I'm trying to display the gw text above everything else in viewport. As of right now it displays and everything right but it is hidden by the objects.

Does it have to be converted to screen space or something?

unRegisterRedrawViewsCallback showObjectNames
fn showObjectNames=
(
gw.setTransform(Matrix3 1)
for o in objects where not o.isHidden do
(
gw.text o.pos (o.name as string) color:yellow
)
gw.enlargeUpdateRect #whole
gw.updateScreen()
)
registerRedrawViewsCallback showObjectNames
showObjectNames()

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
JokerMartini's picture

displays on top??

--bug (needs to apply to only selected objects and elements
--gw.wtext [100,100,0] "----------------------------------" color:green

try(destroyDialog ::rlIDTools)catch()
rollout rlIDTools "ID Tools"
(
checkbutton btnInfo "Info" pos:[88,123] width:69 height:22

on btnInfo changed state do
(
fn showObjectNames=
(
gw.setTransform(Matrix3 1)
for o in objects where not o.isHidden do
(
gw.text o.pos (o.gbufferchannel as string) color:yellow
)
--//Displays on top???
gw.wtext [100,100,0] "----------------------------------" color:green

gw.enlargeUpdateRect #whole
gw.updateScreen()
forceCompleteRedraw()
)
registerRedrawViewsCallback showObjectNames

if state then
(
showObjectNames()

)else(

unRegisterRedrawViewsCallback showObjectNames
forceCompleteRedraw()
)
)
)
createDialog rlIDTools 241 234 style:#(#style_SysMenu, #style_ToolWindow) --bgColor:(color 58 58 58)

I don't get what is different to make it display on top?

John Martini
Digital Artist
http://www.JokerMartini.com (new site)

JokerMartini's picture

Not for me

It still does not seem to work for me. I have somehow come across something that does fix it but does not really count as a solution because I'm not sure why it makes it work.

Try this.
When i check the xView options it fixes it to display the text ontop.....?

http://www.scriptspot.com/files/fix.jpg

AttachmentSize
fix.jpg 295.56 KB

John Martini
Digital Artist
http://www.JokerMartini.com (new site)

Anubis's picture

xView bug?...

xView is new in Max 2010 and I can't test that in my 2009.

my recent MAXScripts RSS (archive here)

Anubis's picture

?...

hmm, its works fine here
test

AttachmentSize
gw_text_ok.png 3.74 KB

my recent MAXScripts RSS (archive here)

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.