Thane Onizuka
Junior Member
Join date: 14 May 2004
Posts: 2
|
05-20-2004 00:25
MANY graphical glitches on my Radeon 9800 Pro. At sunrise, sunset, and nighttime, the game looked AWFUL. http://md.pyoko.org/thebeach.jpgThe circle in the center is to be expected, that's my avatar's clothing. The... reflection... thing... is... The ocean trying to be reflective. I guess. You can see a small strip of land. Walking inside buildings missing random textures is absolutely surreal. And object creation. There's no option to boolean two primitives in any way. Wouldn't that cut down on the overall poly count? The semi-modifiable land is annoying as well. Is it already allowed to be modified to the extent of its height map? It seems as if there's the server's knowledge of the original height map, and that cannot be deviated from too much, which impeded my friends attempts to build on their land. The readily available documentation on the scripting language was also inadequate. I couldn't understand how to make llListen work correctly. Additionally, the units used in several places (at least in llparticlesystem) needs to be better explained. --Fearing I sound like a 9th grader.
|
Christopher Omega
Oxymoron
Join date: 28 Mar 2003
Posts: 1,828
|
Re: Some complaints
05-20-2004 05:20
From: someone Originally posted by Thane Onizuka The readily available documentation on the scripting language was also inadequate. I couldn't understand how to make llListen work correctly. Additionally, the units used in several places (at least in llparticlesystem) needs to be better explained. The entire scripting community feels the same way (probobly). Catherine Omega and the Nexcorp/Tyrell Group set up a wiki (user-created/user-maintained documentation) on their webpage, http://www.badgeometry.com/It totally rocks IMHO  If you can't find the info your looking for there, just post a question to the Scripts & Scripting forum, people (including me  ) would be happy to help yah out. ==Chris
|
Christopher Omega
Oxymoron
Join date: 28 Mar 2003
Posts: 1,828
|
Re: Some complaints
05-20-2004 05:20
Yikes, double post, my browser lagged 
|
eltee Statosky
Luskie
Join date: 23 Sep 2003
Posts: 1,258
|
Re: Some complaints
05-20-2004 11:04
From: someone Originally posted by Thane Onizuka MANY graphical glitches on my Radeon 9800 Pro. At sunrise, sunset, and nighttime, the game looked AWFUL. http://md.pyoko.org/thebeach.jpg
turn off the moving water shader (i forget the exact name) its quasi broken and doesn't 'dissapear' into the horizon properly, causing that really weird effect
_____________________
wash, rinse, repeat
|
Catherine Omega
Geometry Ninja
Join date: 10 Jan 2003
Posts: 2,053
|
Re: Some complaints
05-20-2004 12:06
From: someone Originally posted by Thane Onizuka MANY graphical glitches on my Radeon 9800 Pro. At sunrise, sunset, and nighttime, the game looked AWFUL. http://md.pyoko.org/thebeach.jpg
I assume you're running the latest drivers, correct? The most recent ones apparently fixed several problems with your card and SL. From: someone And object creation. There's no option to boolean two primitives in any way. Wouldn't that cut down on the overall poly count? SL's "primitives" really aren't. They're actually parametric models. Rather than being defined as six vertices, a box in SL is defined by listing the position, rotation and dimensions, then deforming it. Yes, it means that SL is rendering more polygons than it really needs to be, but it reduces the amount of data needed to represent the objects. It's a tradeoff between framerate and bandwidth. There are obviously far more tricks that could be done to further conserve bandwidth and decrease polycount -- client-side vertex merging, instancing of linked objects, (why download the data to describe 100 prims when you can download the data to describe 10 of them and then just repeat it 10 times?) and so on. The semi-modifiable land is annoying as well. Is it already allowed to be modified to the extent of its height map? It seems as if there's the server's knowledge of the original height map, and that cannot be deviated from too much, which impeded my friends attempts to build on their land. From: someone The readily available documentation on the scripting language was also inadequate. I couldn't understand how to make llListen work correctly. Additionally, the units used in several places (at least in llparticlesystem) needs to be better explained. Here you go.
|