Example usage for com.badlogic.gdx.utils IntArray removeValue

List of usage examples for com.badlogic.gdx.utils IntArray removeValue

Introduction

In this page you can find the example usage for com.badlogic.gdx.utils IntArray removeValue.

Prototype

public boolean removeValue(int value) 

Source Link

Usage

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);
}