Template:Needs Translation/
函数名
|
Function: vector llGetRootPosition( );
|
参数:float val –must fall in the range [-1.0, 1.0]
|
返回值:返回一个向量,该向量是附加到的对象脚本的根对象的区域位置
|
示例
|
示例1
default{
touch_start( integer vIntTouched ){
string vStrMessage = "The prim with this script is ";
if (llGetPos() != llGetRootPosition()){
vStrMessage += "NOT ";
}
llSay( PUBLIC_CHANNEL, vStrMessage + "centered on the root prim." );
}
}
Useful Snippets
//-- 没有llSetLocalPos,这会增加匹配子基本物体中的llGetLocalPos()的功能
fSetLocalPos( vector vPosOffset ){
llSetPos( llGetRootPosition() + vPosOffset );
}
//-- 这将移动根基本物体的偏移量,或者设置子基本物体相对于根的位置。
|