Gamestudio Links
Zorro Links
Newest Posts
Data from CSV not parsed correctly
by EternallyCurious. 04/18/24 10:45
StartWeek not working as it should
by Zheka. 04/18/24 10:11
folder management functions
by VoroneTZ. 04/17/24 06:52
lookback setting performance issue
by 7th_zorro. 04/16/24 03:08
zorro 64bit command line support
by 7th_zorro. 04/15/24 09:36
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:48
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:46
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (1 invisible), 672 guests, and 0 spiders.
Key: Admin, Global Mod, Mod
Newest Members
EternallyCurious, howardR, 11honza11, ccorrea, sakolin
19047 Registered Users
Previous Thread
Next Thread
Print Thread
Rating: 5
Page 72 of 554 1 2 70 71 72 73 74 553 554
Re: What are you working on? [Re: painkiller] #389781
12/18/11 16:19
12/18/11 16:19
Joined: Aug 2002
Posts: 2,183
Germany, BaW�
Rondidon Offline
Expert
Rondidon  Offline
Expert

Joined: Aug 2002
Posts: 2,183
Germany, BaW�
Quote:
nice!, what parameters did you use? I never could get PSSM shadows look that good


Setting up great PSSM shadows isn`t that hard from my experience. laugh
You have to make sure that the scale of the level is right and the "camera.clip_far" variable is as small as possible. Scaling your level too large or too small is both bad for the performance and the result. And there might be problems when it comes to astronomical scalings like 1cm = 1 quant in huge levels. (Referring to Slin who experienced that in "Project ship"). Finding the right parameters is important.

For my level it is:

Code:
camera.clip_far = 15000;

var pssm_res = 2048;			// shadow map resolution
var pssm_numsplits = 3;		// number of splits: 3 for small, 4 for large levels
var pssm_splitweight = 0.9; 	// logarithmic / uniform ratio
var pssm_splitdist[5];				// split distances
var pssm_transparency = 0.4;	// shadow transparency
float pssm_fbias = 0.00030;		// shadow depth bias -> must be adjusted


pssm_run(3); //Compromise between quality and speed
//OR
pssm_run(4); //Quality



It still can be improved by setting pssm_res to 4096, but 2048 works good for me.
Especially pssm_fbias and splitweight are important for good looking results.

Re: What are you working on? [Re: Rondidon] #389787
12/18/11 16:52
12/18/11 16:52
Joined: May 2006
Posts: 148
Latvia
MTD Offline
Member
MTD  Offline
Member

Joined: May 2006
Posts: 148
Latvia
I think i will need some shadows some day - This can come handy.

Got some free time and made a public version.
Maybe somebody can give me a hint how to make tire skid marks confused
Right now drawing pixels in bitmap - but this looks a bit wrong

First Alpha 0.001 version available to download:
http://www.matudagames.com/CrashHour/

!! Download location includes Game & Visual C++ runtime (if You get error of missing dll) !!!

Re: What are you working on? [Re: MTD] #389867
12/19/11 07:31
12/19/11 07:31
Joined: Aug 2002
Posts: 2,183
Germany, BaW�
Rondidon Offline
Expert
Rondidon  Offline
Expert

Joined: Aug 2002
Posts: 2,183
Germany, BaW�
More of the same. laugh
Getting somewhere with the lighting, but I`m not satisfied at all with the overall model quality (more details, street textures) and the terrain yet. Also, the water is still ultra ugly. I`m working on it.




Runs still at 45FPS on my Geforce 8800GT.

Re: What are you working on? [Re: Rondidon] #389870
12/19/11 08:10
12/19/11 08:10
Joined: Mar 2006
Posts: 1,993
Karlsruhe
PadMalcom Offline
Serious User
PadMalcom  Offline
Serious User

Joined: Mar 2006
Posts: 1,993
Karlsruhe
It is getting better, lacks of details, but gets better wink

Re: What are you working on? [Re: PadMalcom] #389879
12/19/11 11:53
12/19/11 11:53
Joined: Oct 2006
Posts: 873
S
Shadow969 Offline
User
Shadow969  Offline
User
S

Joined: Oct 2006
Posts: 873
whoa, now it's beginning to have an atomosphere! nice work
btw some height variation is essential for the treeline

Re: What are you working on? [Re: Shadow969] #389880
12/19/11 12:01
12/19/11 12:01
Joined: Mar 2008
Posts: 2,247
Baden Württemberg, Germany
Espér Offline
Expert
Espér  Offline
Expert

Joined: Mar 2008
Posts: 2,247
Baden Württemberg, Germany


Selling my Acknex Engine Editions (A7 Com & A8 Pro):
>> click here if you are interested <<
Re: What are you working on? [Re: Shadow969] #389881
12/19/11 12:57
12/19/11 12:57
Joined: Apr 2007
Posts: 3,751
Canada
WretchedSid Offline
Expert
WretchedSid  Offline
Expert

Joined: Apr 2007
Posts: 3,751
Canada
Originally Posted By: Shadow969
whoa, now it's beginning to have an atomosphere! nice work
btw some height variation is essential for the treeline

Agreed. The background also looks a bit empty, but I guess thats subject to change?


Shitlord by trade and passion. Graphics programmer at Laminar Research.
I write blog posts at feresignum.com
Re: What are you working on? [Re: WretchedSid] #389932
12/19/11 21:59
12/19/11 21:59
Joined: Apr 2008
Posts: 2,488
ratchet Offline OP
Expert
ratchet  Offline OP
Expert

Joined: Apr 2008
Posts: 2,488
@Rondidon :
Now it looks like a real village part.
For water youy should add some fresnel movement ? world reflection is not necessary ,even the shade can make it look great already :


@Esper:
For the wheel, it looks very granny in the texture, like too much noise ? And there are too much baked shadows radially, instead it should be a shadow along the circle path of the Wheel perhaps ?


Perhéaps it's not baked shadow but texture variation, you should change it cau it makes loosing the circle aspect and lighetning of the wheell laugh





Last edited by ratchet; 12/19/11 22:08.
Re: What are you working on? [Re: ratchet] #390125
12/22/11 22:46
12/22/11 22:46
Joined: Feb 2010
Posts: 482
in deinem Kopf
Otter Offline
Senior Member
Otter  Offline
Senior Member

Joined: Feb 2010
Posts: 482
in deinem Kopf
@Rondi :3
Wow, This village is just beautiful!
But I don't like this water- and sky shader.
The sky is on the horizon to bright and the water looks like a blurry mirror.
By the way: the grass is realy wunderschön! laugh

@Espér:
Bring all faces in the same direction and it looks better.
a bit .... smirk


The next enemy in the game, a dino-bird-thing! tongue
This is the first try.


Und für alle die glauben das ich dem Gamestudio forum verloren gegangen bin:
Nö, bin ich nicht! Sonst hät' ich mir die post hier gespart ... ô.ò logisch ne?
Ich hab nur viel um die ohren und will nicht frühzeitig das projekt enthüllen.

mfg
OTTER

Last edited by Otter; 12/22/11 22:47.

Be my UBB-Buddy, without any reason!
Re: What are you working on? [Re: Otter] #390126
12/22/11 23:21
12/22/11 23:21
Joined: Jul 2001
Posts: 4,801
netherlands
Realspawn Offline

Expert
Realspawn  Offline

Expert

Joined: Jul 2001
Posts: 4,801
netherlands
Otter your works amaze me laugh


Find all my tutorials & Workshops at : www.rp-interactive.nl

Creativity starts in the brain
Page 72 of 554 1 2 70 71 72 73 74 553 554

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1