Skip to content

Releases: zlatnaspirala/visual-ts-game-engine

Visual-Ts Lake of fire [0.6.22]

02 Apr 12:35
Compare
Choose a tag to compare

Lake of fire 0.6.22

visualTS

Server config changes:

Added free service mongodb.net ->

     // enum : 'dev', 'prod', `mongodb.net` or `mongodb.net-dev`
     this.serverMode = "mongodb.net-dev";

Setup dev when you wanna run all it in localhost.
Setup mongodb.net when you use public production server but you wanna use mongodb.net
Setup prod When you use your own mongod on your public production server.
Setup mongodb.net-dev if you wanna use localhost env but you wanna use mongodb.net free service.

This is fix for always pain switching between different env's.

this.databaseRoot = {
  dev: "mongodb://localhost:27017" ,
  prod: "mongodb://userAdmin:*************@localhost:27017/admin",
  freeService: "mongodb+srv://userAdmin:**********@cluster0.piqav.mongodb.net/masterdatabase?retryWrites=true&w=majority"
};

New features

0.6.21 -> Added record-canvas npm module, game play can be recorded to the mp4 format and with no action download after rec interval ends. 
0.6.20 -> Added Sound:On/Off feature 
0.6.19 -> Adding Sound class to the ioc controller, help for generate self-singed cert
0.6.18 -> Added free service mongodb.net new optimal option for choosing database
0.6.16 -> added background audio and jump effect for single player 
0.6.15 -> UPDATE Broadcaster , added webcam access local without networking hot fix . Added local-stream-loaded dispatch event trigger.
etc...

Facebook addson & published on FB apps

10 Feb 22:41
Compare
Choose a tag to compare

Platformer single player solution

version 0.3.4

Published on apps facebook

http://apps.facebook.com/nidzica

[0.3.1]

06 Jan 21:03
Compare
Choose a tag to compare

New features :

  • Run multi entry compile:
    "dev-all": "webpack --config webpack.config.multicompile.js",

Point of Multi entries is to make independent healthy builds end point
for our application. Current export's for 2 solutions looks like
(runs webpack.multicompile.config.js) :

Command:

  npm run dev-all

Output:

├── build/  (This is auto generated)
|   ├── multiplayer/
|   ├── singleplaye/

  • Load auto generated maps from python3 tool creator-2dmap

  • New folder for ioc.ts files named controllers/ .
    Helps to build clear end point of project code.

  • Add single player application instance like option (resource independent - no shared assets) .

  • Remove npm from dependency to devDependency.