
相机
2537God
unity大神。。。。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
照相功能 高通AR
这里需要两脚本 ScreenFade:负责屏幕闪光 TakePhotoPicture :负责照相 我用了一个插件:Cross Platform Native Plugins - Ultra Pack /*---------------------------------------------------------------------------------Allo原创 2016-05-24 15:57:32 · 488 阅读 · 0 评论 -
unity 相机平滑的接近物体脚本 Mathf.Smooth
using UnityEngine;using System.Collections;public class example : MonoBehaviour {public Transform target;public float smoothTime = 0.3F;private float yVelocity = 1.0F;void Update() {原创 2016-05-11 14:13:21 · 685 阅读 · 0 评论 -
手指触摸滑动物体带惯性的旋转 以及放大缩小(用插件easytouch 控制物体的旋转和缩放)
using UnityEngine;using UnityEngine.UI;using System.Collections;public class AR_TouchController : MonoBehaviour {public GameObject[] scaleGameobject = new GameObject[]{} ;public原创 2016-05-16 15:02:01 · 6166 阅读 · 0 评论