Skip to content

Instantly share code, notes, and snippets.

@superswanman
Created April 22, 2022 12:27
Show Gist options
  • Save superswanman/0a642997f190550dba7b5005ece4f9db to your computer and use it in GitHub Desktop.
Save superswanman/0a642997f190550dba7b5005ece4f9db to your computer and use it in GitHub Desktop.
if (sampler != null)
{
TextureSamplerUtil.SetSampler(Texture, sampler);
importer.wrapMode = Texture.wrapMode;
importer.wrapModeU = Texture.wrapModeU;
importer.wrapModeV = Texture.wrapModeV;
importer.wrapModeW = Texture.wrapModeW;
importer.filterMode = Texture.filterMode;
importer.SaveAndReimport();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment