Eyeon:Script/Reference/Applications/Fusion/Classes/RenderJob/IsRendering

From VFXPedia

Jump to: navigation, search

Contents

RenderJob - IsRendering()

Arguments

GetFrames()

Returns

A boolean indicating whether the job is currently still rendering.

Remarks

See Returns.

Requirements

  • eyeonScript 5.01
  • Fusion 5.01

Examples

rm = fusion.RenderManager
 
jl = rm:GetJobList()
 
print("Currently active jobs:")
for i, job in jl do
   if job:IsRendering() then
      print(job:GetAttrs().RJOBS_Name)
   end
end

Results:
Currently active jobs:
E:\projects\slow.comp
E:\projects\busy.comp


Tips for IsRendering (edit)

EyeonTips:Script/Reference/Applications/Fusion/Classes/RenderJob/IsRendering