<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>Ingmann Design Group &#187; Outdoors</title>
	<atom:link href="http://ingmanndesign.com/category/idg/products/outdoors/feed/" rel="self" type="application/rss+xml" />
	<link>http://ingmanndesign.com</link>
	<description>Doing Business in Second Life.</description>
	<pubDate>Sat, 22 May 2010 06:52:38 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language></language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Fireflies, Particles, Geek references and more&#8230;.</title>
		<link>http://ingmanndesign.com/2008/01/30/fireflies-particles-geek-references-and-more/</link>
		<comments>http://ingmanndesign.com/2008/01/30/fireflies-particles-geek-references-and-more/#comments</comments>
		<pubDate>Wed, 30 Jan 2008 06:00:00 +0000</pubDate>
		<dc:creator>Noel</dc:creator>
		
		<category><![CDATA[Building Techniques]]></category>

		<category><![CDATA[IDG]]></category>

		<category><![CDATA[Outdoors]]></category>

		<guid isPermaLink="false">http://ingmanndesign.com/2008/01/30/fireflies-particles-geek-references-and-more/</guid>
		<description><![CDATA[&#8220;Ten percent of nuthin&#8217; is&#8230;let me do the math here&#8230;nuthin&#8217; into nuthin&#8217;&#8230;carry the nuthin&#8217;&#8230;&#8221;&#160;-Jayne
OK, lame to quote it but if you read my blog you know I&#8217;m a sci-fi geek (I refuse to say fanboy about myself though others have used the word pointedly and often.) so I had to get a quote from the [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;Ten percent of nuthin&#8217; is&#8230;let me do the math here&#8230;nuthin&#8217; into nuthin&#8217;&#8230;carry the nuthin&#8217;&#8230;&#8221;&nbsp;-Jayne</p>
<p class="first"><span class="drop-cap">O</span>K, lame to quote it but if you read my blog you know I&#8217;m a sci-fi geek (I refuse to say fanboy about myself though others have used the word pointedly and often.) so I had to get a quote from the show. This is the first time I&#8217;ve gone through step by step to show you how to modify a script from the lslwiki to get the result you want. And to be completely honest, it&#8217;s a ton of experimentation. If you enjoy it you&#8217;ll spend hours at it, if you hate it, you&#8217;ll never touch it again, but knowing the concepts will help you understand part of the way <a href="http://secondlife.com/?u=eab4533a41eb8f284a081df810818618">SecondLife </a>makes things interactive. Scripting is also one of the most lucrative jobs you can have in <a href="http://secondlife.com/?u=eab4533a41eb8f284a081df810818618">SecondLife</a>. People charge alot more for it then generally any other&nbsp;profession.</p>
<p>The script in it&#8217;s entirety can be found <a href="http://www.lslwiki.net/lslwiki/wakka.php?wakka=ExampleParticleScript1">here</a>. However you don&#8217;t need to see the whole thing to see the part to mess with to create your own versions of fireflys and bling and little blinking annoying come here and see effects. The important part of the script to modify is right at the&nbsp;top.</p>
<p>There are several factors that let you turn those boring explosive things that come out of this script into fireflies. Let&#8217;s start at the&nbsp;top&#8230;.</p>
<p>Anything that has a // in front of it in an LSL script is a comment, it does nothing in the script itself and <a href="http://secondlife.com/?u=eab4533a41eb8f284a081df810818618">Secondlife </a>compilers ignore it. But it tells you alot about what the line before it does if the scripter is kind and&nbsp;generous.</p>
<p>The first section is all about how the particles are going to behave in general. A 1 means that it will do something and a 0 means it wont. So the first thing to change in the script as it&#8217;s written is that we want our fireflies to not change size. So we&#8217;re going to set the integer interpSize to zero so that the code won&#8217;t do that. We can also decide if we don&#8217;t want them to pay attention to wind. After all they are motorized aren&#8217;t they, who cares about&nbsp;wind?</p>
<p>The next part that makes your particles really unique is lower down under particle&nbsp;parameters.</p>
<p>Float age is the life your particle will have in seconds. Fireflies don&#8217;t live a long time so I have this set to 3 seconds. The problem with saying lots of time is that particles are constantly moving, so it&#8217;s hard to have long lived particles, and it increases lag. You&#8217;ll find one of the ways to make your particles move farther is to increase their life. You will have to do that stuff I talked about up top and&nbsp;experiment.</p>
<p>The other really valuable part here, for beginning particle effects is the startColor and endColor. I like my fireflys whitish yellow and as they die fading a bit more golden. So you have to figure out what color you want, find the RGB value of it and put it in, then tweak it as you see what happens. So now you&#8217;re asking how to find the RGB value of a color. That&#8217;s a good question. The easiest way I&#8217;ve found to figure out RGB is to use another script, this one requires no modification at all. You build a box, put the script in, then change the color of the box to what you want and the box will tell you what the RGB value is, it uses the building tools in SecondLife, it&#8217;s free and it works, all things I love. You can get that&nbsp;<a href="http://www.lslwiki.net/lslwiki/wakka.php?wakka=LibraryColorScripts">here</a>.</p>
<p>So once you&#8217;ve done all that, you test it&#8230;. and test it&#8230; and test&nbsp;it.</p>
<p>Eventually you&#8217;ll come up with a close approximation of Mal&#8217;s ship.&nbsp;Wait&#8230;..</p>
<p>Scripting is a headache because of this thing. It&#8217;s why if you know someone who loves it you should be very very nice to them. I know this dosen&#8217;t read that well without code examples and I&#8217;m going to get blasted from the technical side for not being technical enough and the un-technical side saying &#8220;Huh?&#8221; But the real point of this article is the progression of people and how they got to be where they are, this is how I did it. I encourage you to find your own road&#8230;.<span style="font-family:courier new;font-size:85%;"><br /></span><span style="font-family:courier new;font-size:85%;">
</p>
<p></p>
<p></span>
<div class="blogger-post-footer"><script type="text/javascript"><!--
google_ad_client = "pub-2859607948475196";
/* 468x60, created 6/23/08 */
google_ad_slot = "2800512089";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
]]></content:encoded>
			<wfw:commentRss>http://ingmanndesign.com/2008/01/30/fireflies-particles-geek-references-and-more/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tinker Belle was not named Tinkerbell!</title>
		<link>http://ingmanndesign.com/2008/01/08/tinker-belle-was-not-named-tinkerbell/</link>
		<comments>http://ingmanndesign.com/2008/01/08/tinker-belle-was-not-named-tinkerbell/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 01:24:00 +0000</pubDate>
		<dc:creator>Noel</dc:creator>
		
		<category><![CDATA[Building Techniques]]></category>

		<category><![CDATA[IDG]]></category>

		<category><![CDATA[Outdoors]]></category>

		<category><![CDATA[Products]]></category>

		<guid isPermaLink="false">http://ingmanndesign.com/2008/01/08/tinker-belle-was-not-named-tinkerbell/</guid>
		<description><![CDATA[ Brochure: This lovely waterfall has become a gathering place for the pixies and the fireflies, the particles have to be seen to be believed. The water is brand new custom made sculpty prims so it actually ripples down the rocks. Buy it&#160;now.
Story: OK, so SecondLife came out with a new feature called sculpted prims [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://1.bp.blogspot.com/_qNR81O0cjwY/R4LVDdx7zPI/AAAAAAAABAg/MWymTL_sX5I/s1600-h/fireflyfalls1.jpg"><img id="BLOGGER_PHOTO_ID_5152915179175660786" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://1.bp.blogspot.com/_qNR81O0cjwY/R4LVDdx7zPI/AAAAAAAABAg/MWymTL_sX5I/s400/fireflyfalls1.jpg" border="0" /></a> Brochure: This lovely waterfall has become a gathering place for the pixies and the fireflies, the particles have to be seen to be believed. The water is brand new custom made sculpty prims so it actually ripples down the rocks. Buy it&nbsp;now.</p>
<p class="first"><span class="drop-cap">S</span>tory: OK, so <a href="http://www.secondlife.com/?u=eab4533a41eb8f284a081df810818618">SecondLife</a> came out with a new feature called <a href="http://wiki.secondlife.com/wiki/Sculpted_Prims">sculpted prims</a> around this time. I was extremely curious about these things as the detail capable in them was something that seemed really amazing. So I set out to mess with them. I started by buying a bunch of sculpt maps on <a href="http://www.slexchange.com/modules.php?name=Marketplace&amp;MerchantID=34416&amp;affiliate=cda6052fd33ac65ee14186aed88c82">SLX </a>and seeing what people were coming up with. The thing with sculpted prims is that the actual 3d shape is a sphere. But the appearence to people looking at it is determined by a gradient texture map inherent in how you build the prim. So I started looking for ways to design my own sculpted&nbsp;prims.</p>
<p>The programs I used ranged from Blender to Maya to Wings3d, there are serious people who love all of these but for what I wanted to do I found many of them to be too full featured. The idea behind sculpties is that you first build the 3d shape you want the sphere to appear as in a 3d modeling program outside of <a href="http://www.secondlife.com/?u=eab4533a41eb8f284a081df810818618">SecondLife</a> that then spits out the map so you can use it inside. I ended up finding the programs I wanted in <a href="http://www.kanae.net/secondlife/rokuro.html">Rokuro </a>&amp; <a href="http://www.kanae.net/secondlife/tokoroten.html">Tokoroten</a>. These are free programs that work kind of like the old playdough tools we used to have as kids. The one I used to design the falls was Tokoroten, I made a wavy map that had the backside flat, so it looked like the waves actualy rippled over rough surfaces underneath. From there it was a matter of animating the texture of water so it flowed &#8216;down&#8217; the texture. Then I added rocks with my custom firefly particle texture. Again this is just the free particle script from the <a href="http://wiki.secondlife.com/wiki/LSL_Portal">lsl wiki </a>tweaked to what I&nbsp;want.</p>
<p>I really love this bit of landscape and the model is a dear friend named Arhiya that often runs around as a pixie. By the way, if you want to know about the title, this <a href="http://www.ultimatedisney.com/margaretkerry-interview.html">link </a>will show you, but the applicable quote is, &#8220;Remember that Tinker Bell is magic. And when you say she mends the pots and pans&thinsp;&#8212;&thinsp;that&#8217;s why her name is Tinker&thinsp;&#8212;&thinsp;she does it with pixie&nbsp;dust!&#8221;</p>
<p>I think we should all take a lesson from that, &#8220;DO IT WITH PIXIE&nbsp;DUST!&#8221;</p>
<p>I&#8217;m off to find a pixie, next time I&#8217;ll go through the particle script and show you how I changed it.
<div class="blogger-post-footer"><script type="text/javascript"><!--
google_ad_client = "pub-2859607948475196";
/* 468x60, created 6/23/08 */
google_ad_slot = "2800512089";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
]]></content:encoded>
			<wfw:commentRss>http://ingmanndesign.com/2008/01/08/tinker-belle-was-not-named-tinkerbell/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
