List of usage examples for com.badlogic.gdx.utils IntArray removeValue
public boolean removeValue(int value)
From source file:com.kotcrab.vis.editor.proxy.EntityProxy.java
License:Apache License
public void removeGroup(int groupId) { IntArray groupIds = getGroupComponent().groupIds; if (groupIds.contains(groupId)) groupIds.removeValue(groupId); }