ramones's Forum Posts

  • You do not have permission to view this post

  • Yeah it works as expected in Firefox for me but in Chrome you can put the mouse pointer in-between two blocks and it's not overlapping.

  • Can't see anything wrong in the screenshot.

  • No it doesn't reset. It's based on the game timer that starts when the game starts.

  • Just add the variable to the family and then select each object and set it's value.

  • Did you fix it? It works for me.

  • Works for me Peret. Maybe you've fixed it already but I died, entered the name "test" and it showed up right away.

  • newline works in the TextBox. Make sure you have the type set to 'Textarea'.

  • Try this site for sharing: http://dropcanvas.com/

  • Here's a little example of using loops and dictionaries. See if it helps:

    beerLoopDictionaryExample.capx

  • Why is this:

    Event: Ball -> Is isSpiky

    Any different than

    Event: Ball -> Is isSpiky

    Sub-Event: System -> For each Ball

    In the first example the actions run once if there are any spikey balls. In the second the actions run once for each spikey ball.

    For example if you have 5 balls:

    global count = 0

    Ball -> Is isSpiky
        Ball -> Set X to Self.X + 1
        System -> Add 1 to count
    

    After that runs, count = 1.

    Ball -> Is isSpiky
    System -> For each Ball
        Ball -> Set X to Self.X + 1
        System -> Add 1 to count
    

    After this, count = 5.

    ---

    It's the 'ball: Set X' action that has the implied loop. The function action doesn't have any implied loop.

    <img src="https://dl.dropboxusercontent.com/u/8367729/construct/pics/impliedForEach.png" border="0" />

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • blind_1.capx

    Put the echo and wall on their own layer. Echo on top with blend mode: 'Destination atop'. Set the layer property 'Force own texture' to 'Yes'.

    And I put more transparent area around the echo sprite so it covers the walls.

  • Hi, I narrowed the problem down to this file: Fireflight_edit.ogg

    In "tutorial level" - event 19, when you play that sound then all requests after it fail (AJAX requests and C2's _reloadpoll_ requests).

    <img src="https://dl.dropboxusercontent.com/u/8367729/construct/pics/failRequest.PNG" border="0" />

    This only happens in Chrome and it only happens in preview. It works ok when exported.

    I think it's got to do with file size. I tried playing a 10MB ogg file in a new project and got the same problem. Made the file smaller and it works.

  • 3 and 6 are being added but you're updating the text before you add the value to the array instead of after so you don't see the last value added.

  • Not sure.. bug report maybe. Using 'system create' instead of 'spawn' works.