Navigation

    Colyseus
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Users
    1. Home
    2. karneaud
    karneaud

    karneaud

    @karneaud

    Chat Follow Unfollow
    0
    Reputation
    3
    Posts
    898
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    • Profile
    • More
      • Continue chat with karneaud
      • Flag Profile
      • Following
      • Followers
      • Topics
      • Posts
      • Best
      • Groups
    karneaud Follow

    Posts made by karneaud

    Files Synced. ⚠️ Deployment Restart Failed

    Just tried to redeploy/ restart my game server and got the subject error ....is this a bug in my code or an Arena malfunction?

    posted in Colyseus Arena - Cloud Hosting •
    Listeners triggered even though listening to different state properties

    I have the following logic client side

    room.listen('pullPosition/:position', (change) => {
        console.log('position', change);
        if(ready && !state.isHoldEnabled) state.setPosition(change.value)
      })
    
      room.listen('pullPosition/:hold', (change) => {
        console.log('hold', change);
      })
    

    I'm experiencing and issue where if pullPosition/:position changes BOTH listeners are triggered despite not listening to the same property.... Is this how its suppose to happen by design?

    posted in Questions & Help •
    On locked event

    Is there an locked unlocked event we can listen to or is it I need to implement my own triggers for when room is full/ maxClient reached?

    posted in Questions & Help •