![]() |
Blender - 3D Game maker
I know this forum is RPGM2K3, but as far as I can work out, there aren't any other forums to post about game engines etc...
Well, I was a surfing RPGwolfpack and came across this... http://www.rpgwolfpack.com/download/engines/blender.php And since quite a few people seem to want to make 3D games, I thought they'd like to know about it. I haven't tried it out so... Enjoy all you 3D Game Makers... |
Looks like a good maker, but definately a step up from RM2k3......I don't think I'm ready for it :p
|
If someone does want ot download it, here are the links:
http://download.blender.org/release/...36-windows.exe - EU ftp://ftp.cs.umn.edu/pub/blender.org...36-windows.exe - USA http://planetmirror.com/pub/blender/...36-windows.exe - Australia In all cases it is a 4.5mb donwload. ---------- The blender site is www.blender.org The blender3d site is www.blender3d.org ---------- EIDT: The above download links seem to be just for the installer...the zipfile is needed as well...the links for the zipfiles are: http://download.blender.org/release/...36-windows.zip - EU ftp://ftp.cs.umn.edu/pub/blender.org...36-windows.zip - USA http://planetmirror.com/pub/blender/...36-windows.zip - Australia This brings the total download size to just over 9mb. ---------- WAHEY! I've downloaded it, and it works. Here's something I haven'st seen for a LONG time. It uses an MSDOS script to get it started! ---------- I can't for the life of me work out how to use this program... |
Ack, it uses Python. Now I regret not getting around to learning it..
Oh well, I'll have to give it a try. Looks like it requires a bit of an artistic touch, guess my first game will involve cubes of some sort because that's pretty much all I can make in 3-D. |
If you don't mind me sounding like a complete idiot...what's Python???
I'm a guessing its another programming language of sorts...but of which sort??? |
Indeed it is another programming language. From what I know, the syntax is like a mix of BASIC and C, though admittedly I know very little of it.
|
Well...looks like we're all gonna have fun with it then...:p...
Any helpful little things about Python? You know more about than I do...I haven't the faintest idea how to start using it... |
Hmm, time to dl here at school and take home.
I hope it is some what user friendly. |
Welcome to Zelaron.
That really does depend how you define 'user friendly'. |
What I mean by "user friendly", just to clear things up, is that how easy it is to use, like RPG Maker 2K3. It's simple, but complex all at the same time. That's what I mean...although it looks very compex, I am gonna try it out.
|
It's extremely complex...I was trying for 3 hours yesterday and I got absolutely nowhere with it...
|
Well, I'll assume you downloaded Python already, so just fire up a text editor of some sort. Notepad works, though something that has syntax highlighting is preferred, such as Crimson Editor. Python comes with its own editor, but quite frankly it's not very good.
Anyway, the hardest thing I had to learn (coming from C++ and the like) is that indentation matters. So doing this: Code:
x = 5 Python scripts can be run either by command line ("C:\wherever\> python c:\what\test.py") or by double-clicking on them in Windows (assuming you let Python have the file extension .py). I like the double-click method because I'm lazy. ...Of course, I haven't played with Blender itself much, mainly because I have no artistic abilities whatsoever. I am able to make a cube at least though. Maybe I'll make a game where you get to watch a cube fall through blank space, because that's the limits of my abilities at this point. |
So if you press "5" it shows "yams" on the screen?
And if you press something else it shows "what?" on the screeN? |
In my case, it'll always print 'yams (newline) yams" because x is set to 5 before it checks through the loop. That's just a quick way to show the if structure of Python. If you wanted to do something with input, it'd be like this:
Code:
x = int(raw_input("PRESS FIVE FOR YAMS: ")) x = int(raw_input("PRESS FIVE FOR YAMS: ")) raw_input is a function that returns a value that the user inputs (unless you tell Python to get its input from a file and not a user. I'm not good enough for that yet). So that function gets done first, since the innermost parentheses is part of the function. The argument "PRESS FIVE FOR YAMS" is the prompt. So if you input a 5, this is what's done so far: x = int("5") Int is the function that returns the value that's put into it, in integer form. Obviously, that goes to: x = 5 So from there, we do the next part: Code:
if x == 5: Code:
print "yams" Code:
else: Code:
print "done" http://www.picaroni.com/PYTHONTHING.png |
So it's, in effect, just conditional branches (such as those found in the RM programs)?
I've never programmed anything before etc...so I don't have the faintest idea of what to do... ---------- I'm a sorry to say, that you assumed wrong...:p The next thing I'm gonna do, as soon as I can, is download Python...and Crimson Editor... |
That's really only if you want to practice Python a bit, outside of Blender's context. But yeah, my example above is just a conditional branch. Obviously, you can get a bit more complicated by defining functions and the like.
I still can't get past "falling cube" with Blender, however |
Ahh, yea I think I will pass up Blender. It's not in my line of wanting to learn. Have fun.
|
So how would it be done in Blender??
Is it poss. for you to put a tutorial together showing how it's done?? |
1 Attachment(s)
Quote:
Also, BOUNCING MONKEY HEAD (named untitled.blend because it's just that good) |
He he he...I like it!
Is it possible to colour the monkey head in??? And/or have multiple ones??? |
I would hope so. Haven't figured out how to color things in yet, though.
|
I'd've thought it would be a case of selecting the different 'faces' of the object and choosing to add a colour...:p...
---------- You know what Blender reminds me of?? A progam called ProDesktop. If it is, then I think I can use it...:D I'm right...it is almost an exact copy of prodesktop...except with a different look etc. ---------- I think I may have just worked out how to colour... ---------- Found the manual for it. To colour and texture: http://www.blender.org/modules/docum....QIK.F.S68.031 The manual itself: http://www.blender.org/modules/documentation/htmlI/ |
He he he...gotta red monkey face now...:p
|
Quote:
|
The only problem is, the whole head is red...I can't seem to the different sides different colours...that's something to work on...
I don't know, maybe I'll make Gus from the little tutorial...I've always wanted a walking gingerbread man on my computer... :weird: |
Apparently if you have different textures then you can have each 'face' a different colour...
Maybe for your next project you could have a monkey head complete with the textures of: 1. Brick wall 2. Kitchen Curtains 3. Cold metal :p :p :p |
That would be an X-TREME BOUNCING MONKEY for sure. I'm starting to really, really hate Blender though. Guess it's just my lack of artistic vision or something.
|
The problem with Blender is that it doesn't come with anything you can build upon.
If, say, it came with multiple 3D chipsets, characters and the such, then it would be a pretty good program...but then again, it may just be us getting to set in our ways and being too lazy to create our own things... Well...looks like our next quest is to fiund a 3d rpg maker that comes with the things we are so used to... ---------- Maybe this is worth a try...http://3das.noeska.com/default.aspx...the screenshots aren't v. good though... ---------- One that looks better than the above is http://www.gamediscovery.com/game-de...e-creators.asp - RPGds. For some reason it reminds me of RMXP. ^ Screw that for the mo. The actual program can't seem to be found anywhere... |
You do realize Blender wasn't made to create games, right? It was developed by a swedish company for 3d Movie creation.
I have had blender for about a year and a half and I haven't gotten very far with it. Plus my Comp sucks, so. The best I can make is a photo-real apple. ATTENTION: Anyone using this should be blessed and donate to the Free Blender Fund found at thier site. PS: Making grass is easy. Download the Fiber python script. It is copyrighted by its creator. Found at http://oregonstate.edu/~dennisa/Blender/Fiber2/ try it. But if you want to make games, stick with RM2K3. Go to college get a degree in digital media and design and a degree in game programming if that is you wish. Me, I want to be a graphics designer. Play around with Blender. It is good to get an early start. |
Quote:
Unless it's a BOUNCING MONKEY HEAD, because boy I can bounce monkey heads like there's no tommorow |
Really...there is no tomorrow...you gvet to so-called 'tomorrow'. and it springs up just ahead of you...rather annoying I can tell you...
|
All times are GMT -6. The time now is 08:40 PM. |
Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
This site is best seen with your eyes open.