Difference between revisions of "Talk:Chatbot"

From Second Life Wiki
Jump to navigation Jump to search
(Concise example commands we could/ should soon add)
 
(Vector/ rotation arithmetic in prefix syntax we could/ should soon add)
Line 16: Line 16:


name the sitting avatar
name the sitting avatar
</pre>
Vector/ rotation arithmetic in prefix syntax (e.g., syntax a la overloaded operators in C++) we could/ should soon add, e.g.
<pre>
"*"(ZERO_ROTATION, ZERO_ROTATION)
</pre>
</pre>

Revision as of 07:12, 5 September 2007

Concise example commands we could/ should soon add include:

llSetAlpha
zero rotation

push linear
push rotational
/7 llApplyRotationalImpulse(<3.0, 0.0, 0.0>, TRUE); // roll about the X axis
/7 llApplyRotationalImpulse(<0.0, 3.0, 0.0>, TRUE); // pitch about the Y axis
/7 llApplyRotationalImpulse(<0.0, 0.0, 3.0>, TRUE); // yaw about the Z axis
/7 llSetStatus(STATUS_PHYSICS, FALSE); llSetStatus(STATUS_PHYSICS, TRUE); // zero inertia

move away from owner, move toward owner
face the sun, turn away

name the sitting avatar

Vector/ rotation arithmetic in prefix syntax (e.g., syntax a la overloaded operators in C++) we could/ should soon add, e.g.

"*"(ZERO_ROTATION, ZERO_ROTATION)