More fast rotate

Hello

I use Update function and below script for rotate.

this.transform.Rotate (0.0f, 0.0f, 180 + deg);
this.transform.Rotate (0.0f, 180.0f, 0.0f);

deg is float value.

But, it is costs CPU power.
In the PC, it is smooth moving. but Android can’t move well.
do you know other Rotate function which can move more fast speed?

Cache the transform component in start()

mytrans = this.transform;

then operate on mytrans, ie: mytrans.rotate

Awesome! Thanks a lot!
I could make faster :>