VRTexture constructor

VRTexture({
  1. String name = 'texture',
  2. TextureWrap wrapS = TextureWrap.repeat,
  3. TextureWrap wrapT = TextureWrap.repeat,
  4. TextureFilter filter = TextureFilter.linear,
})

Implementation

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