Skip to content
This repository has been archived by the owner on May 10, 2020. It is now read-only.

Latest commit

 

History

History
39 lines (25 loc) · 717 Bytes

README.md

File metadata and controls

39 lines (25 loc) · 717 Bytes

Vi-sense Frontend

Usage

Import Models

Download the the /gltf folder from vi-sense/sample-data repository and add it to /public directory.

Installation

$ npm install 

Development

$ npm run start

Build as a JavaScript Module wich will be importet and used in the Vi-sense SPA

$ npm run build 

Some notes and conventions for programming

export class App {

    #someVariableName;

    constructor() { ... }
}

#someVariableName is a private member variable. The # can also be used to declare a private function.

All static files (images, models, ...) belong to /public. When loading you need to use the absolute path without /public prefix.