I’m looking for a script that renders vector image files for each frame of an animation created with Bongo. Has anyone seen any tool like this? Thanks
Hi,
Tthis saves an SVG then increments the current timeline tick. So for a 100 tick animation it will save every tick. You’ll need to mess with the file path/tick numbers to get results you’re happy with.
Option Explicit
'Script written by <insert name>
'Script copyrighted by <insert company name>
'Script version Monday, August 28, 2023 9:52:21 AM
Call Main()
Sub Main()
Dim i
For i = 0 To 100
Dim fileName
fileName = Chr(34) & "C:\Users\Joshua\Documents\Animation\file" & CStr(i) & ".svg" & Chr(34)
Call Rhino.Command("_-Save " & fileName)
Call Rhino.Command("_-BongoSetCurrentTick I")
Next
End Sub
Let me know if you need more help
Thank you Joshua