Home | History | Annotate | Download | only in material

Lines Matching defs:technique

153      * Adds a new technique definition to this material definition.
155 * If the technique name is "Default", it will be added
158 * @param technique The technique definition to add.
160 public void addTechniqueDef(TechniqueDef technique){
161 if (technique.getName().equals("Default")){
162 defaultTechs.add(technique);
164 techniques.put(technique.getName(), technique);
178 * Returns a technique definition with the given name.
182 * @param name The name of the technique definition to find
184 * @return The technique definition, or null if cannot be found.