3D Modelling, Post your 3D models! (Cars, Planes, People, Landscapes etc!)

Lamborghini meets Minecraft meets Picasso meets the Game of Thrones intro animation. I'm experimenting with some ways of building landscapes, I like this blocky style :)

landscape copy2.jpg
 
Perhaps the face is simply too big to be represented accurately? I know that binary representation of decimal numbers is a bit like a shooting range, where the decimal number is the target and the binary representation is the rifle. Usually it doesn't hit right in the center of the target, but it's usually close enough for most purposes.

Since splitting it into triangles solved it, you could perhaps use the triangulate modifier on the entire mesh, that way you won't have to split them all by hand.

I think you're right. I scaled down the ground plane and the shadow went away. The triangulate modifier works as well so I guess I have a couple of options for when I start rendering.

Thank you very much for your input!
 
Nothing much really . I only just got all the ai etc running with side cameras and racing line. Just showing off progress
 
I used the particle system to add some rocks to my scene. There's also a basic rock/grass material applied to the landscape. Behind the wall there's a subtle hint of an ocean in making.

landscaperocksc.png
 
I used the particle system to add some rocks to my scene. There's also a basic rock/grass material applied to the landscape. Behind the wall there's a subtle hint of an ocean in making.

View attachment 355757

Sweet with some colour it looks totally different, could totally be part of a n64 game .


EDIT: Dodgy motorcycle support
 
Last edited:
Okay, so, I've been busy with work and have made very little progress with learning blender, however, I'm still impressed by its potential so I'm persevering with by retro-speedster-lmp model as a learning opportunity.

The wheel covers look awful, I accidentally got carried away with some loop cuts and I ended up with a mesh to complex to make sense of, so I'll redo them. they were created by starting of with a cube and beating into shape... I don't think that worked too well.. anyway... I've started with the engine cover by coming up with a cross section and then extruding it back, modifying a bit each time, which has worked nicely.

I have two questions for the blender experts here <cough> @eran0004 </cough>... sorry to ask, but soooo many blender tutorials are just people showing off what they can do, without explaining it...

1) The Engine cover is one mesh, with a mirror modifier at the moment to make the other half. I like the shape, but I want to cut it in to a few pieces (the central airbox area, the top bodywork either side, the underside will be a single tray, and I want to make a separate area around where the exhausts will exit).. what's the technique for doing so? I tried using Knife on the mesh, but could get it to actually do anything?

2) this ones an easy one... what are the shortcut keys for switching between vertex select, edge select and face select... if I look at once more list of shortcuts my face will melt.

1.png
VGT.blend.png
 
I did in last video mate I just removed it for the video this time as I was just trying to concentrate on the ai. I get destracted by the graphics tweaking too much.

To many settings to fiddle with he he . Wouldn't know how to animate a driver would you @Peasantslayer ?
 
Okay, so, I've been busy with work and have made very little progress with learning blender, however, I'm still impressed by its potential so I'm persevering with by retro-speedster-lmp model as a learning opportunity.

The wheel covers look awful, I accidentally got carried away with some loop cuts and I ended up with a mesh to complex to make sense of, so I'll redo them. they were created by starting of with a cube and beating into shape... I don't think that worked too well.. anyway... I've started with the engine cover by coming up with a cross section and then extruding it back, modifying a bit each time, which has worked nicely.

I have two questions for the blender experts here <cough> @eran0004 </cough>... sorry to ask, but soooo many blender tutorials are just people showing off what they can do, without explaining it...

1) The Engine cover is one mesh, with a mirror modifier at the moment to make the other half. I like the shape, but I want to cut it in to a few pieces (the central airbox area, the top bodywork either side, the underside will be a single tray, and I want to make a separate area around where the exhausts will exit).. what's the technique for doing so? I tried using Knife on the mesh, but could get it to actually do anything?

2) this ones an easy one... what are the shortcut keys for switching between vertex select, edge select and face select... if I look at once more list of shortcuts my face will melt.

View attachment 357202 View attachment 357203

There are two methods of cutting a mesh:

A. Create two loopcuts where you want the cut to be (one on each side). Delete the edge in between them.

B. For more advanced cuts, you can create a new object and shape it by how you want the cut to be (i.e. if you want to make a hole shaped like a cylinder you model a cylinder). You can think of it like modelling the knife. Then select the object you want to cut and give it a boolean modifier with the "knife" object.

As for the shortcut key, I have no idea :P I usually work in vertex select mode, and when I want to select something else I just click on the button.
 
I did in last video mate I just removed it for the video this time as I was just trying to concentrate on the ai. I get destracted by the graphics tweaking too much.

To many settings to fiddle with he he . Wouldn't know how to animate a driver would you @Peasantslayer ?
Well I know how to rig, skin and animate a character in 3ds max but I don't know about getting a character into a game engine and making the engine interpolate between animations properly.
 
Well I know how to rig, skin and animate a character in 3ds max but I don't know about getting a character into a game engine and making the engine interpolate between animations properly.

Ok mate , I was able to get a charecter from make human to work with the default charecter animations but no idea atm how to get them to open a door and grab wheel etc change gear .. I been looking into motion capture with kinetic but without knowing how to switch between animation states I am stuffed. o well what's another subject to research. :lol: if I could get away with no drivers I would
 
To many settings to fiddle with he he . Wouldn't know how to animate a driver would you @Peasantslayer ?

For the actual driving you'll need to animate each arm individually. So you have one set of animations for the left arm and another set of animations for the right arm. That way you can still have one hand on the steering wheel while you're changing gears, or pulling the handbrake or holding that cup of coffee :)

As for gear changes, here's an interesting dilemma: Do you want to make the animation play after the gear shift is complete, or do you want to hold the gear shift until the animation is complete? The former gives less input lag for the player, but the latter looks more realistic.

As for the animation states, I only know how Blender works but it should be a similar approach. In pseudo code:

Steering arm: Always play steering_animation.
Shifting arm: If other_action(type): play other_animation(type), else: play steering_animation.

Where (type) could be shifting, handbrake, honking the horn, holding that cup of coffee, texting while driving, performing road rage sign language and whatever you want it to do.

The steering animation doesn't play back at the speed you recorded it, instead you want its timeline to be controlled by the amount of steering that is done. So if you have recorded an animation showing the full rotation from left to right, you'd be playing the first frame when the player turns max to the left, and the last frame when the player turns max to the right, and just interpolate the values for anything in between.
 
For the actual driving you'll need to animate each arm individually. So you have one set of animations for the left arm and another set of animations for the right arm. That way you can still have one hand on the steering wheel while you're changing gears, or pulling the handbrake or holding that cup of coffee :)

As for gear changes, here's an interesting dilemma: Do you want to make the animation play after the gear shift is complete, or do you want to hold the gear shift until the animation is complete? The former gives less input lag for the player, but the latter looks more realistic.

As for the animation states, I only know how Blender works but it should be a similar approach. In pseudo code:

Steering arm: Always play steering_animation.
Shifting arm: If other_action(type): play other_animation(type), else: play steering_animation.

Where (type) could be shifting, handbrake, honking the horn, holding that cup of coffee, texting while driving, performing road rage sign language and whatever you want it to do.

The steering animation doesn't play back at the speed you recorded it, instead you want its timeline to be controlled by the amount of steering that is done. So if you have recorded an animation showing the full rotation from left to right, you'd be playing the first frame when the player turns max to the left, and the last frame when the player turns max to the right, and just interpolate the values for anything in between.


Ok most of that makes sense gear change can be change time wise in script with gear change delay to match the animations.

only thing I just thought about is. would i have to do this for everycar as gear stick /paddles and wheels won't be in the same place for every car :(

I suppose that's why gta5 don't have driver animations as well, also rfactor didn't have it either. would it be such a crime to put a static guy in there? Bit cheap I suppose
 
When you do something like this you start to realise why game developers hire so many people.

Yeah probably why most indie games are 2nd or shooters thease days I think there's no way around It now I need help .. I can animate in 2d quite well but in a 3d work space it's totally different. I will be totally honest last time I made any game to completion was a beats or rage mod for the dreamcast. I was 16 and had a Imac 500 mhz machine I just wished I kept at it now instead of becoming a mechanic. Well it's engine related :)
 
Ok most of that makes sense gear change can be change time wise in script with gear change delay to match the animations.

only thing I just thought about is. would i have to do this for everycar as gear stick /paddles and wheels won't be in the same place for every car :(

I suppose that's why gta5 don't have driver animations as well, also rfactor didn't have it either. would it be such a crime to put a static guy in there? Bit cheap I suppose

You'd do one animation for a generic car, and then just copy-paste it for every car and tweak the animations so that they match the specific car. It will be faster than animating everything from scratch for every car.

How accurate you want the animations to be is up to you :) Some driving games have a very simply shift animation where the driver simply takes the hand off the wheel and waves a little with it out of view. If you can't see the hand there's no point of making sure it's exactly where the shifter is. If you do that, the only thing you'd really need to adjust for every car is to make sure that the driver has the hands on the wheel.
 
You'd do one animation for a generic car, and then just copy-paste it for every car and tweak the animations so that they match the specific car. It will be faster than animating everything from scratch for every car.

How accurate you want the animations to be is up to you :) Some driving games have a very simply shift animation where the driver simply takes the hand off the wheel and waves a little with it out of view. If you can't see the hand there's no point of making sure it's exactly where the shifter is. If you do that, the only thing you'd really need to adjust for every car is to make sure that the driver has the hands on the wheel.

Well that all makes sense, I still have to do multiple drivers I assume for Lhd Rhd & formula cars . But even a handful is better than a different one for every car. O and there is the motorcycle's ... quote for the day

"Bit of more than I can chew"

Do any of you boys want to try this build?
 
Well that all makes sense, I still have to do multiple drivers I assume for Lhd Rhd & formula cars . But even a handful is better than a different one for every car. O and there is the motorcycle's ... quote for the day

"Bit of more than I can chew"

Do any of you boys want to try this build?

You might want to kill a few darlings :) Why don't you start with one or two cars and then you can expand it later on?

I'm up for trying it. Do you have a download link?
 
You might want to kill a few darlings :) Why don't you start with one or two cars and then you can expand it later on?


I'm up for trying it. Do you have a download link?

Only got 5 cars atm

I haven't got a link atm I will do ASAP. just had the architect here took longer than I thought, just booting up the pc now have to make a few changes to enable the player control. I will add some place holder sounds also. Won't be long

EDIT: FAMOUS last words wont be long my cpu very unstable today fighting multiple crashes. fingers crossed
 
Last edited:
Hi guys, I'm looking for some help here hoping that one of you can convert a simple pixel based 'drawing' in to a vector drawing I can load in to Paintshop CS5.
IF so I'll be happy to upload the pic.
 
Back