First time here? Check out the FAQ!
x

Could it be that I cannot ParameterTransform the 'showInVCS' boolean of a TriggeredSoundToGlobaController?

0 votes
200 views

I know this code works perfectly on a normal STGC, but it doesn't seem work with a triggered one

 

snd doNotTransformSubSounds.
snd showInVCS isNil ifFalse: [snd showInVCS: ?showInVCS].

 

 

Here's the odd thing  I have now discovered...

What I am actually trying to do is have 4 different options exposed in my Class.

One of them (StepCounter in this case) does work, but the others don't even though they have the exact same syntax.

asked Aug 17, 2016 in Capytalk & Smalltalk by cristian-vogel (Master) (8,410 points)
edited Aug 17, 2016 by cristian-vogel

1 Answer

0 votes

I figured it out...  actually its caught me out before, I just forgot.

If AllowLiveOveride is checked, then it over rides ShowInVCS - the GeneratedEvent will always be shown in the VCS, so you can grab it!

Problem solved cool

answered Aug 17, 2016 by cristian-vogel (Master) (8,410 points)
...