Sha256: ebbeee9b1f70f89b8b6ffb7aa2b6a3415b90772ce9f926031d642646be9c50d0
Contents?: true
Size: 601 Bytes
Versions: 3
Compression:
Stored size: 601 Bytes
Contents
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package monkstone.noise; /** * * @author tux */ public enum NoiseMode { DEFAULT("Fast OpenSimplex2"), FAST_TERRAIN("Fast Terrain"), SMOOTH_TERRAIN("Smooth Terrain"), OPEN_SMOOTH("Smooth OpenSimplex2"); private final String description; NoiseMode(String description) { this.description = description; } public String description() { return description; } }
Version data entries
3 entries across 3 versions & 2 rubygems