Somebody's Forum Posts

  • Exactly!

  • Indeed - I was just commenting on the first impressions - since most of what you said is not in any way communicated by the game itself. If all the things can be tapped, etc - it's obviously quite different from mousing around.

    As for the rubber band behaviour - it would just add a very nice looking natural rubber effect to the band.

  • Certain things struck me as strange:

    The levels are VERY different on each new start - sometimes the screen is nearly filled with bricks and other times there's like 10 of them.

    You can basically freely control the ball when it's below that bottom line - thus avoiding the baddies, if you wanted to.

    At times there are loads of baddies with basically 0 chance to avoid them.

    The start screen is music is MUCH louder than the one in-game - so you adjust for in-game and then BOOM! menu music.

    Also the gameplay is a little confusing - some bricks drop slow and you can keep on hitting them, some are semi-transparent, sometimes a light orb drops, etc. Perhaps some quick guide screen could help.

    Additonally I feel like you could use this and make that bungie feel AMAZING:

  • Possibly has to do with very strict SD card access limitations in KitKat. You basically need root and patch some things to freely work with an SD card, otherwise it's all walled in - if I'm not mistaken you can only access a subfolder named after your app in a specific location.

  • Are you talking about this, or something else?

    [attachment=0:1ky2gf5a][/attachment:1ky2gf5a]

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Another update.

    Thanks to the new HSB color system we can push the brightness independently from saturation, which means rough flat colors:

    It only works at top brightness and, certainly, isn't a proper flat part solution, but gives a little more to work with. Also the GIF shows off the selection described in the previous post quite nicely.

    I'm still trying to make it for a "this week" update, but undo just got broken somehow and there's still plenty of parts to (re)make. But it looks hopeful.

  • Thanks for that chart, Colludium, Was getting confusing with the diverging statements. dt is still our safe haven for consistent results it seems.

  • Also Somebody Battletoads? pshaw, in my day we had someone's older brother's copy of Citadel on the BBC Micro and we were happy dammit

    Well, I am in Eastern Europe so all the cool stuff from "abroad" used to come over about 10 years late. When you guys were starting to get bored with SNES and Genesis cheap NES knockoffs were still king here

    Do you guys have any suggestions or ideas on how I could make the gameplay more interesting? I was kinda hoping I could get away with a no-violence game though xP, But I'm 100% sure there must a thousand ways I could improve what I have here

    As lolpaca mentioned - new abilities are neat - even if it's a little stronger magnet to make collecting those orbs easier. Also, perhaps I just didn't play long enough but not enough mining was seen - perhaps have some part of scenery that can be mined - something could give it away, like slight shimmer of light from the orbs inside or such.

    I can appreciate a non-violent game idea, but cannot really enjoy it (heh). BUT - you could make that optional - make branching paths within a level where in one path is slow and steady mining, but in the other - space pirates and combat - both give you about the same rewards, but with different gameplay. And once you pick a path the other gets locked out (maybe add a secret way fro smart players to get both).

    There's room for all sorts of upgrades, like a radar (shows goodies/enemies on map or on screen), better mining equipment, better weapons, etc.

  • Very cool update, linking to several objects is just great - see plenty of usage scenarios there. May be a little bit until I get to try it in a real gameplay scenario, but will surely comment then.

    Thanks again for a great plugin!

  • hazneliel - this is awesome!

    But I think I found a possible bug? If I add it as a family behaviour and try to change the repeat count using a variable like this:

    Then this happens:

    Any ideas?

    I also took the liberty of assembling a c2addon file for your behaviour for easier installation

  • JamesXXXYZ

    Mirroring would basically involve adding an extra parameter for each shape, something like (MirroredWith) that stores the UID of the other shape.

    That is quite easy (and only breaks the save file one more time I guess). The awkward part comes when we go into situations simpler than "Shape A is on the left, user moved it right". What happens if both shapes are selected? Do we somehow mark mirrored shapes, which one is the main one, etc.

    Like I said I have an idea of how to do it, without any tricks, but just need to sort out the basics first.

    Your manual system is more difficult because of storage. Rohound did this part for you?

    Not sure what you mean here? I'm using R0J0's excellent paster plugin and modified his outline FX, but he hasn't done any code or such for this project.

  • It's all a guessing game from here, why don't you share the capx?

  • I had asked about this as well, but no answer ever came up. Can be quite useful at times.

  • Both are excellent updates!!! I can't wait to play around with the new version.

    If I don't finish the partset by the end of this week I'll just put up what's already there so you guys can play around with the new things.

    How did you get it to export? PLEASE PLEASE PLEASE PLEASE PLEASE tell me!

    Seems like Burvey already helped you out, but in the next bigger version the quick help should be back to avoid this sort of panic <img src="{SMILIES_PATH}/icon_e_smile.gif" alt=":)" title="Smile">

    This is looking better and better every time I see it. You are doing such an amazing job with this Somebody!

    Thanks! Still plenty to do, but it's getting somewhere.

    Event: Every 0.25 sec simulate m pressing = automatic mirror update (only activ when user is activ).

    I get the idea, but it would just strangely flicker if done like this (besides confuse the undo system). I might look into a real-time mirror "modifier", but in the future.

    -

    So that this isn't just replying to positive feedback here's a little status update.

    Colors

    Since the HSL effect workaround was a little messy (the pixels came back on extra high or low brightness) I started doing some research and ended up on a thread with a similar problem and a solution provided. The result is a new effect: Adjust HSB - effect-adjust-hsb_t123286

    So, hopefully, color mush is a thing of the past.

    Selection (Or - A Story of optimization)

    So one thing that keeps on changing is the way selected shapes are shown - it started with just the gizmos, then went onto shaking, then somewhat rough outlines, then outlines that were basically achieved by scaling the part so at times the corners would be ugly up to fairly decent ones in the latest published version.

    How selection outline basically worked was - a layer above the rest with additive blending - we draw a larger or shifted white copies of the original shape and then draw a black copy of the original shape. In the latest version this was 5 extra shapes for each selected shape - since the background white shape was shifted in a cross formation. In code it looked like this:

    If you did a Select All a more complex project the slowdown was tangible - since we basically had x5 of all shapes, each with shader effects runing.

    So I went around looking for a solution - R0J0 had a rather nice outline effect, but it was somewhat imited - but with a little work (read: blindly pasting things in from other things and hoping they work - after about 30 versions they did, heh) I had a new version. It takes your shape:

    Zeroes the original pixels to black and adds 8 shifted copies around it and makes them white:

    Then we just place this on an additive layer and have a really neat selection effect:

    I hope this works on all systems, but if it doesn't I can put the previous clumsy version in as a toggleable backup solution. Performance-wise this should be rather good as the GPU does all the heavy lifting.

    More to come.

    Edit: Here's the effect, if you need it: https://www.dropbox.com/s/vwvgvb2syvpvb ... addon?dl=0

  • Finally got around to have a look at the SDK and made the easy-to-use c2addon package:

    https://www.dropbox.com/s/lc785d06b9hsx ... addon?dl=0

    Save and just drag into an open C2 window to install.