Open Source
sl.txt
Associated article: Second Life: A Programmer's Perspective
Tags: Global Developer Open Source Design
Published source code accompanying the article by Dana Moore and Raymond Budd in which they show how you can create objects in Second Life that have credible dynamism, even compared to AJAX and browser-based applications.
Second Life: A Programmer's Perspective
by Dana Moore and Ray Budd
Listing One
1 default
2 {
3 state_entry()
4 {
5 llSay(0, "Hello, Avatar!");
6 }
7
8 touch_start(integer total_number)
9 {
10 llSay(0, "Touched.");
11 }
12 }
Listing Two
1 //This script forwards all surrounding chat to the ...


