PDA

View Full Version : getting Z intensity from Smooth Brush



Zobi La Mouche
02-18-10, 10:35 AM
although
[IKeyPress,SHIFT,[ISet,Draw: Z Intensity,xxx]]
works to set the value,
[VarSet,myVar,[IKeyPress,SHIFT,[IGet,Draw: Z Intensity]]]
does not seem to work to get it.

Any ideas why ?

marcus_civis
02-18-10, 02:24 PM
Interesting problem. It seems that some action is necessary in order for the variable to get the right value. This code simply clicks off canvas first:




[IKeyPress,SHIFT,
[CanvasClick,-100,-100]
[VarSet,myVar,[IGet,Draw: Z Intensity]]
]

Zobi La Mouche
02-19-10, 02:43 AM
yes, thank you very much.