Friday, June 22, 2007

Brick a Brac...is that a real word?

Photos: To make some really nice photos

Make a note of any settings you change in case they slow down your system.
Go to Preferences
Advanced Graphics
Check anisotropic filtering Assuming you have a good graphics card, this is enough to smooth ugly edges

Also do this:

Preferences
Graphics Detail If the primary subject of your snapshot is an avatar or object, then consider increasing mesh detail sliders for these things
Then
Hold down Ctrl + Alt + D to enable 'Client' and 'Server' menus at the top of the screen. Select 'Hi-Res Snapshot' from the 'Client' menu.


Oh new cool thing now is Post cards!! Whole blog will be made on this feature.


Neat gadgets
Titlers : Those color text items above your AV. This one gives you a choice of colors and flash.

string command = "";
string person = "";
key owner;
string title;

default
{
state_entry()
{
owner = llGetOwner();
llListen(63,"",owner,"");
llSetTimerEvent(0.0);
}

attach(key attached)
{
if (attached != NULL_KEY)
{
llOwnerSay("To set a title:/63 title


Loop Sound Script: Just jab this in a prim and a wav you want rename the sound part the exact name of the wav.

default
{state_entry()
{
llLoopSound("waterfall sound", 1.0);
//replace "waterfall sound" with the name of your sound of choice (don't forget the quotation marks)

// 1.0 is full volume - 0.0 is silent
//llStopSound();
//Just to make life easy if you need to stop the sound
}
}

No comments:

Post a Comment