|
562
|
Feedback / Playtesting / Re: MAX - action rts/boss rush
|
on: June 30, 2012, 07:10:35 AM
|
|
Yeah, it happens right when I boot it up. The first time I tried to run it from the archive, but the problem persisted after unzipping. I only get to see the "Seasons" logo and the cursor (which is under the error message in that screenshot).
Edit: Running in compatibility mode did nothing.
|
|
|
|
|
564
|
Developer / Tutorials / Re: Braving Procedural Generation
|
on: June 30, 2012, 03:14:59 AM
|
^ Looks usable, if a bit chaotic. I bet architects wouldn't quite approve of the grid plan.  I get the impression of a post-apocalyptic world. If anything bothers me, it's those "sticks" extruding from buildings.
|
|
|
|
|
566
|
Player / Games / Re: What are you playing?
|
on: June 28, 2012, 03:32:17 PM
|
|
Just bought the Android version of Another World. Eager to check it out, I've got high expectations based on what I've heard.
|
|
|
|
|
567
|
Feedback / DevLogs / Re: Orionvela Mission
|
on: June 26, 2012, 02:38:07 PM
|
|
I'm imagining some sort of "interactive sci-fi slice-of-life" without pre-defined goals. As in, you're just wandering around the futuristic environments (which already look delicious, by the way!) seeing people's lives develop around you. Maybe you'll help others with their individual problems and contribute to making the colony thrive through your career.
Hopefully you're inspired.
|
|
|
|
|
568
|
Feedback / DevLogs / Re: The game of my dream
|
on: June 26, 2012, 02:11:10 AM
|
|
I'm keeping an eye on this. You've got some interesting ideas (particularly "search and survival") coupled with great visuals.
|
|
|
|
|
569
|
Developer / Creative / Re: So what are you working on?
|
on: June 25, 2012, 08:48:49 AM
|
|
I don't think the 3D tools are even necessary here (although they do make the whole process easy). You could achieve something similar by gradually skewing the texture on the side and adding a shadow gradient.
|
|
|
|
|
572
|
Feedback / Playtesting / Re: I hate bullet hell shooters, so I'm making this instead
|
on: June 22, 2012, 04:01:08 AM
|
In Unity I found a thing called "audio.pitch", and I was going for more of a bassy underwater sound when you paused, but in testing it I noticed that "pitch" is their word for "speed".
That's not an Unity quirk, that's just how sound works. Longer waveforms produce lower frequencies.
|
|
|
|
|
574
|
Developer / Creative / Re: Is Artwork a necessity?
|
on: June 17, 2012, 08:04:36 AM
|
So, you just make whatever you want and then play it to see if it fits? I'm also trying that, but not much success is coming this way. :p
Usually I either have a concept in mind or it pops up early in the process. It helps my creativity to limit myself to a small pond of mechanics in a given area and force myself to squeeze all the juice out of their combinations.
|
|
|
|
|
575
|
Developer / Art / Re: 3D thread
|
on: June 17, 2012, 02:28:30 AM
|
|
Geti, you're just starting out in 3D and you've already got such a distinctive style? That's pretty impressive.
That .gif reminds me that I want to see a full-length version of your latest Ludum Dare entry.
|
|
|
|
|
577
|
Developer / Design / Re: What games level design has stood out for you?
|
on: June 17, 2012, 12:44:33 AM
|
|
-Metroidvanias have generally appealing level design. They are the few games that give me a genuine sense of exploration/discovery. I love the "layered" progression and reusability of areas.
-The Half-Life series and both Portals. I have to admit Valve has a consistently solid grasp of level design. Things like pacing, immersive environments, teaching mechanics using the level design itself, and integrating storytelling into the gameplay. The developer commentaries reaffirm my impression that they're obsessed about design.
-Jetpack. Yeah, that DOS game. I still keep making levels for it now and then, and it's stunning how much you can get out of the simple mechanics. Although I guess I'm not really talking about how good the pre-made levels are, but rather about how the limitations make it an ideal environment for designing levels.
|
|
|
|
|
578
|
Player / General / Re: What are you reading?
|
on: June 17, 2012, 12:13:17 AM
|
|
I'm just about to finish Hitch Hiker's Guide 5, then it's Neuromancer time. Also some C & C++ programming books.
|
|
|
|
|
579
|
Developer / Creative / Re: Is Artwork a necessity?
|
on: June 16, 2012, 04:59:55 PM
|
Level design, for me, relies mostly on playtesting. Drawing just helps organize my thoughts when I already know what I want to add. def create_level(): level = get_concept()
while level.length < LONG_ENOUGH or level.size < BIG_ENOUGH: new_ideas = play(level) level.append(new_ideas)
return level
|
|
|
|
|