Add Texture Size node to particles

This commit is contained in:
Wojtek Figat
2025-06-23 09:31:15 +02:00
parent 6479a3d3c6
commit 867ae2ceaa
3 changed files with 38 additions and 3 deletions

View File

@@ -162,6 +162,13 @@ void ParticleEmitterGraphCPUExecutor::ProcessGroupTextures(Box* box, Node* node,
value = Value::Zero;
break;
}
// Texture Size
case 24:
{
// TODO: support sampling textures in CPU particles
value = Value::Zero;
break;
}
default:
break;
}