OnPlayerExitColShape
This event is triggered when a player exits a colshape.
- shape: parameter input should be in ColShape type
- player: parameter input should be in Player type
{{#tag:syntaxhighlight| [ServerEvent(Event.PlayerExitColshape)] public void OnPlayerExitColshape(ColShape shape, Player player) {
player.SendChatMessage($"You exited \{shape.id\}.");
} |lang=csharp}} }}