mirror of
https://github.com/opensim/opensim.git
synced 2026-05-19 22:45:43 +08:00
22 lines
487 B
Plaintext
22 lines
487 B
Plaintext
|
|
|
|
|
|
EventManager.cs
|
|
---------------
|
|
* Hook up to the worlds touch-event:
|
|
myScriptEngine.World.touch_start += new TempWorldInterfaceEventDelegates.touch_start(touch_start);
|
|
|
|
* Modify:
|
|
public void touch_start(string ObjectID)
|
|
to correct parameters to match the event
|
|
|
|
* Make hooks to add/remove script using ScriptManager.cs
|
|
|
|
|
|
|
|
LSL_BuiltIn_Commands_TestImplementation.cs
|
|
------------------------------------------
|
|
* Change llSay to do something useful (send message)
|
|
|
|
|