1
0
Fork 0

[client] Land on a default plane when first connecting

This commit is contained in:
Starbeamrainbowlabs 2017-04-23 17:40:41 +01:00
parent ffd2b32abb
commit 27390a33b8
1 changed files with 7 additions and 0 deletions

View File

@ -261,6 +261,13 @@ class BoardWindow extends EventEmitter
// The pencil that draws the lines
this.pencil = new Pencil(this.rippleLink, this, this.canvas);
// Land on a default plane
// future ask the user which plane they want to join
this.rippleLink.send({
"Event": "PlaneChange",
"NewPlaneName": "default-plane"
});
}
/**