Page 1 of 1

How to use Easing Function on "Move to View" Actions Settings in Expert mode?

Posted: Wed May 05, 2021 5:02 pm
by LichtUndSchatten
I can set the ease function here.
settings-move-to-view-with-ease-funktion.PNG
settings-move-to-view-with-ease-funktion.PNG (11.08 KiB) Viewed 1758 times
Question: How can I set the ease function here and still use the variable? I tried putting "$(*node_view)/2" to get "Ease Out Back" but without success.
settings-expert-mode.PNG
settings-expert-mode.PNG (8.96 KiB) Viewed 1758 times

Thank you for your support!
Best regards!

Re: How to use Easing Function on "Move to View" Actions Settings in Expert mode?

Posted: Wed May 05, 2021 7:03 pm
by Hopki
Hi,
The variable is seen as a single-digit even though it may be a text variable with 90/0/70.
So what you need is separate variables, as an example:
var_pan
var_tilt
var_fov

The action value would then be:

Code: Select all

$(*var_pan)/$(*var_tilt)/$(*var_fov)/-1/2
Regards,

Re: How to use Easing Function on "Move to View" Actions Settings in Expert mode?

Posted: Thu May 06, 2021 12:11 pm
by k.ary.n
Ease Out is 2, as indicated in Hopki's example. -1 is "Keep Current Projection"
You can find the others here: https://ggnome.com/doc/skin-actions/#move-to-view

Re: How to use Easing Function on "Move to View" Actions Settings in Expert mode?

Posted: Thu May 06, 2021 1:46 pm
by LichtUndSchatten
Thank you both, I think that helps me to understand and I will try it.

Best regards!