0.0.7 • Published 6 years ago

story3d v0.0.7

Weekly downloads
2
License
ISC
Repository
-
Last release
6 years ago

Story3D

A framework for creating interactive 3d stories with WebGL and Threejs.

Target use case

import { Story3D, SceneMethod, bootstrap, Hook } from "Story3D";


@Story3D()
export class App {
  constructor() {}
  
  @Hook("init")
  initialize() {
    // ...
  }
  
  @Hook("tick")
  tick() {
    // ...
  }

  @SceneMethod("something")
  doSomething() {
    // ...
  }

  @SceneMethod("somethingElse")
  doSomethingElse() {
    // ...
  }
}

bootstrap(App);

Rough TODOs:

  • Finish writing core classes
  • Setup build pipeline w/ rollup
  • Write tests
  • Write documentation
0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago