mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-21 01:59:51 +08:00
8a7077dc04
* add docs for tower * fix: LEAK: ByteBuf.release() was not called * enableScriptInBigWorld * not print log when loaded scripts from cache * revert the change of server tick * revert the change of server tick * fix * optimize the performance: lazy load & cache * fix the refresh group * fix NPE Co-authored-by: Melledy <52122272+Melledy@users.noreply.github.com>
16 lines
269 B
Java
16 lines
269 B
Java
package emu.grasscutter.scripts.data;
|
|
|
|
import emu.grasscutter.utils.Position;
|
|
|
|
public class SceneObject {
|
|
public int level;
|
|
public int config_id;
|
|
|
|
public Position pos;
|
|
public Position rot;
|
|
/**
|
|
* not set by lua
|
|
*/
|
|
public int groupId;
|
|
}
|