From a9fe475d6f38f1921ad0c163b539e87344cce6e2 Mon Sep 17 00:00:00 2001 From: Nathan Bierema Date: Sun, 19 Jan 2025 17:58:49 -0500 Subject: [PATCH] Docs: Improve Texture page. --- types/three/src/textures/Texture.d.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/types/three/src/textures/Texture.d.ts b/types/three/src/textures/Texture.d.ts index a8d7460ca..60b03f3db 100644 --- a/types/three/src/textures/Texture.d.ts +++ b/types/three/src/textures/Texture.d.ts @@ -455,11 +455,8 @@ export class Texture extends EventDispatcher<{ dispose: {} }> { updateMatrix(): void; /** - * Make copy of the texture - * @remarks Note this is not a **"deep copy"**, the image is shared - * @remarks - * Besides, cloning a texture does not automatically mark it for a texture upload - * You have to set {@link needsUpdate | .needsUpdate} to `true` as soon as it's image property (the data source) is fully loaded or ready. + * Make copy of the texture. Note this is not a "deep copy", the image is shared. Cloning the texture automatically + * marks it for texture upload. */ clone(): this;