일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- c++
- 우리들교회
- 빅 데이터
- data science
- Big Data
- 딥러닝
- Artificial Intelligence
- openCV
- Deep learning
- 김양재 목사님
- probability
- R
- Statistics
- MongoDB
- Machine Learning
- 확률
- 김양재
- 김양재 목사
- 빅데이터
- No SQL
- 몽고디비
- 데이터 과학
- 통계
- 빅데이타
- node.js
- 인공지능
- 빅 데이타
- WebGL
- 주일설교
- nodeJS
- Today
- Total
목록Unity 3d (17)
Scientific Computing & Data Science
using UnityEngine;using System.Collections; public class DragObject : MonoBehaviour {private Ray myRay = new Ray();RaycastHit myHit = new RaycastHit(); [SerializeField] private float _horizontalLimit = 2.5f; private float _verticalLimit = 2.5f; private float dragSpeed = 0.005f; private Transform cachedTransform; private Vector3 startingPos; // Use this for initializationvoid Start () { } // Upda..
using UnityEngine;using System.Collections;using System.Collections.Generic;using System.IO;using System.Linq;using System; public class ImageCycle : MonoBehaviour { public Texture2D LogoTexture = null;public Rect LogoTextureDimensions; // Use this for initializationvoid Start () {StartCoroutine(ShowImages());} // Update is called once per framevoid Update () { } void OnGUI(){if(LogoTexture)GUI...
Shader "Example/VertexLit" { Properties { _Color ("Main Color", Color) = (1,1,1,0.5) _SpecColor ("Spec Color", Color) = (1,1,1,1) _Emission ("Emmisive Color", Color) = (0,0,0,0) _Shininess ("Shininess", Range (0.01, 1)) = 0.7 _MainTex ("Base (RGB)", 2D) = "white" { } } SubShader { Pass { Material { Diffuse [_Color] Ambient [_Color] Shininess [_Shininess] Specular [_SpecColor] Emission [_Emission..
Shader "Tutorial/Display Normals" {SubShader { Pass { CGPROGRAM#pragma vertex vert#pragma fragment frag#include "UnityCG.cginc" struct v2f { float4 pos : SV_POSITION; float3 color : COLOR0;}; v2f vert (appdata_base v){ v2f o; o.pos = mul (UNITY_MATRIX_MVP, v.vertex); o.color = v.normal * 0.5 + 0.5; return o;} half4 frag (v2f i) : COLOR{ return half4 (i.color, 1);}ENDCG }}Fallback "VertexLit" }
Scene에 두 개의 카메라 설정 각 Camera 당 각각 AudioListener가 있으니 둘 중 하나는 삭제 씬에 GameObject를 하나 설정 이 오브젝트의 이름을 "Camera Controller"라 명명 두 개의 씬 Camera를 Camera Controller의 자식 오브젝트로 설정 왼쪽의 "CameraConnection" 스크립트를 Camera Controller에 부착 Camera Controller를 클릭하여 선택하고 Component viewer에서 각 카메라를 드래그하여 넣는다. using UnityEngine;using System.Collections; public class CameraConnection : MonoBehaviour {public GameObject gameCa..
using UnityEngine; using System.Collections; public class NewBehaviourScript : MonoBehaviour { public MovieTexture movTexture; // Use this for initialization void Start () { renderer.material.mainTexture = movTexture; movTexture.loop = true; movTexture.Play(); } // Update is called once per frame void Update () { if(Input.GetKeyDown("space")){ movTexture.Stop(); movTexture.Play(); } } }
using UnityEngine; using System.Collections; public class RandomNumber : MonoBehaviour { public GUIText myText; System.Random r = new System.Random((int)System.DateTime.Now.Ticks); // Use this for initialization void Start () { int random = r.Next(1, 1000); myText.text = random.ToString(); } // Update is called once per frame void Update () { } }