This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Shader "AR Proxy" | |
{ | |
Properties | |
{ | |
} | |
SubShader | |
{ | |
Tags | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Shader "GridGames/GlassShader" | |
{ | |
Properties { | |
_MainTex ("Base (RGB) Trans (A)", 2D) = "white" {} | |
_Colour ("Colour", Color) = (1,1,1,1) | |
_Bump ("Distortion", 2D) = "bump" {} | |
_Magnitude ("Magnitude", Range(0,1)) = 0.05 | |
} | |
SubShader { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 단순 유니티 패키지 제작용 스크립트 | |
using UnityEngine; | |
using System.Collections; | |
using UnityEditor; | |
public static class ExportPackage { | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone https://github.com/torch/distro.git ~/torch --recursive | |
cd ~/torch; bash install-deps; | |
./install.sh | |
source ~/.zshrc | |
# update common package to latest | |
luarocks install torch | |
luarocks install nn | |
luarocks install graph | |
luarocks install cunn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Shader "Flipping Normals" { | |
Properties { | |
_MainTex ("Base (RGB)", 2D) = "white" {} | |
} | |
SubShader { | |
Tags { "RenderType" = "Opaque" } | |
Cull Off |