jojoe's Forum Posts

  • > Can you post a Capx? I have a feeling the lag is from the local storage.

    >

    i am not using local storage in my test project, i just paste the big array and nothing more.

    OK sorry, I am done guessing.

    Loading a 1024x1024x1 array from a text object full of Perlin noise values and it is instant. So I am thinking it is not a C2 bug.

  • Load your list into an array, Then you can copy the last value to the front , and pop the cell that the last value was in for your scroll. It will only loop through the values in the array. You wont need to scroll the screen at all this way, the list will scroll .

    Here is a load thing i was working on:

    https://mega.nz/#!kAxBQRTJ!ZqM9eHA0R-q4 ... lPRiPPXQFA

    look at where I click the up and down button to see how to scroll up and down.

  • I dont think pins work on physics objects.

    Make your own pin by:

    Every tick ---- Set position----you physics object X and Y. (or the image point you want to glue it too.)

  • Can you post a Capx? I have a feeling the lag is from the local storage.

  • Rocket League!

  • If it's your own art, not copied or re-drawn but a true original, then yes. It's how sites like TeeFury are able to operate. I wouldn't flat-out call it "Enterprise" or mention anything specifically Star Trekky, though.

    They are not "Allowed" anything if they did not get consent from the copyright holder. The fact that they are still around just means that they are not worth enough money to pursue, or they dont want bad publicity smashing the crap out of someone doing "fan art".

    If the copyright holders wanted to shut down TeeFury with a DMCA notice, there would be very little problem showing the infringement.

    Long story short, if you make money by using/copying other people artwork, you are liable for a lawsuit, they can take every cent you made in some cases.

    If you are sitting on Millions of dollars, and a crack lawyer team working for you then I would say, yeah! give it a shot! You can probably beat them in court!

    If you are just a small time guy, making an indie studio though, you might spend your time working on your own artwork and concepts. That way no one can take your hard work away from you. Even if you make $0 using the content, they can still file a DMCA take-down notice.

    Stealing artwork and other peoples ideas takes all the sport out of making video games anyway.

  • If you want to get the attention of Scirra, you need to type Ashley or rob and your question.

    You can also email them directly.

  • Oh! you wanted the sum, not to add text to the string. Sorry about that.

    My English is not so great, I dont live around here.

  • Do you need Graphics or Programming? (Or both?)

  • Wow! it encrypts the keys? It was not like this yesterday, sorry about that:

    https://mega.nz/#!sZBHHY5J!8awDC7v6Dd0T ... NcZA8Z8y04

  • use on "ON input box changed" rather than pulsing it every tick.

    Also, use Append, to glue stuff to the end.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • R0J0hound, thanks!

    Looks like a really useful tool.

  • There is a keyboard object, double click onthe canvas and add one.

    Then you can do onKey and KeyDown for triggering events. Then if you are using behaviours there is a way to mimic the behavior movement in the sprites actions.

  • LittleStain

    The offset did the trick.

    jojoe

    I'm using Value-(Value%GridValue) and it works.

    Thanks guys.

    Well, I sure wish someone would explain to me how the heck it works.

    WTF, does the "%" thing do anyway? I Just stole the idea from a StackOverflow post.