Package kr.toxicity.hud.api.manager
Class ShaderManager.ShaderTag
java.lang.Object
kr.toxicity.hud.api.manager.ShaderManager.ShaderTag
- Enclosing interface:
ShaderManager
Shader tag.
-
Method Summary
Modifier and TypeMethodDescription@NotNull ShaderManager.ShaderTagAdds to tag newTag() .add("GenerateOtherMainMethod", Collections.emptyList()) .add("OtherYouWant", someList);Gets a list from name@NotNull ShaderManager.ShaderTagplus(@NotNull ShaderManager.ShaderTag tag) Sums two different tags to new one.
-
Method Details
-
add
@NotNull public @NotNull ShaderManager.ShaderTag add(@NotNull @NotNull String tag, @NotNull @NotNull List<String> line) Adds to tag newTag() .add("GenerateOtherMainMethod", Collections.emptyList()) .add("OtherYouWant", someList);- Parameters:
tag- tag nameline- tag list- Returns:
- self
-
plus
@NotNull public @NotNull ShaderManager.ShaderTag plus(@NotNull @NotNull ShaderManager.ShaderTag tag) Sums two different tags to new one.- Parameters:
tag- another tag- Returns:
- new merged tag
-
get
Gets a list from name- Parameters:
tagName- name- Returns:
- tag list or null
-