From be6aebf66501f0dc30b8f019682a9dec8c03b9e4 Mon Sep 17 00:00:00 2001 From: Mat Groves Date: Tue, 20 Feb 2024 16:07:15 +0000 Subject: [PATCH] typo --- docs/guides/migrations/v8.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/migrations/v8.md b/docs/guides/migrations/v8.md index 7cf276f9d..2ad2cd8d9 100644 --- a/docs/guides/migrations/v8.md +++ b/docs/guides/migrations/v8.md @@ -287,7 +287,7 @@ const graphics2 = new Graphics() - Mipmap generation changes - The BaseTexture `mipmap` property has been renamed to `autoGenerateMipmaps`. - - Mipmaps for render textures have been adjusted so that developer is responsible for updating them mipmaps. Mipmap generation can be expensive, and due to the new reactive way we handle textures we do not want to accidentally generate mipmaps when they are not required. + - Mipmaps for `RenderTextures` have been adjusted so that developer is responsible for updating them mipmaps. Mipmap generation can be expensive, and due to the new reactive way we handle textures we do not want to accidentally generate mipmaps when they are not required. ```ts const myRenderTexture = RenderTexture.create({width:100, height:100, autoGenerateMipmaps:true})