This file contains hidden or 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 System.Collections.Generic; | |
| using System; | |
| public class PublicVariables : MonoBehaviour | |
| { | |
| public TestClazz _testClazz; | |
| void Start () |
This file contains hidden or 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
| #!/bin/bash | |
| appPath=/Applications/Unity4_5_5/Unity4_5_5.app | |
| mcs -r:$appPath/Contents/Frameworks/Managed/UnityEngine.dll -target:library -out:$1.dll *.cs |
This file contains hidden or 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
| <html> | |
| <title>バハHL救援スプレッドシート自動オープンHTML</title> | |
| <head> | |
| <script type="text/javascript"> | |
| var displayW = screen.width; | |
| var displayH = screen.height; | |
| var xx=3; | |
| var yy=2; | |
| // 横3つ縦2つ | |
| var w = displayW/xx; |
This file contains hidden or 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
| # v5.3.4f1 | |
| Shader "Standard" | |
| { | |
| Properties | |
| { | |
| _Color("Color", Color) = (1,1,1,1) | |
| _MainTex("Albedo", 2D) = "white" {} | |
| _Cutoff("Alpha Cutoff", Range(0.0, 1.0)) = 0.5 |
This file contains hidden or 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 "Simple" | |
| { | |
| SubShader | |
| { | |
| Pass | |
| { | |
| CGPROGRAM | |
| #pragma vertex vert | |
| #pragma fragment frag |
This file contains hidden or 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 "Simple" | |
| { | |
| SubShader | |
| { | |
| Pass | |
| { | |
| GpuProgramID 16286 | |
| Program "vp" | |
| { | |
| SubProgram "gles " |
This file contains hidden or 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 "Unlit/Outline" | |
| { | |
| Properties | |
| { | |
| _MainTex ("Texture", 2D) = "white" {} | |
| _OutlineColor("Color", Color) = (1,0,0,1) | |
| _LineLength ("OutlineLength", Float) = 0.3 | |
| } | |
| SubShader | |
| { |
This file contains hidden or 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; | |
| public class Main : MonoBehaviour | |
| { | |
| public AudioClip clip; | |
| private SoundManager _mng; | |
| void Start () | |
| { |
This file contains hidden or 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; | |
| /// <summary> | |
| /// 頂点カラーとテクスチャ画像でで三角形を描画します | |
| /// </summary> | |
| [RequireComponent (typeof(MeshRenderer))] | |
| [RequireComponent (typeof(MeshFilter))] | |
| public class DynamicCreateMesh : MonoBehaviour | |
| { |
This file contains hidden or 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 System.Collections.Generic; | |
| using UnityEditor; | |
| public class AnimationClipRecoveryEditor : EditorWindow | |
| { | |
| [MenuItem("Tools/AnimationClip Recover")] | |
| static void Init () | |
| { |