![]() |
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??? |
All times are GMT -6. The time now is 01:26 AM. |
Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
This site is best seen with your eyes open.