You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.
Since the local mode was taken into effect, we had discovered some problem of ncli(@newcar/cli), and after 2.0, it runs with a wrong way, so it needs some fixes and refactor
Bugs you need to face
If you try to create a long video (under the common condition, it's greater that 200frames), it will throw a wired error.
Now it has a dangerous bug: no matter what js file you input, it always output a video that duration is 0, so it cannot be used now.
We need a person to refactor it.
If you are interested in it, please comment under this issue.
The text was updated successfully, but these errors were encountered:
I think the dangerous bug is easy to fix.You just need to add a token line at the top of the local mode JS file, and check the token line before outputting the video.
For example, the source file is:
// Initialization and import are omittedconstapp=engine.createLocalApp(1600/* width of the canvas */,900/* height of the canvas */)// The rest is omitted, remember, there is no `play` method in local mode
but now there is:
@localMode// Initialization and import are omittedconstapp=engine.createLocalApp(1600/* width of the canvas */,900/* height of the canvas */)// The rest is omitted, remember, there is no `play` method in local mode
Description
Since the local mode was taken into effect, we had discovered some problem of ncli(
@newcar/cli
), and after 2.0, it runs with a wrong way, so it needs some fixes and refactorBugs you need to face
We need a person to refactor it.
If you are interested in it, please comment under this issue.
The text was updated successfully, but these errors were encountered: