Fallout Like Game [WIP]

im making a Fallout like game with unity free this is just a little demo how the map will look a bit :}
hope you like maybe any ideas?

Download: http://www.mediafire.com/?0pb3nnyqyeg0cun Yeah i know its called lol.rar
I dunno how to make a link for dropbox. so that will be later ;[

Put some video or pictures !
Why should we download something ?!!
It’s showcase thread :slight_smile: , so show somehting !

Not a bad start mate, you need to work on your uvmaping, the tiling and location of a lot of the textures don’t line up correctly or are distorted, there also seems to be a mesh error in the block above the inner door, looks like its too wide on one side. The terrain its self could do with some more intracut details in its geometry, a terrain won’t really render any fast smoother as its still the same amount of polys being used so go nuts with the design, take your time though and get some interesting features in there.
Decrease the size of the texture tiles on the terrain, and add another 1 or 2 that are dark for comparison and interest.
Some distance fog would look cool, as your level looks sandy, a dull orange/brown to mimic a light sandstorm would work pretty good.

For the controller, its probably just for testing but do these things to it:
Go to File/Preferences/Input - Expand Mouse Y and X and set the value that says 0.1 to 0.01 ← this i think increase the mouse DPI by 10 fold
Next everything will feel slow so go to sensitivity in your FPS controllers variables and increase it to about 75 might need a lot more or less, but get a nice feel. With an FPS one clean stroke from center to just under full right on your mouse comfortably should turn the player 180. This gives that feeling of restriction, as if your head and body were moving at different rates, makes for smoother game play.
Decrease the back and side speeds by 1-2 units, this should help again with the realistic restrictive movement, moving forward should always be fastest.
Add a flashlight, its pretty easy you make a simple key down light on/off script attach it to a spotlight and attach said spotlight to the main camera pointing in the same position, hit the key light goes on/off and follows the center of the main camera.

Good Luck mate

Thankyou for this help!!
Btw, its my first try to make a game so thankyou for that help

MrSmile you said at one point ‘‘Go to File/Preferences/Input’’ i cant find it? i think it is not in the unity3d free

I got the Flashlight working only thing to do is putton a button for it ;]

put some gameplay, you or someone so we know what were downloading.

it is like nothing right now so i didnt need to make a Video or screenshot but when ive made more ill put up something

its in the main file menu were you save/load and stuff right at the bottom, when you click it it opens in the right side menu. Its in the free version too mate.

Maybe you should wait a while to post your game?

ok ive found it mrsmive,
but i cant find out how to add a new button or to turn the flashlight on/off
im not experienced with scripts before

yea me neither would have told you the script but its probably something like this

privet var float intencity = 0

function Update(){
if KeyDown(“F”){
intencity = 50;
}
if (KeyDown(“F”) intencity == 50){
intencity = 0;
}
else return;
}

But that will probably give you a crap load of errors because i suck at programing but i am pretty sure its something like that, im sure someone can correct this mess of a script for you.

ok ill try it out
and yeah it gave a bit of errors but still thanks for trying :]
ive got the flashlight on me and it will follow the player only thing is a button for it

Some screenshots needs alot of work still :]

Starting house: ImageShack - Best place for all of your image hosting and image sharing needs [Needs a roof and some details , it will be like a hotel thing]

Some landscape: ImageShack - Best place for all of your image hosting and image sharing needs [Needs some tree’s stuff it is ment to be a dried out river thing]

I would like to help you on game…I sent u a pm

Superdave ive send you a message back :}

I’ve downloaded your game and spent a few moments with it. Lots of work to do in front of you, especially with texturing. I’ll follow your updates, Fallout sounds good :wink: Good luck!

its looking better mate, tilling still needs some work.

ive got some help now by SuperDave :] so it will go some faster

for the flash light you want something like this:

function Update () {
     if(Input.GetKeyDown("f")){
          light.enabled = !light.enabled;
     }
}

attach this script to your light object :slight_smile:

EDIT:

you also should post a webplayer in the package you posted… because I have a mac and it was a PC build… A webplayer will work on both mac and PC.

3dDude Thankyou it worked!