Kyatric's Forum Posts

  • yumarod3: I can't get the file it's asking me to signup or login.

    Try to upload it on dropbox, it's far fairer to share files.

  • I have the intended buttons here (w7 pro 64bits). Can't reproduce.

    Try to go in the preferences dialog and click "Reset dialogs".

    Does it change anything ?

  • The how do I FAQ has a few items listed in the "multiplayer" section as this question already has been asked a few times.

    It's possible but requires time and coding skills.

    You can use the websocket custom plugin to handle the communication part of the client (the c2 app) and connect it to your webserver.

    The websocket might not be up to date I haven't really followed this in a while.

    Just check the items in the how do I and have a search for the keyword "Multiplayer" in the C2 and "how do I" forums, you should be able to find more.

    Some tests and teasers topics have been done but no working solution has been yet been made public.

  • ok i will try but when i end game and i want return to title screen for example all statistics gained during the game are high and the global objects are shown on title page

    It's up to you to "clean" the variables and global instances when you go to the title screen.

    Before going to layout "menu" or whatever, reset global variables if you want them to have their default value, and delete the instances that shouldn't "survive".

  • Also you can find capx examples in the how do I FAQ section "Scrolling/Camera"

  • As said above, it appears to be a picking problem.

    Have a look at the "How do I FAQ" in the section "Picking/selecting instances" and browse through the items, all the explanations/tricks/codes you need are there.

  • : I'm not working at all on the PF for now and have no knowledge about this bug.

    Could you provide a capx with repro steps please ?

  • I'm sure Ashley will be interested indeed and fix things nicely.

    Thanks for the notice/report.

  • Don't use the physics, use platformer behavior and solid behavior for the ground.

    When you need the specific physic interaction "switch" your player to a "fake player" with physics behavior.

    Have a look at the elements listed in the how do I FAQ in the "platformer game" section and in the "platformer behavior" section too, there are example that show you how to manage platformer and physics.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • It's probably because it's spell "sight" and not "site", which indeed isn't related.

    You could also have had a look at the how do I FAQ where the links rojo gave you are also listed amongst many other useful things.

  • This post explains you why you shouldn't do that.

  • You do not have permission to view this post

  • You can have multiple layout for your menus/levels and hold them in a single project yes.

    The layouts are accessible only to the project they are in.

    It's like the pages of a book, they all belong to the same "root" object.

  • Yes.

  • You're taking it the wrong way I think.

    AJAX sends a request from within the already running C2 app to an external script (php) and gets an answer in return. The script page you're trying to access shouldn't contain the c2runtime or anything.

    So basicly from inside C2 you execute an ajax request to "yoururl.php?yourvariables", the script in "yoururl.php" processes the variables and return an answer to the app.

    For the server side, it's PHP scripting.

    Check the items listed in the "AJAX" section of the how do I FAQ there are complete working examples of communication between the app and serverside PHP.