update
This commit is contained in:
@@ -1,19 +1,19 @@
|
||||
import { _decorator, Component, Node, Label } from "cc";
|
||||
import DataManager from "../Global/DataManager";
|
||||
const { ccclass, property } = _decorator;
|
||||
import { _decorator, Component, Node, Label } from "cc"
|
||||
import DataManager from "../Global/DataManager"
|
||||
const { ccclass, property } = _decorator
|
||||
|
||||
@ccclass("PlayerManager")
|
||||
export class PlayerManager extends Component {
|
||||
init({ id, nickname, rid }: { id: number; nickname: string; rid: number }) {
|
||||
const label = this.getComponent(Label);
|
||||
let str = nickname;
|
||||
const label = this.getComponent(Label)
|
||||
let str = nickname
|
||||
if (DataManager.Instance.myPlayerId === id) {
|
||||
str += `(我)`;
|
||||
str += `(我)`
|
||||
}
|
||||
if (rid !== -1) {
|
||||
str += `(房间${rid})`;
|
||||
if (rid) {
|
||||
str += `(房间${rid})`
|
||||
}
|
||||
label.string = str;
|
||||
this.node.active = true;
|
||||
label.string = str
|
||||
this.node.active = true
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user