Example usage for com.badlogic.gdx.graphics Color rgba8888

List of usage examples for com.badlogic.gdx.graphics Color rgba8888

Introduction

In this page you can find the example usage for com.badlogic.gdx.graphics Color rgba8888.

Prototype

public static int rgba8888(Color color) 

Source Link

Usage

From source file:com.kotcrab.vis.editor.serializer.ColorSerializer.java

License:Apache License

@Override
public void write(Kryo kryo, Output output, Color color) {
    output.writeInt(Color.rgba8888(color));
}