How do I know what frame to start and end of alembic?
1079 4 0-
- Duan
- Member
- 2 posts
- Joined: Oct. 2022
- Offline
-
- manja
- Member
- 20 posts
- Joined: Dec. 2014
- Offline
-
- sanostol
- Member
- 568 posts
- Joined: Nov. 2005
- Offline
You can middele click on the node in the networkview
or if You need it automated:
the values are the actual samples, so if You have motion samples they have a additional step
or if You need it automated:
import _alembic_hom_extensions as abc time_range = abc.alembicTimeRange(archive_path) start_frame = timerange[0]*hou.fps() end_frame = timerange[1]*hou.fps()
Edited by sanostol - Nov. 30, 2022 05:12:10
-
- Duan
- Member
- 2 posts
- Joined: Oct. 2022
- Offline
sanostol
You can middele click on the node in the networkview
or if You need it automated:the values are the actual samples, so if You have motion samples they have a additional stepimport _alembic_hom_extensions as abc time_range = abc.alembicTimeRange(archive_path) start_frame = timerange[0]*hou.fps() end_frame = timerange[1]*hou.fps()
sanostol
You can middele click on the node in the networkview
or if You need it automated:the values are the actual samples, so if You have motion samples they have a additional stepThanks import _alembic_hom_extensions as abc time_range = abc.alembicTimeRange(archive_path) start_frame = timerange[0]*hou.fps() end_frame = timerange[1]*hou.fps()
-
- tamte
- Member
- 7927 posts
- Joined: July 2007
- Offline
One inconvenientce may be that those functions return timesample at 0 for static meshes
Therefore if the real animation range (in frames) is 1001-1100
And if you also have some static meshes, it will return something like 0-1100, simply not the actual animation range
Therefore if the real animation range (in frames) is 1001-1100
And if you also have some static meshes, it will return something like 0-1100, simply not the actual animation range
Tomas Slancik
FX Supervisor
Method Studios, NY
FX Supervisor
Method Studios, NY
-
- Quick Links