1mrpaul1's Recent Forum Activity

  • You do need to use right types of AI, ChatGPT, copilot, gemeny are useless

    Our models are Claude, and HTML5 code on poe.com

    They knows Construct 3 well, but you still need to ask them right

  • Maybe the value is stored as string in the array? You can test this by printing Stats.AsJSON to console log. If the value is shown as "1.3", then it's a string.

    Yes, it is a string, but I'm wonder why I didn't experienced this situation before, in previous years

    Anyhow, I will always use float() now, to avoid this situations

  • Ok, I can use float() to convert this array value into a number, and the calculation becomes right

    but the strange thing, in another block Stats.at(Hardness,1) this value working as expected without float or anything

    as for me, it is not right when this basic things working different in the different places

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • It's not a bug, this is how strings are concatenated. Add round brackets:

    ... & "/" & (25*Stats.at(Hardness,1))

    added, nothing changed

    also, we can't use int in this case, because 1.3 will be rounded to 1, is it always like this? I never had such a problems

  • doing this code

    where Stats.At(Hardness,1) equal to 1.3

    which is shown in the print console

    but the result as you can see is equal to 25 instead of 32.5 which is right value of 25 * 1.3

    is it bug or feature of construct?

  • I did a code that converts google sheets into construct 3 JSON string

    You just need to copy/paste this code inside the new apps script, press RUN button and json string will be ready

    function convertToJSON() {
     var spreadsheet = SpreadsheetApp.getActiveSpreadsheet();
     var sheet = spreadsheet.getActiveSheet();
    
     var data = sheet.getDataRange().getValues();
     var jsonData = {
     "\"c2array\"": true,
     "\"size\"": [data.length, data[0].length, 1],
     "\"data\"": [] 
     };
    
     for (var i = 0; i < data.length; i++) {
     var row = [];
     for (var j = 0; j < data[i].length; j++) {
     if (typeof data[i][j] === 'string') {
     row.push(['"' + String(data[i][j]).replace(/"/g, '""') + '"']); 
     } else {
     row.push([data[i][j]]); 
     }
     }
     jsonData["\"data\""].push(row); 
     }
    
     var jsonString = JSON.stringify(jsonData);
     jsonString = jsonString.replace(/\\/g, ''); 
     console.log('"'+jsonString+'"'); 
    
    }

    Enjoy

  • I got a weird bug when font size in one code tab is much smaller than a font in all other

    Starts with the last update probably

  • No ideas?

  • I want to draw on the mask, just white brush and just on one layer, and delete to alpha.

    How?

    I saw tutorials for drawing by points, on the canvas, but I need freehand brush tool

  • really, how? when select the camera, you can't change any parameters

  • plugin dosnt work with the last version of the construct (408)

    Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'bindBuffer')

    at Object3DInstance.Tick (instance.js:240:25)

    at Array._tickFunc (sdkInstanceBase.js:8:200)

    at EventHandler._FireAsGenerator (handler.js:10:399)

    at _FireAsGenerator.next (<anonymous>)

    at C3Runtime.DebugIterateAndBreak (runtime.js:142:131)

    at C3Runtime.DebugFireGeneratorEventAndBreak (runtime.js:142:247)

    at C3Runtime.Step_AfterPreTick (runtime.js:94:144)

    at async C3Runtime.Tick (runtime.js:89:435)

    Tick instance.js:240

    _tickFunc sdkInstanceBase.js:8

    _FireAsGenerator handler.js:10

    DebugIterateAndBreak runtime.js:142

    DebugFireGeneratorEventAndBreak runtime.js:142

    Step_AfterPreTick runtime.js:94

    await in Step_AfterPreTick

    SetSuspended runtime.js:84

    _OnVisibilityChange runtime.js:80

    (anonymous) runtime.js:12

    _OnEventFromDOM runtime.js:19

    _OnMessageFromDOM runtime.js:16

    C3Runtime._messagePort.onmessage runtime.js:12

  • Here is my guess:

    Your C3 shortcut is linked to a specific version, so it keeps going back to old version when you close it. This probably breaks offline mode too because I am guessing C3 only stores the last version of C3 that you were using (meaning that it updates to latest version, prepares offline mode for latest version, close C3, turn off Internet, open C3, it tries to open old version that isn't ready for offline mode).

    Check the shortcut, I assume you want beta every time so you would have the shortcut be editor.construct.net/beta

    Then, once you have done this, open C3 again, make sure you are logged in to C3, and wait for the notification at bottom-left that tells you that offline mode is now ready.

    Then you can test it out, close C3, turn off Internet, open C3, and it should work.

    Sometimes it works normally, you just open the app and it works, sometimes, it loads wrong. probably, and while I see that the app is downloaded and ready for online, in practice, it is not. on the video btw, I had "downloaded" message, but as you can see on the video, it is not downloaded

1mrpaul1's avatar

1mrpaul1

Member since 21 Feb, 2018

Twitter
1mrpaul1 has 6 followers

Trophy Case

  • 7-Year Club
  • Forum Contributor Made 100 posts in the forums
  • Regular Visitor Visited Construct.net 7 days in a row
  • Steady Visitor Visited Construct.net 30 days in a row
  • RTFM Read the fabulous manual
  • x3
    Quick Draw First 5 people to up-vote a new Construct 3 release
  • Email Verified

Progress

13/44
How to earn trophies