- This topic has 4 replies, 3 voices, and was last updated 5 years, 12 months ago by Mikhail Luzyanin.
-
AuthorPosts
-
2018-11-20 at 9:54 pm #9025tcdoeCustomer
Hi Folks,
I’d like to make something a little unusual, asking for advice if anyone has tried something like this. I want to make a model animation (such as simple Z-axis rotation) synchronize with an animated gif (I guess as a texture on a plane).Here’s a quick drawing just to explain:
If anyone has any suggestions whether this can work (or why not?) or the best way to approach this, I’d MUCH appreciate it. I’m not sure how to best implement the slider control, or whether the frame-to-frame anim-gif display would work (I think it will).
Thanks in advance.
CEO, ABĒMIS LLC
visit: abemis.com2018-11-21 at 9:17 am #9034Yuri KovelenovStaffHi,
At first glance it all looks possible with Puzzles.
The slider can be implemented with a 3D object dragged by the user.
https://www.soft8soft.com/docs/manual/en/introduction/Puzzles.html#when_draggedThe model can be rotated according to the drag amount
https://www.soft8soft.com/docs/manual/en/introduction/Puzzles.html#drag_rotateThen you can get that object rotation amount with
https://www.soft8soft.com/docs/manual/en/introduction/Puzzles.html#get_transformand map it to the animated texture, which I think should not be GIF but rather composed in an atlas with frames like it is in the welding effect from our Industrial robot demo
You can map the rotation amount to animation frames using
https://www.soft8soft.com/docs/manual/en/introduction/Puzzles.html#set_animation_frame
and possibly some simple arithmetic puzzles.Hope this helps!
Attachments:
You must be logged in to view attached files.2018-11-21 at 11:49 pm #9053tcdoeCustomerThanks!
I think I understand, we’ll give it a go then. :)CEO, ABĒMIS LLC
visit: abemis.com2018-11-22 at 11:55 pm #9095tcdoeCustomerIs there an easy way to make an atlas from an image sequence (mp4 or anim-gif either one) that I should know? There’s probably some easy python script or something out there. I searched but didn’t find anything I could easily use… Also, I’m worried that the atlas would be too big. Probably I’ll need at least 400×400 for each image just to make it look photographic very basic and not too pixelly (that’s what I’m using now for anim-gif. So for 36 images which is bare minimum to look decent for one 360 rot, that’s 2400×2400 just for the ugly case. I’d rather have 64 steps but that’s not looking possible.
I have a feeling that just using an mp4 with 64 frames might work, as long as I can set the picture frame to synchronize with animation. Not sure about that yet.
Anyway thanks if you know a video to atlas tool.CEO, ABĒMIS LLC
visit: abemis.com2018-11-23 at 8:45 am #9103Mikhail LuzyaninStaffIs there an easy way to make an atlas from an image sequence (mp4 or anim-gif either one) that I should know?
You can use this simple git to sprite sheet conventor. There’s also a lot of useful conventors on this site, for example Video to Gif, gif optimizer and so on.
Co-founder and lead graphics specialist at Soft8Soft.
-
AuthorPosts
- You must be logged in to reply to this topic.