MPPlantOfficial's Forum Posts

  • so I'm trying out the tile movement for the first time today.

    The pathfinding Grid movement for the "move to" action implements it both by simultaneously addressing both the x and y components resulting in diagonal movement when I want to make my sprite follow 'L' and 'S' paths.

    EDIT: I forgot to include the problems I'm encountering:

    - the pathfinding for this behavior seems to 'brute force' its way into an obstacle for lack of a better term. in the c3p file I provided, you'll notice clicking on a space behind a solid object the sprite will move along the path but stops as soon as it collides with a solid block instead of trying to find a way around it. this happens both for diagonal and adjacent movements.

    There are 2 things I'm trying to do:

    1. disable diagonal movement by setting it so the movement tackles X and Y components at a time

    2. set a single function for movement that restarts when the condition 'not in position x,y' yet.

    it sounds simple enough on paper but somehow I'm having a brain fart over this.

    c3p link below:

    https://1drv.ms/u/s!AgpkemTjg_pViCrIE-D4TS-PKCXK?e=Rl5u4Q

    • Post link icon

    nevermind. the link was requested using my other device and I've received it in my email. mods, please delete/lock this.

    • Post link icon

    Hi everyone I am attempting to sign my account to another device I will be using but there doesn't seem to be an option to view my current password; only to change, which I have been attempting to do but the password I saved on my browser isn't working.

    Would it be possible to give a change password link via my email?

    Tagged:

  • nevermind...

  • I'm trying to add the usual Functions plugin to a new Project. Can't find it.

  • > The downloaded C3 desktop app is completely independent of the browser version. It has no effect on whether you have the option to install in the browser. If that option doesn't appear in the browser, it's probably because you already installed it.

    Yes but the installed version is r 130+ apparently.

    I am trying to uninstall it but cannot find in Control Panel?

    Oh nevermind. I found it in the "Chrome Apps" folder. There are a dozen Construct 3(1), Construct 3(2), Construct 3(3) files in there. I'm assuming they're different installed versions...

  • The downloaded C3 desktop app is completely independent of the browser version. It has no effect on whether you have the option to install in the browser. If that option doesn't appear in the browser, it's probably because you already installed it.

    Yes but the installed version is r 130+ apparently.

    I am trying to uninstall it but cannot find in Control Panel?

  • hi guys I don't the options to install desktop apps of releases 148 and 150. Do I have to uninstall my current C3 desktop app? Will doing so delete the saved browser files and 3rd party plugins?

  • bump.

  • IAP does nothing when I try to buy my item.

  • try set x = pos

  • Simply use Browser Open URL "http://play.google.com/store/apps/details?id=yourappid"

    Yep. That's what I was planning to do instead but the whole scrolling down and going to "rate this app" is a step most users can't be bothered with.

    Is there no other way?

  • bump. I cannot get it to work. Anybody have ideas?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • found these:

    private void launchMarket() {

    Uri uri = Uri.parse("market://details?id=" + getPackageName());

    Intent myAppLinkToMarket = new Intent(Intent.ACTION_VIEW, uri);

    try {

    startActivity(myAppLinkToMarket);

    } catch (ActivityNotFoundException e) {

    Toast.makeText(this, " unable to find market app", Toast.LENGTH_LONG).show();

    }

    }

    public void launchMarket()

    {

    Uri uri = Uri.parse("market://details?id=" + this.getPackageName());

    Intent myAppLinkToMarket = new Intent(Intent.ACTION_VIEW, uri);

    try

    {

    mContext.startActivity(myAppLinkToMarket);

    }

    catch (ActivityNotFoundException e)

    {

    Toast.makeText(this, " Sorry, Not able to open!", Toast.LENGTH_SHORT).show();

    }

    }

    here: stackoverflow.com/questions/11270591/rate-google-play-application-directly-in-app

    do these still work?

    Guess I'll have to try myself when I get the chance....

  • I installed the .c3addon files that used to be able to request reviews in apps but can't find them when adding plugins in c3.

    Tried right clicking the box to find the "show deprecated plugins" checkbox but that doesn't work either.

    How do you request reviews for your apps now?

    any Javascript command I can use?

    Tagged: