VRTexture constructor

VRTexture({
  1. String name = 'texture',
  2. TextureWrap wrapS = TextureWrap.repeat,
  3. TextureWrap wrapT = TextureWrap.repeat,
  4. TextureFilter filter = TextureFilter.linear,
  5. double repeatU = 1.0,
  6. double repeatV = 1.0,
})

Implementation

VRTexture({
  this.name = 'texture',
  this.wrapS = TextureWrap.repeat,
  this.wrapT = TextureWrap.repeat,
  this.filter = TextureFilter.linear,
  this.repeatU = 1.0,
  this.repeatV = 1.0,
});