You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
solution: thêm id cho method (có thể xài current class name, example
class Mob extends Schema {
@Server({skipSync: true})
onCollisionEnter() {
// bla bla
}
}
// -> method id sẽ là "Mob"
class Spider extends Mob {
@Server()
onCollisionEnter() {
// bla bla
}
}
// -> method id sẽ là "Backpack"
khoakomlem
changed the title
Có thể có lỗi nếu như hàm @Server sử dụng super.[@Server] khác (copy)
Có thể có lỗi nếu như hàm @Server sử dụng super.[@Server] khác
Jun 11, 2024
solution: thêm id cho method (có thể xài current class name, example
method ID: để tìm method (phân biệt parent + child method)
schema ID: để tìm holder (context)
-> getMethodById giờ sẽ trả new Map thay vì Method như trước
problems arise:
Note:
The text was updated successfully, but these errors were encountered: