TA159

Notas, resueltos y trabajos practicos de la materia Sistemas Gráficos
Index Commits Files Refs Submodules README LICENSE
castle-scene/README.md (482B)
   1 # Castle Scene made with Three.js
   2 
   3 ![14-02-00_14-03-2024_scrot](https://github.com/mjkloeckner/castle-scene/assets/64109770/e4a1e2c3-3ff7-4ee7-9fb3-72574cd1e482)
   4 
   5 ## Quick Start
   6 
   7 Install node modules
   8 
   9 ```console
  10 $ npm i
  11 ```
  12 
  13 Create local web server on current directory with `vite`
  14 
  15 ```console
  16 $ vite
  17 ```
  18 
  19 Then go to the URL provided by `vite`
  20 
  21 > If you don't have `vite` installed you can install it system-wide with the
  22 > following command
  23 > 
  24 > ```console
  25 > # npm -g i vite
  26 > ```