|
| 31 Oct 2013 11:32 PM |
Is there a way to tell how far off a bricks CFrame rotation is away from 0? for example;
b.CFrame = CFrame.new(0,0,0) * CFrame.Angles(math.rad(90),0,0)
is there any way to tell that the block is 90 degrees away from being at a 0 degrees rotation? |
|
|
| Report Abuse |
|
|
Asleum
|
  |
| Joined: 07 Nov 2008 |
| Total Posts: 185 |
|
|
| 01 Nov 2013 01:38 AM |
b.CFrame = CFrame.new(0,0,0) * CFrame.Angles(math.rad(90),0,0) print(b.Rotation)
Output : 90, 0, 0
It's that simple :P |
|
|
| Report Abuse |
|
|