Author Topic: Game Design Megathread  (Read 446184 times)

also if you just want a lot of information about one specific color this website is great
http://colorhexa.com/

Any unity devs here that are decent with Cg?

How good is the Visual Scripting within UE4? Is it limited in what you can do in any way?

How good is the Visual Scripting within UE4? Is it limited in what you can do in any way?
Not really. The limit you'll experience most often is that something too complex will make the blueprint extremely convoluted, making it hard to read and hard to debug. That's the point that you should be doing it in C++

Not really. The limit you'll experience most often is that something too complex will make the blueprint extremely convoluted, making it hard to read and hard to debug. That's the point that you should be doing it in C++
Couldn't write it any better myself.

One day I cough up the code from my stuffty ICT game that was done completely in blueprint. It would have been far better in C++, but at the time I was still not even comfortable with C.





does anyone know python (specifically pygame)?

does anyone know python (specifically pygame)?
I know python. I love python. python is amazing
I've played with pygame before
why do u ask??

I know python. I love python. python is amazing
I've played with pygame before
why do u ask??
for my programming class i have to make a game
and the teacher sucks richard BALLS
and i need help
like a lot yknow

Could you do Unity/C# or Unreal 4/C++? I have notes for both.

Are you limited to python specifically? Because it'd be super simple to get up and running with C# and unity. There's so much documentation, full example projects, even videos guiding you step-by-step constructing whole (albeit simple) games.

Are you limited to python specifically? Because it'd be super simple to get up and running with C# and unity. There's so much documentation, full example projects, even videos guiding you step-by-step constructing whole (albeit simple) games.
as far as I can tell, python's required. in fact, I think the teacher started them off, because there were some things in his code that are not exactly "good ideas"
and it's not that it's incredibly offensive to do these things. but a modern python tutorial would teach you otherwise, so this stuff would've had to have come from someone with old knowledge about python

python's great, though. and pygame
it's open-source, which means you can find out anything you need to find out, just by looking at it (also it means that using it supports open-source software ;3 )
unreal is open-source too, which is wonderful, but I can't say that about unity :///////

an installation of pygame also comes with several examples, naturally with the source code included for each one
the documentation is... actually, not that great. it definitely gets the job done, but it would be nicer if it was on par with the official python documentation. an offline version is also included with an installation of pygame, so you don't need to go searching around the internet for it or anything

most importantly, it's very easy to use, and lightweight. you don't have to download half a gigabyte of software to get started. the python 2.7 installation on my computer is about 100MB, and that includes pygame, plus whatever other unrelated modules I have installed. just a text editor, python, and pygame
plus you'll be able to run it on just about any computer (important for schools with limited $$$)

edit: I failed to mention this, but it also introduces you to the way games really work. LÖVE does the same thing
that is, you work with frames, rather than... uh, idk how to describe the sort of thing you do with unreal and unity kinda stuff
like, in pygame and love, you have a loop of code that it goes through every frame. and you have to do stuff between those frames to change the state of the game
but in unreal or unity, it's a lot more abstracted. that stuff is definitely still happening, but it's on a lower level that you don't normally need to mess with
which is a very useful thing to know if you're ever gonna be doing anything low-level
« Last Edit: October 25, 2015, 11:33:34 PM by Foxscotch »