dop2000's Forum Posts

  • It's not about scrolling. Pathfinding is limited to layout size. So if you need a bigger PF map, you need to increase your layout size.

  • You do not have permission to view this post

  • Eren This is some powerful JS kung fu! :) Thank you!

    One question - will this code work in Android apk?

  • I am trying to integrate this barcode decoder. I managed to do it in C3, by added the library as a script and calling javascriptBarcodeReader() method.

    But a similar approach in C2 doesn't work, I tried lots of things and still getting the same error - "javascriptBarcodeReader is not defined".

    I don't know Javascript very well, could anyone help me please?

    Here are both project files:

    dropbox.com/s/sln5tzprry7ts56/barcodeReader_fromSprite.c3p

    dropbox.com/s/1x00lg9u4re2183/BarcodeReaderC2_notWorking.capx

    Tagged:

  • Play this sound with a tag. And add a condition checking that the sound with this tag is not already playing.

  • But not so much when there is 720 sprites, from "x00y00" to "x20y38", to lay down...

    Omg, this is a horrible idea! You need one sprite with 720 instances, not 720 different objects!

    You can define instance variables on this sprite, say gridX and gridY, to identify position of each tile in the array. And of course, fill these values programmatically, not manually.

    Another option is to use a tilemap. Tilemap is basically an array. On click change the tile under mouse cursor.

  • That or the preview buttons sometimes stop working for no apparent reason and I have to restart C3.

    If you launch the preview and immediately close it while it's still loading - there is a good chance that the preview button will stop working.

    There is a new bug that's driving me crazy. When I'm editing a large table (array), sometimes it starts scrolling up by itself. The only way to stop it is to close and reopen the array editor.

  • Set world gravity to 0 and apply constant force to objects instead. For objects that should float up, apply force at angle 270. For objects that should fall down, apply it at angle 90.

  • No, it's not possible. You can restore the folder structure in the exported game, but you'll have to add folder names to file paths in your events. For example, if you had AJAX Request MyArray.json action, you'll have to change it to AJAX Request "FolderName/MyArray.json"

    Of course, if you do this, the game will no longer work in preview.

  • R0J0hound Thanks, I though about using a large canvas. Just not sure how well it will work if trees are pasted on it on every tick. Will have to test this.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • oosyrag Don't think this will work. There are 3 layers for objects and z-ordering is quite important. Light source may be in front or behind one or multiple objects.

    newt I forgot about this plugin, it may be useful. Although seems like it requires a very special mask..

  • duplicates of the sprites on layer 1, but with solid colors, you could just zorder the light with solid blue trees and get the same effect, without canvas or blend modes. Probably what your first idea was.

    Yes, but there will be lots of objects like trees, maybe even animated. So duplicating them is not feasible.

  • R0J0hound You can set drawing blend mode in DrawingCanvas, but it doesn't work for pasting objects. It's still possible - I can use the tree as a mask with Destination In to "cut" its shape in a blue rectangle sprite, and then paste both sprites onto the canvas.

    Thanks, this may be a solution. Still there will probably be some issues, because the tree needs to be moved to a separate layer with "Force own texture=yes" settings, this will break z-ordering. And pasting doesn't happen instantly, so the tree will be invisible for a tick or two..

  • I'm using a blue overlay layer with Multiply effect to create day-night cycle. I also have light sources like candles or torches that should illuminate a small area. I put a white circle on the overlay layer and it creates a nice light spot.

    The problem is that the game is isometric and the light source may be partially behind a tree or some other object. How do I erase part of the light spot which is behind that object? Ideally I want to get something like this:

    Here is a demo project:

    dropbox.com/s/qco6vlzisxru9uk/NightLight.c3p

    I guess one option is to put a blue silhouette of the tree on top of the light spot onto the overlay layer. But this will be a lot of work.. Hopefully there is an easier solution, something with a drawing canvas maybe?

    Tagged: