@wobblybitsSorry been out for a while since I posted.
One thing you mat want to consider is changing
clip {
id: Clip
deny: behindtable
}
clip {
id: Clip
deny: behindtable, top
}
The original code does not deny swing clips ("top").
Swing clips (top) are referenced from the top of the screen whereas all the other clips are from the bottom of the screen. Without the above (and the mods you made to change the taskbar settings) you may occasionally see some ropes at the bottom of the screen but no model due to the placement of the clip.
Additionally if you would like a scene that plays only swing clips then you need to change the following:
clip {
id: Clip
deny: behindtable
}
Change to :
clip {
id: Clip
allow: top
//deny: behindtable
}
And then change the clip position from
clipSprite {
pos: 400, 450
standingHeight: 380
source: Clip
}
to
clipSprite {
pos: 400, -35
scale: -1.0, 1.0, 1.0
standingHeight: 380
source: Clip
}
Please also note that the line
scale: -1.0, 1.0, 1.0
should be added to most clip sprite definitions as this prevents a common problem of "text reversal" where the model is wearing a Tee shirt with text on it.
Have fun with fullscreen scenes, I know I and many others have.