Hello,
just wondering if there is any way to resize a animation - for example if the animation of the character is made at the size optimal for mobile game, therefore as small as possible, it's useless for other non in game uses where much larger size would be required (promotional videos, trailers. etc) and the other way around. The question is actually for the latter, towards downscaling.
Thank you so much and keep up the good work.
Best!
Animation resizing/scaling
Re: Animation resizing/scaling
Hello,
When you deploy the character with the Creature Runtimes, it is deployed as a deformable mesh. Using your standard game engine's scaling functions, you can scale the character however large or small you like. So use that to adjust your character sizes.
Thanks
When you deploy the character with the Creature Runtimes, it is deployed as a deformable mesh. Using your standard game engine's scaling functions, you can scale the character however large or small you like. So use that to adjust your character sizes.
Thanks
Re: Animation resizing/scaling
Thank you for your reply,
I'm aware that this is one way to do it, but the problem in this case is texture atlas size. It would be much bigger than actually needed for the game, therefore it would take much more space, which is always a big issue for a mobile game.
Also are there also no other negative impacts on the game performance if resizing for all characters is done by the game engine?
Thank you for your time, I really appreciate it.
Best!
I'm aware that this is one way to do it, but the problem in this case is texture atlas size. It would be much bigger than actually needed for the game, therefore it would take much more space, which is always a big issue for a mobile game.
Also are there also no other negative impacts on the game performance if resizing for all characters is done by the game engine?
Thank you for your time, I really appreciate it.
Best!
Re: Animation resizing/scaling
Hello,
Actually you are free to resize the texture atlas down to whatever size you want as long as you keep the aspect ratio. All UV coordinates of the Creature meshes are normalized ( 0 to 1 ) so if you have more stringent memory requirements, you can always scale the texture atlas down while keeping the same aspect ratio.
Thanks
Actually you are free to resize the texture atlas down to whatever size you want as long as you keep the aspect ratio. All UV coordinates of the Creature meshes are normalized ( 0 to 1 ) so if you have more stringent memory requirements, you can always scale the texture atlas down while keeping the same aspect ratio.
Thanks
Re: Animation resizing/scaling
thank you so much, that's a very useful insight!
just one last thing regarding scaling inside game engines (in this case Unity)- do you happen to know if there is any influence on processing performance, if resizing is done in the game engine not beforehand in Creature?
thanks again!
best!
just one last thing regarding scaling inside game engines (in this case Unity)- do you happen to know if there is any influence on processing performance, if resizing is done in the game engine not beforehand in Creature?
thanks again!
best!
Re: Animation resizing/scaling
There shouldn't be a performance issue, but this will be dependent on your Game Engine.
Cheers
Cheers
Re: Animation resizing/scaling
Сlarify please.chong wrote: ↑Tue Oct 08, 2019 1:03 amActually you are free to resize the texture atlas down to whatever size you want as long as you keep the aspect ratio. All UV coordinates of the Creature meshes are normalized ( 0 to 1 ) so if you have more stringent memory requirements, you can always scale the texture atlas down while keeping the same aspect ratio.
Let's say I reduced the texture by half, where and how can I report this for meshes? I understand, scale has become 0.5, but how to set this param?
Thanks
Re: Animation resizing/scaling
The meshes are independent of the texture ( material ). So you are free to assign any texture you want to the character as long as the UVs are mapped in the same way. This follow standard Game Engine designs of having the mesh separate from its material.
Thanks
Thanks