Eyeon:Script/Reference/Applications/Fusion/Classes/RenderSlave/IsDisconnecting

From VFXPedia

< Eyeon:Script | Reference | Applications | Fusion | Classes | RenderSlave
Revision as of 14:01, 9 December 2006 by Peter (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Contents

RenderSlave - IsDisconnecting()

Arguments

IsDisconnecting()

Returns

A boolean value indicating whether the slave's RSLVB_IsDisconnecting attribute is currently set to false.

Remarks

Sometimes when a slave is disconnecting from the render manager object, it will take a few seconds to actually disconnect. During this time, it will not show up interactively in the Render Manager's slave list, however, it will show up in the table returned by GetSlaveList(). As such, this function was added to easily tell if a RenderSlave is in the throes of disconnecting.

Requirements

  • eyeonScript 5.01
  • Fusion 5.01

Examples

rm = fusion.RenderManager

sl = rm:GetSlaveList()

if sl[1]:IsDisconnecting then

 -- do something!

end


Tips for IsDisconnecting (edit)

EyeonTips:Script/Reference/Applications/Fusion/Classes/RenderSlave/IsDisconnecting