andreyin's Recent Forum Activity

  • This is awsome! I love this kind of style and will deffinatly be using it as soon as I can.

    That example GIF looks great as well. But is it just a mock up or is from an actual game? Cause I would like to play it

    It's a game I'm working on right now but it's still very early.. won't be done for the next few months!

  • It's because you have a bunch of star objects. If you just say "is star.animationname=default2" how should it know which start to pick?

    Use "for each". For each star object -> star animation is = to default2 -> rotate.

  • I don't understand, you don't want the character to be able to move if the top half is next to a wall, is that right?

    So you shouldn't say "if top half is overlapping ground -> move left", you should say "if top half isn't overlapping ground on the left -> move left".

    In this case you should use "is overlapping at offset".

    You're also checking and moving for both bottom and top half. You're basically saying "if bottom part is overlapping ground and player presses left -> move left -> then check if the top half part is also overlapping ground -> move left again".

    If you're trying to make it so the both parts can only move when there's no ground on where they are trying to move, you should do this:

  • Very useful! But pressing the "export" button won't work in the Scirra arcade.. would you mind sharing the .capx too?

    Thanks for sharing!

  • For Cocoon.io, have you tried checking their forums?

    https://forums.cocoon.io/t/construct-2- ... reen/166/2

    I also have a black screen problem and am about to try a few things they said in this thread.

  • Is it a very big image? If so you should cut it in parts first.

  • Decided to give this a quick go yesterday and now I'm wondering how the heck have I made it this far without using this. It makes my life so much simpler! Thanks for this behavior rex!

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • You could use an array to check how many shots has the tilemap received:

    bullet on collision with tilemap ->

    check if array(bullet.x,bullet.y) is less than 1 ->

    If it is, add 1 to position (bullet.x,bullet.y) in the array

    If it isn't, destroy tilemap at position (bullet.x,bullet.y)

    The hardest thing to do would add the automapping, which is a set of user-defined rules that change the tilemap like the gif you posted.

  • > Just use a for loop and name your loops

    >

    > For "loop1" from 1 to 12000 -> for "loop2" from 1 to 12000 -> if sprite2.animationframe = loopindex("loop1") -> if sprite1.animationframe = loopindex("loop2") -> do this

    >

    Thank you but it doesnt work.

    Why doesn't it work?

  • Just use a for loop and name your loops

    For "loop1" from 1 to 12000 -> for "loop2" from 1 to 12000 -> if sprite2.animationframe = loopindex("loop1") -> if sprite1.animationframe = loopindex("loop2") -> do this

  • Couldn't hurt to hear what Ashley has to say about this. When I gave it a try a few months ago I had C2 running in a browser on the console just fine.

    You can also enable devmode in any console now and test your game. I think there's a tutorial somewhere in the forums but basically you export is as a Windows 10 UWP app, open it in Visual Studio and send it to the Xbox One.

    I've tested my game and it ran great. It's too bad it's going to take so long for them to add UWP games support...

  • Wow, that's great! I've been using ReplaceColor to get some palette control going but this looks much more useful. Does it work on individual objects or layout only? Is it limited to 16 colors?

    Thanks for sharing

    Yup, it works just fine on individual objects too.

    This effect allows up to 16 colors but you could use less without having to edit the effect directly - just set the unused colors to Red 0, Green 0 and Blue 0 and it should work.

    You can also add more colors but you have to manually edit the .fx and .xml files using notepad (I recommend Notepad++, it's a great app for this).

    To add more colors:

    In the .fx file you need to copy the last 3 variable lines :

    uniform float COLOR16R;
    uniform float COLOR16G;
    uniform float COLOR16B;[/code:1f5s2i6q]
    then paste it below while changing the numbers (to 17 and so on), 
    
    Then you need to add a line for it below the "TRY_COLOR (vec3 (COLOR16R, COLOR16G, COLOR16B));" line (also just copy/paste it while changing it to COLOR17R, COLOR17G, COLOR17B).
    
    After this you must edit the .xml you have and copy the last 3 params (they're on the bottom of the file):
    [code:1f5s2i6q]<param>
    			<name>Color 16 Red</name>
    			<description>Red color to replace, from 0 to 255.</description>
    			<type>float</type>
    			<initial>255</initial>
    			<uniform>COLOR16R</uniform>
    		</param>
    		<param>
    			<name>Color 16 Green</name>
    			<description>Green color to replace, from 0 to 255.</description>
    			<type>float</type>
    			<initial>241</initial>
    			<uniform>COLOR16G</uniform>
    		</param>
    		<param>
    			<name>Color 16 Blue</name>
    			<description>Blue color to replace, from 0 to 255.</description>
    			<type>float</type>
    			<initial>232</initial>
    			<uniform>COLOR16B</uniform>
    		</param>[/code:1f5s2i6q]
    And paste it below, editing the COLOR16 variables to COLOR17 and so on. If you want you can also change the numbers between the <uniform> tags to have a default value (aka the color you want). This way when you add the effect it will already have the color you wanted.
    
    You can have as many colors as you want by doing this.
andreyin's avatar

andreyin

Member since 11 Jan, 2010

Twitter
andreyin has 1 followers

Connect with andreyin

Trophy Case

  • 16-Year Club
  • Forum Contributor Made 100 posts in the forums
  • Forum Patron Made 500 posts in the forums
  • Regular Visitor Visited Construct.net 7 days in a row
  • RTFM Read the fabulous manual
  • x3
    Great Comment One of your comments gets 3 upvotes
  • x2
    Delicious Comment One of your comments gets 10 upvotes
  • Email Verified

Progress

23/44
How to earn trophies