deadeye's Recent Forum Activity

  • Hey work, maybe you could post your .cap so we could see what's going on with it? Unless it's top-secret of course

  • I love the 3D boxes in that platformer deadeye, is there some limitation with 3D box which is why you're giving them up?

    Yeah, a couple. Mainly because it's just easier using tiles (no z-sorting issues to deal with), but also because of the current lack of other primitives. With some spheres, cylinders and cones I might take the time to build more impressive environments, but I think I'll just wait and see if the mesh object ever pans out sometime down the line. Also, with 3D platforms and everything else 2D, it just looks kinda gimmicky.

    I think we should do something along the lines of "marketing" for 1.0 when it's ready, but I don't know what - I guess open source projects have to spread by word of mouth based on their own merits rather than any advertising.

    I think word of mouth is probably the best bet. It would help if Construct had a "killer app" by the time 1.0 was out so people could see what it's capable of. It's already generated some buzz in the klik world, but like 99% of the people interested in it all say they'll wait for 1.0. Other than that, it's just a matter of folks talking about it and showing off their Construct games.

    So, show them off, people! I want details. Vinny, what's are your RTS about? Drew, a survival game sounds badass. What's the theme?

  • Deadeye tells me I can use a second layer and set the scroll movement to zero, but the overlaid layer doesnt display anything on it when I run the app..

    the collision objects seem to be there, but they cant be seen, and bsides it seems like they are locked to the scrolling backround after a bind of blind testing..

    Hmm, don't know what to tell you about that one. Sounds like a bug, maybe? Here's a .cap showing that this method does work, though:

    http://www.mediafire.com/?aejdnznk0cx

    Setting different scroll rates on layers is how you do parallax scrolling, so setting the HUD layer to 0% scroll rate for x and y should do the trick (as it does in the example .cap).

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • i'm also wondering if we should get a small community project going to help promote the release of construct v1. what are you thoughts on this?

    I don't know if I'd be down for a group project, but I might try my hand at a small compo (someone elsewhere mentioned a competition previously). It would depend on the theme, though.

  • Normally I don't post what I'm working on because I'm lazy and generally I end up never finishing, but I figured what the heck. Here's the two main projects I've started since I discovered Construct:

    Prismatic

    <img src="http://xs124.xs.to/xs124/08056/prototype896.png">

    The first mockup I made as a proof of concept. The final game will, of course, be much more detailed.

    I wanted to make a puzzle-platformer that dealt with color as it's main theme. The main character is Dr. Hugh Chromis (haha, get it?), a scientist who is working on discovering other dimensions. During a lab accident, he's jolted out of phaze with our dimension and is stuck between the dimensions. He can only interact with platforms and entities that he is phaze-aligned with. If he's red-phazed, then he can jump on red platforms and be hurt by red enemies, etc.

    <img src="http://xs124.xs.to/xs124/08056/dr_chromis_lg574.png">

    The sprite design for Dr. Chromis. Yes, I realize that when the three phazes are set next to each other like this, it kind of looks like an '80s New-Wave band.

    Normally you can only see what phaze you're aligned with, but Dr. Chromis has a set of Prismatic Goggles that he can turn on and off to see all three dimensions overlapping at once. By touching crystals of other alignments he can change phaze, and that's where the puzzle aspect comes in.

    Squarebear

    <img src="http://xs124.xs.to/xs124/08056/squarebear_prototype192.png">

    This prototype was one of the first things I made in Construct. The final game won't have 3D boxes for platforms, I was just messing around with them in this mockup.

    Squarebear was first conceived as an entry for Total-Klik's mascot contest (which gave us the wonderful game Pasi the Pumpkin-Worm.) Seeing as how I'm so lazy, I didn't get beyond making some concept sketches of Squarebear:

    <img src="http://xs124.xs.to/xs124/08056/squarebearsketch668.jpg">

    Anyway, Squarebear is a bear made of chewing gum. As such, he's got the ability to blow himself up into a bubble to get past certain obstacles. When he turns into a bubble he can float on air currents and on water, but he's in danger of popping.

    <img src="http://xs124.xs.to/xs124/08056/spritesheet_lg805.png">

    The first sprites for Squarebear.

    Both of these games are still in early stages of development, mainly because of my aforementioned laziness. But enough about me, what are you guys working on? Don't be shy, now.

  • Uh-oh, mom and dad are fighting again

    Oh and just an FYI, there's nothing inverted about y- being up and y+ being down. This is how pixel coordinates have always worked since cavemen chiseled the first raster graphics into the granite walls of their caves.

    The top left of the layout will always be 0x, 0y. X counts upward toward the right edge, and y counts upwards toward the bottom edge. In a screen resolution of 640x480, you get this:

    0,0---------------- Y = 0 --------------640,0
    |                                           |
    |                                           |
    |                                           |
    |                                           |
    |                                           |
                                                 
    X = 0                                 X = 640
                                                 
    |                                           |
    |                                           |
    |                                           |
    |                                           |
    |                                           |
    0,480------------- Y = 480 -----------640,480
    [/code:qgo86m4s]
    
    So it stands to reason that if you want an object to move downward, you add to it's y coordinate, and if you want it to move upward, you subtract from it's y coordinate.
  • Y-1 means it will go down by 1

    Y+1 means it will go up by 1

    Actually, it's the other way around <img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" />

  • No, at least not yet anyway. The Window object can resize, place, and dock the window, but there's no support yet for frameless or transparency-masked windows.

  • Okay, I just ran through the tutorial again and oddly enough, there aren't any events with multiple conditions in them. Suffice it to say, you can have more than one condition to trigger an action, like so:

    +enemySprite is visible
    +enemySprite overlaps bulletSprite
    +enemySprite.Value('shield') = 0
    -Destroy enemySprite
    [/code:6xq5101z]
    
    All you have to do is right-click an event condition and select "Insert New Condition," or click an existing condition and click the "+ New Condition" link that pops up.
    
    Argh, sorry for the double-post.
  • At the risk of getting another "what does that mean?" response, I'm going to answer this...

    You need to add a condition to your event that compares the current angle with the maximum angle. Like so:

    +spriteArm.Angle Greater than -45 degrees
    -Set spriteArm.Angle to (spriteArm.Angle-5)
    [/code:t8d29nh8]
    
    This is just an example, mind you.  There are several ways you can do this.
    
    Judging from your recent questions on the forum, you seem to be having trouble with basic things like comparing values and using multiple conditions in your events.  Have you read the tutorial?  It covers a lot of the basics as far as setting up events and performing actions.  I suggest you start there.  And don't just read it... do what it says.  Make the tutorial game while you follow along.  It's good experience.
    
    [url=http://scirra.com/files/ghostshootertut.zip]http://scirra.com/files/ghostshootertut.zip[/url]
  • But... sprites are game objects

    Again, this is one of those situations where it's just the way it works. If you want an app that uses game features, create a DirectX 9 game instead of an Application.

  • Yes. <img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" />

deadeye's avatar

deadeye

Member since 11 Nov, 2007

Twitter
deadeye has 1 followers

Trophy Case

  • Email Verified

Progress

17/44
How to earn trophies