Asmodean's Forum Posts

  • Ashley I have the exact same problem. I thought it worked after reinstalling but after a restart of the app it has the same problem again. It only works if I call the URL with the Edge Browser and open then the app from there.

    Construct should be logging something to the console if an error occurred.

    It's all completely blank, it doesn't load anything or gives any error.

  • all of a sudden only gray screen with no error

    I had the same Error but deleting the cookies has solved the problem. But it deleted all setting and add-ons. It works fine now for me.

    I had the first time to kill the Edge Task because it wouldn't end itself. After that all works fine.

  • This should work:

  • MikeMS You're right I can't enable the effect in the editor, but I can enable it at runtime an then it works.

  • Webgl only effect are hidden if webgpu is enabled in the editor or the project.

    That was it. Now it works.

    • Post link icon

    https://www.construct.net/en/contact

    supportdli@construct.net

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I can install the effect, but I can't use it. It shows up in the Addon-Manager but not in the Effects-selection.

  • No, you don't need the variables or the events if you only have level 0 to 9.

    That whole example was only to show you how it works.

    That is what you can use to replace your code:

    mid("०१२३४५६७८९",int(level),1)

    If you want more than Level 0 to 9 you need a loop.

  • I have no clue if numbers in Hindi are a compound of the numbers from 0 to 9.

    with mid(string,index,length)

    mid(Num,int(mid(input,loopindex("x"),1)),1)

    This is a nested mid. The inner is looping through the input and makes an Integer out of every character in the input string. And this is used as an index for the Num String.

  • You have to disable 'Unadjusted movement' in 'Request pointer lock'. This is only necessary if you need the raw mouse movement data.

  • I mentioned that 7 month ago. But I never got an answer so I thought it's only me.

    https://www.construct.net/en/forum/construct-3/general-discussion-7/debugging-not-work-offline-185638

  • Change tempButton variable to number at the moment it's a string. You have to make a new variable and replace it in the events then delete tempButton and rename the new one.

    I hope that was the problem. It works for me now.

    And you have to clear the local storage otherwise you will have the wrong dictionary with double entries. You could use clear storage once and delete it then.

    + System: On start of layout

    -> LocalStorage: Clear storage

    I forgot also to save the dictionary in the else under the is noDouble

    + System: Else

    -> LocalStorage: Set item "ButtonBindings" to ButtonBindings.AsJSON

  • I hope that works, it should:

    (Ignore the DefaultButton Dictionary, that was another idea)

  • Disable the webWorker. In Project Properties/ Advanced/ set Use Worker to 'No'

    then it should work.

  • Random(a, b) generates a random float between a and b, including a but not including b.

    You have to use choose:

    Choose one of the given parameters at random. E.g. choose(1, 3, 9, 20) randomly picks one of the four numbers and returns that.