Wzc(讨论 | 贡献)2020年8月14日 (五) 00:42的版本
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
Template:Needs Translation/
函数名
|
Function: llSetLocalRot( rotation rot );
|
参数:
•旋转腐烂
|
返回值:设置子基本体相对于根基本体的旋转
|
示例
|
将此脚本放入子prim中,在每次触摸时以1度增量旋转它。
rotation rot_xyzs;
default
{
state_entry()
{
vector xyz_angles = <0,1.0,0>; // This defines a 1 degree change on the Y axis
vector angles_in_radians = xyz_angles*DEG_TO_RAD; // Change to radians
rot_xyzs = llEuler2Rot(angles_in_radians); // Convert to a rotation
}
touch_start(integer s)
{
llSetLocalRot(llGetLocalRot()*rot_xyzs); // Apply the increment rotation to the prim's current rotation ...
}
}
|