일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- openCV
- 김양재
- 딥러닝
- MongoDB
- 김양재 목사
- Machine Learning
- Deep learning
- Statistics
- 확률
- R
- node.js
- 빅 데이타
- WebGL
- 빅데이터
- probability
- No SQL
- Artificial Intelligence
- 통계
- 몽고디비
- 주일설교
- 빅데이타
- nodeJS
- 김양재 목사님
- 인공지능
- 데이터 과학
- Big Data
- 우리들교회
- data science
- 빅 데이터
- c++
- Today
- Total
목록script (2)
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; 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(); } } }