mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-29 16:25:42 +00:00
Merge pull request #1663 from Azaezel/rainleak
corrects corruption in precipitation class
This commit is contained in:
commit
679d94d170
5 changed files with 9 additions and 7 deletions
|
|
@ -29,7 +29,7 @@
|
|||
struct Conn
|
||||
{
|
||||
float4 position : TORQUE_POSITION;
|
||||
float4 texCoord : TEXCOORD0;
|
||||
float2 texCoord : TEXCOORD0;
|
||||
float4 color : COLOR0;
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -32,13 +32,14 @@
|
|||
struct Vert
|
||||
{
|
||||
float3 position : POSITION;
|
||||
float4 texCoord : TEXCOORD0;
|
||||
float2 texCoord : TEXCOORD0;
|
||||
float4 color : COLOR0;
|
||||
};
|
||||
|
||||
struct Conn
|
||||
{
|
||||
float4 position : TORQUE_POSITION;
|
||||
float4 texCoord : TEXCOORD0;
|
||||
float2 texCoord : TEXCOORD0;
|
||||
float4 color : COLOR0;
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
struct Conn
|
||||
{
|
||||
float4 position : TORQUE_POSITION;
|
||||
float4 texCoord : TEXCOORD0;
|
||||
float2 texCoord : TEXCOORD0;
|
||||
float4 color : COLOR0;
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -32,13 +32,14 @@
|
|||
struct Vert
|
||||
{
|
||||
float3 position : POSITION;
|
||||
float4 texCoord : TEXCOORD0;
|
||||
float2 texCoord : TEXCOORD0;
|
||||
float4 color : COLOR0;
|
||||
};
|
||||
|
||||
struct Conn
|
||||
{
|
||||
float4 position : TORQUE_POSITION;
|
||||
float4 texCoord : TEXCOORD0;
|
||||
float2 texCoord : TEXCOORD0;
|
||||
float4 color : COLOR0;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue