zenox98's Forum Posts

  • Hello,

    I have a question for you, i'm interested to buy a personal license and i need to work on two computers, my question is, can i use this license on two computers?

    Thanks!

    A personal license allows you to install C2 to as many devices as you wish, as long as it is only you that is accessing the licensed version.

    https://www.scirra.com/tutorials/57/how-construct-2-licenses-work

  • Juicy

    Well, ahem.. it seems to work better if the paster is set to "visible" all is good, just got to get my head checked. Thanks none the less for the kind help.

    An example of usage would be a kind of split screen effect:

    https://dl.dropboxusercontent.com/u/34306693/egs4users/SplitScreen/index.html

  • Thank you for your response, xenox98. I used the latest version of C2, standard 'Export to Scirra Arcade' option without 'minify' option. No 'non standard plugins.'

    In that case it's likely something Tom may need to look at.

    Scirra should be back to work either today or tomorrow so hopefully will know something after then.

  • A video is not really of much use.

    It would significantly speed up the process if you provided a small example of a project that has the problem you describe, and exact steps to reproduce.

    That way, we can determine whether you have altered something or not, or even whether you have uncovered an actual bug.

  • I'm trying to follow the "Beginner's guide to Construct 2". It says to choose File -> New, and then "In the New Project dialog, you don't need to change anything. Just click Create project." But the window that appears isn't called New Project, and there's no Create project button - instead it wants me to select a template, and the default "New empty project" template doesn't seem to match up with what the tutorial expects me to start with. How do I create a project that will allow me to follow the tutorial?

    The first template says 'Create empty project', so it's likely that would be the default, so should suit your purpose. If it's dimensions do need altering, then please post another question and we'll help you out.

    It's likely that, although the beginners guide is updated periodically, it probably needs a further update.

    errrr

    Locked - for quite obvious reasons.

  • Now this propably is a stupid question but how do you use theplugin? i cant seem to get it to do anything.

    Have you read through any of this thread?

    This is one of the most useful plugins ever created for C2, and the forum is full of excellent examples of it's usage, easily found via the search function.

  • *moved - not a completed addon.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • There are no formulas available, unless you can get somebody to dig through the source code.

    Source is here if it helps: https://svn.code.sf.net/p/construct/code/Behaviors/Platform/

  • Scirra has an NDA - please use the WII U dev forums to discuss further.

    Quote from Ashley:

    [quote:2wg119de]You should ask Wii U specific questions on the Wii U developer's forum, since Wii U development is under NDA and we are not allowed to discuss it in public here.

    Source: https://www.scirra.com/forum/how-do-i-make-non-webgl-particle-effects_p991061?#p991061

    There are many other posts from Ashley saying the same thing (use search).

  • So what is your problem?

    You haven't actually asked anything - just made a statement.

  • You also don't really need the bullet behavior. You can just use 'simulate jump' for player 2.

  • OnyOxis

    You might want to update the version of C2 you are using - r208 is over 6 months old and there have been many changes since.

  • Elyos41

    Hi everyone,

    Is it possible to link my account with a license ?

    I already have a license, my parents bought me one 5 years ago.

    Today, i created my own scirra account but i didn't find any options to add a license.

    How can I do this ?

    Thanks

    *moved to a more appropriate section.

    You should email regarding licensing issues.

  • So, just add the physic behaviour AND the platform behaviours to the players, and the solid AND physic behaviours to the platform.

    I will work on it and see what i can do

    Regarding the mixing of physics and other behaviors, the manual entry for the physics beavior has this to say:

    [quote:hvoewcst]Using Physics in Construct 2

    The Physics behavior simulates physics separately to the Construct 2 layout. Construct 2 will try to keep the Physics and Construct 2 "worlds" synchronised if one changes but not the other, but this can be unpredictable. For example, setting an object's position or angle will cause Construct 2 to teleport the corresponding object in the physics simulation to the object's new position, which does not always properly take in to account collisions. The same is true of using other Construct 2 behaviors at the same time as Physics.

    Therefore it is highly recommended to control Physics objects entirely via the Physics behavior (by setting forces, impulses, torques etc.), rather than trying to manipulate objects by Set position, Set angle etc.

    Another consequence is Physics won't respond to objects with the Solid or Jumpthru behaviors. These behaviors are totally redundant when using Physics and have no effect. Instead, use the Immovable property.

    In other words, mixing behaviors with the physics behavior can - and usually does - introduce unusual and unwelcome glitches.