playcanvas / engine

JavaScript game engine built on WebGL, WebGPU, WebXR and glTF
https://playcanvas.com
MIT License
9.37k stars 1.32k forks source link

Examples Rework #6030

Open kpal81xd opened 5 months ago

kpal81xd commented 5 months ago

This issue is for the discussion of reworking the examples to make the development and experimentation experience easier. Stage 1 of the refactor and cleanup has already been completed and merged in #6005.

Stage 1

Stage 2

Stage 3

mvaligursky commented 5 months ago
  • Abstract app configuration into separate file (boilerplate code)

This was considered during last refactoring, but at the end keeping all / as much code required to run the example in the same file was decided is a good way to show people what needs to be done to get an app running, as examples are in a way tutorials too. Kind of self contained examples, similar to a completely self-contained html files examples used to be a long time ago.

mvaligursky commented 5 months ago

Love the idea of imports, and would appreciate some more details on what you're hoping to do this, what the end goal is.

Few other points could do with more information as well to make it more clear what the goal here is.

marklundin commented 5 months ago

It would be great if we can remove the direct dependancy on the node_modules of the engine, and just symlink it directly using npm workspace which doesn't require building the parent engine first

mvaligursky commented 5 months ago

The examples no longer need to build the engine first. Just npm run develop in the examples, that builds the engine it needs.

marklundin commented 5 months ago

But npm run build in example doesn't work unless you build the engine first.

kungfooman commented 5 months ago

IIRC the only missing thing is the engine playcanvas.d.ts generation for Monaco examples editor to make /examples/ fully standalone, which would be nice to add here too

Maksims commented 5 months ago

Currently the example code, shows the core of the example stuff, but at the same time, it is not easily replicable from the scratch. Maybe it is not related to examples, but amount of build processes, the wrapping, lack of debugging and proper error handling - all this moves away from users being able to take an example, and expand from it.

In contrast, three.js example - is a html file, with everything in it, you can just take it and experiment with it, without need of complex build processes, understanding of project structure, etc.

willeastcott commented 5 months ago

The PCUI examples browser is like that:

https://github.com/playcanvas/pcui/tree/main/examples

kungfooman commented 5 months ago

I just wanted to update my RTI pull request and running into regressions:

Examples README.md needs a little change:

https://github.com/playcanvas/engine/blob/d8072265a79b57f9e773eea400140de555476f9f/examples/README.md?plain=1#L24-L28

(build/playcanvas.mjs is now our bundled file)

kpal81xd commented 5 months ago

I just wanted to update my RTI pull request and running into regressions:

  • ENGINE_PATH doesn't seem to work any longer
  • Loading an UMD build doesn't seem to work any longer
  • Edits in examples/scripts/standalone-html.mjs are not reflected during a npm run develop session

Examples README.md needs a little change:

https://github.com/playcanvas/engine/blob/d8072265a79b57f9e773eea400140de555476f9f/examples/README.md?plain=1#L24-L28

(build/playcanvas.mjs is now our bundled file)

kungfooman commented 5 months ago
  • ENGINE_PATH seems to work fine for me so long as its a ESM build of the engine (UMD is not supported anymore)

Thank you for the feedback @kpal81xd! I still can't get it to work on my machine, can you test this?

cd examples
npm run clean
ENGINE_PATH=../build/playcanvas.mjs npm run build

Then I get this error:

image

marklundin commented 5 months ago

Not sure if it has any effect @kungfooman @kpal81xd, but would the new ESM build have changed this? Previously ../build/playcanvas.mjs was a directory and now it's the bundled version?

Unrelated (more out of curiosity) but can ENGINE_PATH now point directly to src?

kungfooman commented 5 months ago

I don't think it's related to the bundle/dir rewrite, it should still work (I edited ENGINE_PATH using [TAB]-completion to make sure the path is right)

Unrelated (more out of curiosity) but can ENGINE_PATH now point directly to src?

(that worked through my refactor to cut down on build time for quick/explorative coding, unsure about current situation because of the error I get)

kungfooman commented 5 months ago

Standalone example path's also seem to be broken, repro:

image

It used to work: https://pc.runtimetypeinspector.org/iframe/Graphics_LightsBakedAO.html

kpal81xd commented 5 months ago
  • ENGINE_PATH seems to work fine for me so long as its a ESM build of the engine (UMD is not supported anymore)

Thank you for the feedback @kpal81xd! I still can't get it to work on my machine, can you test this?

cd examples
npm run clean
ENGINE_PATH=../build/playcanvas.mjs npm run build

Then I get this error:

image

Ahh I see so ENGINE_PATH expected an unpacked version of the engine (i.e. a folder) with the entry point being index.js. I should be able to support both these however in the build script