I use c# extensions by calling public static method from uvs, like
public static float GetPositionX(this Transform target) => target.position.x;
Definitly it’s convenient than custom nodes, especially with 3rd party tools like DoTween.
Are there any performance issues than custom nodes?
Thanks!