mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
Textures are now repeated with mirroring.
This commit is contained in:
parent
46eb7cfdd0
commit
60dcbae9b4
@ -1,11 +1,12 @@
|
|||||||
import { Xvm, XvmTexture } from "../data_formats/parsing/ninja/texture";
|
|
||||||
import {
|
import {
|
||||||
Texture,
|
|
||||||
LinearFilter,
|
|
||||||
RGBA_S3TC_DXT3_Format,
|
|
||||||
RGBA_S3TC_DXT1_Format,
|
|
||||||
CompressedTexture,
|
CompressedTexture,
|
||||||
|
LinearFilter,
|
||||||
|
MirroredRepeatWrapping,
|
||||||
|
RGBA_S3TC_DXT1_Format,
|
||||||
|
RGBA_S3TC_DXT3_Format,
|
||||||
|
Texture,
|
||||||
} from "three";
|
} from "three";
|
||||||
|
import { Xvm, XvmTexture } from "../data_formats/parsing/ninja/texture";
|
||||||
|
|
||||||
export function xvm_to_textures(xvm: Xvm): Texture[] {
|
export function xvm_to_textures(xvm: Xvm): Texture[] {
|
||||||
return xvm.textures.map(xvm_texture_to_texture);
|
return xvm.textures.map(xvm_texture_to_texture);
|
||||||
@ -40,6 +41,8 @@ export function xvm_texture_to_texture(tex: XvmTexture): Texture {
|
|||||||
}
|
}
|
||||||
|
|
||||||
texture_3js.minFilter = LinearFilter;
|
texture_3js.minFilter = LinearFilter;
|
||||||
|
texture_3js.wrapS = MirroredRepeatWrapping;
|
||||||
|
texture_3js.wrapT = MirroredRepeatWrapping;
|
||||||
texture_3js.needsUpdate = true;
|
texture_3js.needsUpdate = true;
|
||||||
|
|
||||||
return texture_3js;
|
return texture_3js;
|
||||||
|
Loading…
Reference in New Issue
Block a user