This bug probably also exists in UWP version, line 220.
Posts by Phi
Welcome to our brand new Clickteam Community Hub! We hope you will enjoy using the new features, which we will be further expanding in the coming months.
A few features including Passport are unavailable initially whilst we monitor stability of the new platform, we hope to bring these online very soon. Small issues will crop up following the import from our old system, including some message formatting, translation accuracy and other things.
Thank you for your patience whilst we've worked on this and we look forward to more exciting community developments soon!
Clickteam.
A few features including Passport are unavailable initially whilst we monitor stability of the new platform, we hope to bring these online very soon. Small issues will crop up following the import from our old system, including some message formatting, translation accuracy and other things.
Thank you for your patience whilst we've worked on this and we look forward to more exciting community developments soon!
Clickteam.
-
-
That's Discord's newer Game Overlay. Look in Discord settings under Activity Settings > Game Overlay and you can turn it off for Fusion, or globally.
-
From memory it only had ARMv5 cURL, which would be compatible with older ARM phones, but not newer ARM64. Not 100% sure if I have the recent version.
-
You should turn on Reposition Object at End, and use Movement > Path Movements > Branch Node "".
-
JSON++ object can create JSONs, yup.
-
Active Direct Show, or FFmpeg object by defisym.
For best compatibility, use video codec H264/AVC, the best audio is AAC (AAC-LC), and container MP4, with faststart flag.
To convert a video to that, you want a CMD like
"path to ffmpeg.exe" -i "input file path" -c:v libx264 -c:a aac -preset veryslow -movflags +faststart "output file path"
and you can get ffmpeg from Please login to see this link., download the Windows zip near the top, and look in the bin folder.
-
Obvious question, have you checked this app property?
Please login to see this attachment.
-
Use Effect > Set effect parameter action.
Please login to see this attachment.
The parameter name is from the object properties under Display tab.
-
Thank you, but I think what phi says is better optimized.
My methods aren't necessarily the best, they're just the simplest to comprehend. Optimization comes as a last resort once product specs are fully lined up with practice - plans alone often isn't enough.
For example, another method is a big string with # between them, you use string tokenizer to split the string then return a random element number. It's not efficient, but it might be better than a list, but not more readable.
Use the most efficient method you understand fully, and expand what methods you don't know; if you don't understand something, leaving it unknown is an unusable tool in your toolbox.
Later, if your app has performance issues, you can run the CF2.5+ profiler or whatever else to cut things down. Run speed is important, but the amount of timer the coder takes to develop it is important too. You want the least amount of code running at once, but not at the cost of create/edit comprehension or edit difficulty.
-
Yea, they did take on new people just for that team a few years ago. And realistically, Fusion 2 isn't a viable product line to keep the company alive, as you'll see from all the side ventures they're doing while they develop 3.
-
Yep, still in development. They are pretty silent on what is in its development, some part was restarted, but ultimately all continuing as expected. There's no estimated release date given.
-
We can probably fix these errors in the next update, most of them can be fixed by re-ordering source code. We'll try.
If you do update HTML5 to fix this, can you also change the ACT_XX classes so their prototypes can be altered? Right now they're basically anonymous classes, which makes extending them (like DarkEdif SDK wrappers) something that has to be reapplied constantly.
-
It complains too much about non-commented runtime stuff if you update it.
-
Use Create by Name action, and read a random line from a list object that has all the object names that are possibilities.
-
Unrelated to ext, but see attached MFA.
-
Speak to Naitor on the Please login to see this link. to see about porting it - best if you learn how to do it yourself if you're gonna be making shaders
CT Discord is recently opened up so you won't need the bot approval first
-
You're thinking of the Microtimer extension. I think it comes with volProfiler. Volnaiskra should know about it.
-
You can, you'll need to increase the frame rate. See the Please login to see this link. in Bluewing tips. I think several people on the Please login to see this link. have done delta time, and now the Discord is open access.
-
Psychotic breaks, always a wild ride
don't do drugs, kids
-
Full pathname. So if you embed D:\MyFile\Something.ini, you pass that path in INI.
However, since it's an embedded path it may not be modifiable. So you'll want to copy it to a path that can be modified, like the folder expressions in Android Object. You may want to write any paths to a visible string you can read to check there are slashes where expected.