texture.vwf.yaml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. # Copyright 2012 United States Government, as represented by the Secretary of Defense, Under
  2. # Secretary of Defense (Personnel & Readiness).
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
  5. # in compliance with the License. You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software distributed under the License
  10. # is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
  11. # or implied. See the License for the specific language governing permissions and limitations under
  12. # the License.
  13. ## The component representation of a material
  14. ##
  15. ## @name material.vwf
  16. ## @namespace
  17. ---
  18. extends: http://vwf.example.com/node.vwf
  19. properties:
  20. ## Texture's url
  21. ##
  22. ## @name material.vwf#url
  23. ## @property
  24. url:
  25. set: |
  26. this.url = value;
  27. ## Texture's wrapT
  28. ##
  29. ## @name material.vwf#wrapT
  30. ## @property
  31. wrapT:
  32. set: |
  33. this.wrapT = value;
  34. ## Texture's wrapS
  35. ##
  36. ## @name material.vwf#wrapS
  37. ## @property
  38. wrapS:
  39. set: |
  40. this.wrapS = value;
  41. ## Texture's repeat
  42. ##
  43. ## @name material.vwf#repeat
  44. ## @property
  45. repeat:
  46. set: |
  47. this.repeat = value;
  48. ## Texture's offset
  49. ##
  50. ## @name material.vwf#offset
  51. ## @property
  52. offset:
  53. set: |
  54. this.offset = value;
  55. ## Texture's magFilter
  56. ##
  57. ## @name material.vwf#magFilter
  58. ## @property
  59. magFilter:
  60. set: |
  61. this.magFilter = value;
  62. ## Texture's minFilter
  63. ##
  64. ## @name material.vwf#minFilter
  65. ## @property
  66. minFilter:
  67. set: |
  68. this.minFilter = value;
  69. ## Texture's anisotropy
  70. ##
  71. ## @name material.vwf#anisotropy
  72. ## @property
  73. anisotropy:
  74. set: |
  75. this.anisotropy = value;