Posts: 4
Threads: 3
Joined: Jul 2016
08-29-2016, 07:49 AM
(This post was last modified: 08-29-2016, 07:49 AM by Sidar.)
In the project im working in all curves are static, meaning they don't change. All Nodes are fixed. I noticed under the "advanced" tab there is a "UpdateIn" option. I've turned off Check Transform as my curves won't change. Beyond that I have no clue what UpdateIn does. Considering we are targeting mobile I'd like to keep updates to a minimum.
Any insight you could give?
Posts: 690
Threads: 71
Joined: Jan 2015
Update is always called for splines (not for Control Points), but if nothing is to do, the method exits early. If this really is an issue, you'll have to manually remove/comment Update(), LateUpdate() and FixedUpdate(), perhaps using compiler defines.
You then can update a spline calling Refresh().