Simple paint module to draw on canvas with p5.js
Try it out, just open the terminal and type "paint"
- Draw on canvas with p5.js
- Move to your client folder, then
# Install this module with Npm npm install https://github.com/hacklover/owd-app-paint # Or using Yarn yarn add https://github.com/hacklover/owd-app-paint
- Define this module in
owd-client/client.extensions.ts
import AboutModule from "@owd-client/core/src/modules/app/about"; import DebugModule from "@owd-client/core/src/modules/app/debug"; import PaintModule from "owd-app-paint/client"; export default { app: { modules: [ AboutModule, DebugModule, PaintModule, ] }, ...
- Add this to
owd-client/vite.config.ts
optimizeDeps: { include: ['p5'] }
- p5
- Open Web Desktop client v2.0.0-beta.1
This project is released under the MIT License