|
@@ -35,8 +35,7 @@ export class RotateService {
|
|
Rotation: 1014,
|
|
Rotation: 1014,
|
|
Joystick: 15,
|
|
Joystick: 15,
|
|
};
|
|
};
|
|
- // private users = ShareData.users;
|
|
|
|
- // private replys = ShareData.replys;
|
|
|
|
|
|
+
|
|
public users = {};
|
|
public users = {};
|
|
private replys = {};
|
|
private replys = {};
|
|
private firstPoint = {
|
|
private firstPoint = {
|
|
@@ -485,8 +484,9 @@ export class RotateService {
|
|
code: 0,
|
|
code: 0,
|
|
msg: '',
|
|
msg: '',
|
|
};
|
|
};
|
|
-
|
|
|
|
|
|
+
|
|
const userIds = Object.keys(this.users);
|
|
const userIds = Object.keys(this.users);
|
|
|
|
+ console.log('getNewUserStateRequest'+userIds);
|
|
for (let i = 0; i < userIds.length; ++i) {
|
|
for (let i = 0; i < userIds.length; ++i) {
|
|
const _user = this.users[userIds[i]];
|
|
const _user = this.users[userIds[i]];
|
|
const newUserState = {
|
|
const newUserState = {
|