aboutsummaryrefslogtreecommitdiff
path: root/engine/src/blender/com/jme3/asset/GeneratedTextureKey.java
blob: 70f9f9ef9cd1d4e614dd2db9ab0880987a8f2f4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.jme3.asset;


/**
 * This key is mostly used to distinguish between textures that are loaded from
 * the given assets and those being generated automatically. Every generated
 * texture will have this kind of key attached.
 * 
 * @author Marcin Roguski (Kaelthas)
 */
public class GeneratedTextureKey extends TextureKey {
	/**
	 * Constructor. Stores the name. Extension and folder name are empty
	 * strings.
	 * 
	 * @param name
	 *            the name of the texture
	 */
	public GeneratedTextureKey(String name) {
		super(name);
	}

	@Override
	public String getExtension() {
		return "";
	}

	@Override
	public String getFolder() {
		return "";
	}

	@Override
	public String toString() {
		return "Generated texture [" + name + "]";
	}
}