'Unity'에 해당되는 글 185건
- 2022.01.15 함수 그래프 모음
- 2022.01.13 Decal Shader
- 2022.01.12 shader pixel broken
- 2022.01.10 유니티 쉐이더 밉맵
- 2022.01.07 유니티 Compute Shader
- 2021.12.29 랜덤 쉐이더
- 2021.12.25 유니티 페이스북 인증 2021
- 2021.12.18 유니티 조인트
2021. 12. 29. 23:34
Unity/shader
https://www.shadertoy.com/view/4djSRW
Shadertoy
www.shadertoy.com
더보기



hashOld12의 패턴
float hashOld12(float2 p)
{
return sin(dot(p, float2(100, 100)));
}

hash12의 패턴
float hash12(float2 p)
{
float3 p3 = sin(float3(p.xyx) );
p3 += dot(p3, p3.yzx );
return sin((p3.x + p3.y) * p3.z);
}
편향랜덤이라서 안 쓰는게 좋을듯
noise(floatM|halfM|min10floatM|min16floatM)
'Unity > shader' 카테고리의 다른 글
유니티 Compute Shader (0) | 2022.01.07 |
---|---|
유니티 코드없이 Invisible 사용하기 (마스크 거꾸로 사용) (0) | 2021.08.17 |
Depth 쉐이더 (0) | 2021.06.12 |
2021. 12. 18. 20:51
Unity
CharacterJoint
-Axis 0,1,0 기준
LowTwistLimit : pitchLimitLow
HighTwistLimit : pitchLimitHigh
Swing1Limit : yawLimit
Swing2Limit: rollLimit
'Unity' 카테고리의 다른 글
유니티 페이스북 인증 2021 (0) | 2021.12.25 |
---|---|
유니티 프로퍼티 드로워 (0) | 2021.12.16 |
디버그로그 음소거 (0) | 2021.12.13 |