winkr7's Forum Posts

  • in some games the player does "editing" too.

    I have a game where the player builds his ship out of parts. Some of those parts are armor and he wants to know while he is building his ship in game--how much is cosmetic and what is the real pollygon?

    I could make up collision polygon shaped sprites and show that or put image points on pollygon points and draw lines or--you could tell me where the polygom points are.

    There are work arounds--just sometimes you want to know where they are. For me it would not be a high priority--but since you asked thats why.

    yours

    Winkr7

  • I would, sometimes you want to show polly even for the end game user.

    You could put an image point at each polygon point if you need to, but it would be easier to have access.

    yours

    winkr7

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • You can try this:

    Make both moving objects solids (disabled) and give them custom movement.

    Check each tic if they overlap and are both moving along the path.

    if so enable one to solid.

    use custom movement push out solid.

    set them both back to disable solid.

    This will make them not overlap but one of them will have to wait while the other moves along the path if you want to get tricky you can give one of them priority and use push out solid on the other non priority one.

    I hope this is useful.

    yours

    winkr7

  • worth it because you can edit on android for me. You can edit away during your commute.

  • hello;

    I found a big drop below 6 in performance. But I test on my old used androids and don't know the statistics for a wider base.

    yours

    winkr7

  • Fib;

    Thanks. Thats it. I knew I had seen it somewhere.

    yours

    winkr7

  • Hello;

    I want to make a pie indicator (its just a little slice when almost empty and grows clockwise to a full pie when full). I read somewhere that with 4 half slices (two black to block out what is below and two red overlaid at angles to show the growing pie) this can be done. I think I saw this in c2 about two years ago. Does anyone remember how this was done or where the link was?

    thanks for your time

    yours

    winkr7

  • I edit and run the code on my little android while I commute. When I get to work I switch to my PC without missing a beat--same project, same line of code even.

    I can deploy a full HTML game to my website in a minute--honestly one minute.

    If you want to get something up and running C3 is a dream.

    yours

    winkr7

  • When is an object pickable as RoJoHound points out is the center of most of my bugs in C2 and C3. If you use lots of functions (which most people tell you is a good programming practice) you have a tendency to shove created objects further down as you build functions that call functions and since you can't access a newly created abject except by "Pick by UID" or "last created" it can get pretty complicated.

    If you start putting wait 0 here and there because well--I don't know it makes it work--you are doomed. Yes this pickable thing is a feature of the construct methodology and it messes just about everyone up from time to time.

    There are a few things you can do to get around it:

    1) avoid creating objects you can put in the layout since they are pickable right away.

    2) keep a UID array of stuff you create and use pick by UID looping in the array. This seems like overkill but it will save you countless hours of debug time.

    There are many upsides to how C3 works, and I obviously love it--but it is clear that when an object becomes pickable is a source of programming problems.

    yours

    winkr7

  • Scirra.com is off limits for some corporations trying to stop game playing at work. However contruct isn't on their list yet.

  • Alon;

    I want to do the same thing--and I would like to point out that some layers in my layout change their opacity or are invisible. So when the capture is done I need to set these layers for the capture.

    Yours

    Winkr7

    Hello;

    Sorry this is a little off topic--but how do you get your code snippets to print out so neatly. I always have to take a screen shot. Are you using cut and paste to generate those?

    thanks, and I hope you solve your wait problem.

    yours

    winkr7

  • Newt;

    I am not sure how to get hold of you. It seems we can't PM.

    I am working on a game and want to see if you are still interested in employment.

    you can view the alpha here: space4x4good.com/rb

    yours

    winkr7

  • Thanks AllanR and Plinkie. I think I will go with the two family solution.

    I appreciate your time, both of you.

  • Hello;

    Box is a family of sprites. I want to write a function that returns a 1 if two specific box.UID values overlap. so it is functions.DoTheseOverlap(boxOne.UID,boxTwo.UID)

    How do I write this?

    If I just say box overlapping box I get a big SOL of all the overlapping boxes, not just these two.

    thanks for your time.

    yours

    winkr7