Hi everyone,
my task at hand is very simple, yet i struggle with it.
So far i managed to make a full circle, however i need it to be 8 shape pattern, so to speak i’ve managed to draw the half of it.
Should be simple, my trigonometry have seen better.
I am using that code below:
x = Mathf.Sin(Time.time * Time.time) * power;
x = x;
y = Mathf.Cos(Time.time * Time.time) * power;
y = y;
This is drawing one full circle, while i need it be 8 shaped.
For some reason can’t figure it out.
Please help, it would be much appreciated!