Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - jviloria

Pages: [1]
1
Other Packages / Re: Tasharen Water
« on: July 16, 2014, 06:41:19 PM »
I was receiving this error:
Shader error in 'Tasharen/Water': 'tex2Dproj': no matching 2 parameter intrinsic function; Possible intrinsic functions are: tex2Dproj(sampler2D, float4|half4|min10float4|min16float4) at line 131

So i fixed the problem by editing the shader in the line 130:

Before:
half3 projTC = UNITY_PROJ_COORD(IN.proj0);

After:
half4 projTC = UNITY_PROJ_COORD(IN.proj0);

2
Other Packages / Re: Tasharen Water
« on: July 16, 2014, 04:25:09 PM »
Greetings, i just upgraded Unity to version 4.5.2f1 (Pro) and now the water is pink. I tried reimporting from the asset store, but i still get the problem.

Is there another way to fix the problem? Is the current version of Unity having issues with the asset?

Pages: [1]