mutajon's Forum Posts

  • Great - thank you.

  • Hi!

    Is there a way to pick the nearest object in a certain direction?

    For example, pick the nearest card object whose X is smaller than self.x (assuming there are several card objects whose X is smaller than self, I want to pick the nearest of them)

    Thanks :-)

  • Thanks for trying to help - turns out I forgot about some old code (from when I was using containers instead of hierarchy) that pinned the children to the parent on creation, which caused the unintended behavior...

    Thanks again and sorry for not noticing

  • So I have a parent object with several children objects (the parent object is not part of a family).

    When I create the first parent object, I tick the hierarchy checkbox and it is correctly created with all children objects.

    In the game I need to create this parent object over and over again. The behavior I want is that each time I create a parent, it will be created with its own set of children, independently of any other instances of the same parent object and their children.

    However, when I call the create object action at runtime and create another instance of the parent object, it is created with its children (as intended) AND children from all previously created instances of the same parent object are transferred to the new parent object that was just created... (not intended).

    Any idea why this happens or how to solve this?

    Thanks!

    Tagged:

  • Thank you both very much!

    Then I guess I'll move forward with the project.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Hi :-)

    Say I have 500 low res (50x50 pixels) images. Each image depicts a different animal.

    Desired outcome:

    1. I want to be able to choose one of these images and display it on screen

    2. Then repeat step 1 up to 75 times (so at max, have 75 50x50 picture on screen at the same time)

    Questions:

    a) Is this realistic, memory-wise, for a web-based game? or is this too many images at once?

    b) How do I achieve this?

    with my limited knowledge of construct, the only way I can think of is having a single sprite, with the 500 pictures as individual frames of said sprite. Then I can create this sprite and choose the desired frame. However I'm afraid this is terribly memory inefficient and would quickly cause the game to crash - am I right? or is it indeed possible to have tens of instances of a sprite with hundreds of frames?

    Thanks!

  • Thank you both!

  • So, I need to add 'trigger once' condition to an OR block but this doesn't seem to be possible...? The trigger once is created as an OR condition (see pic) which immediatly triggers regardless of the other conditions in the block.

    Is there a way around this?

    Thanks!

    Tagged:

  • Thanks!

  • Hi!

    Say I have a life bar, which I want to keep visible in the same position on several layouts - do I need to add it to each layout manually? or is there a way to make it persist between layouts?

    Thanks!

  • Thanks for the quick answer. :)

    I just thought it could sometimes be useful to create animations that include letters/words and/or changing text using animations (e.g. in a complete word, changing only one letter's color in a sequence).

  • Hi!

    Am I missing something or is there no way to type-in text in the sprite editor?

    If I'm not missing, anyone know why they would not include an option to add text to the sprites?

    Thanks! :-)

    Tagged:

  • Hi :)

    Just an idea - would it be possible to add a simple text tool to the sprite editor?

    So that we could have an easy way to add text to sprites/create sprites that include text as part of the image..

    Thanks!

    Tagged:

  • Thanks!

  • Hi :)

    Consider the following hypothetical situation:

    Loop(1)

    ---Loop(2)

    ------Loop(3)

    ---------Some action using loopindex

    Which of the loops does the loopindex refer to?

    Is there a way to specify which loop the loopindex refers to?

    Thanks for helping!