资源简介
Unity3D虚拟现实开发之标签跟随功能简易工程包,脚本使用C#编写

代码片段和文件信息
using UnityEngine;
using System.Collections;
public class move : MonoBehaviour {
public float speed=8;
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
if (Input.GetKey (“w“)) {
transform.Translate(Vector3.forward*Time.deltaTime *speed);
}
if (Input.GetKey (“s“)) {
transform.Translate(Vector3.back*Time.deltaTime *speed);
}
if (Input.GetKey (“a“)) {
transform.Translate(Vector3.left*Time.deltaTime *speed);
}
if (Input.GetKey (“d“)) {
transform.Translate(Vector3.right*Time.deltaTime *speed);
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2975 2014-04-19 16:21 test1\Assembly-CSharp-vs.csproj
文件 2975 2014-04-19 16:21 test1\Assembly-CSharp.csproj
文件 53131 2014-02-19 16:50 test1\Assets\5.jpg
..A..H. 914 2014-03-08 13:58 test1\Assets\5.jpg.me
文件 26445 2012-06-29 10:28 test1\Assets\diban01.jpg
..A..H. 914 2014-04-04 18:59 test1\Assets\diban01.jpg.me
文件 4212 2013-07-15 17:10 test1\Assets\diban01.mat
..A..H. 95 2014-04-19 15:56 test1\Assets\diban01.mat.me
文件 64204 2012-06-29 10:31 test1\Assets\diban05.jpg
..A..H. 914 2014-04-19 15:57 test1\Assets\diban05.jpg.me
I.A.... 4216 2014-04-19 15:56 test1\Assets\Materials\5.mat
..A..H. 95 2014-04-19 15:56 test1\Assets\Materials\5.mat.me
I.A.... 4220 2014-04-19 15:56 test1\Assets\Materials\diban01.mat
..A..H. 95 2014-04-19 15:56 test1\Assets\Materials\diban01.mat.me
I.A.... 4220 2014-04-19 15:57 test1\Assets\Materials\diban05.mat
..A..H. 95 2014-04-19 15:57 test1\Assets\Materials\diban05.mat.me
..A..H. 107 2014-04-19 15:56 test1\Assets\Materials.me
..A..H. 107 2014-03-15 19:49 test1\Assets\room.me
I.A.... 28484 2014-04-19 16:33 test1\Assets\room.unity
..A..H. 90 2014-03-08 13:58 test1\Assets\room.unity.me
I.A.... 13328 2014-04-19 15:53 test1\Assets\scene.prefab
..A..H. 95 2014-04-03 18:10 test1\Assets\scene.prefab.me
文件 604 2014-04-19 15:34 test1\Assets\sc
..A..H. 178 2014-04-19 15:25 test1\Assets\sc
文件 1379 2014-04-19 16:24 test1\Assets\sc
..A..H. 178 2014-04-04 20:13 test1\Assets\sc
..A..H. 107 2014-03-08 13:58 test1\Assets\sc
文件 4212 2014-02-19 17:34 test1\Assets\地面.mat
..A..H. 95 2014-03-08 13:58 test1\Assets\地面.mat.me
文件 4116 2014-02-19 16:47 test1\Library\AnnotationManager
............此处省略348个文件信息
- 上一篇:C#进化计算:遗传算法源代码
- 下一篇:鼠标画框矩形裁剪图片工具含源码及工程文件
相关资源
- unity3d脚本学习教程
- 愤怒的小鸟unity3d279320
- PureMVC for Unity3d Demo
- Unity3dMYO肌电臂环二次开发例程(保证
- Unity 3D Paint in 3D 最新版(1.56)
- Unity3D应用嵌入到WPF应用
- WinForm嵌入Unity3D并实现交互
- unity3d小游戏,见缝插针2d
- Unity3D NGUI Next Gen UI 最新版插件
- Unity 2D横版冒险跳跃游戏 带源码
- unity3d 登录注册界面功能实现 c#
- unity3d创意的手机消除游戏源码
- unity3D赛车游戏项目源代码
- Unity3D脚本编程 使用C#语言开发跨平台
- RealSky Unity3d实时动态天空球插件
- Unity in Action Multiplatform game development
- Unity3d开发案例(坦克克星游戏,C#版
- Unity3D与Winform交互
- CubeAttitudeShow.zip
- Unity3D射击游戏《全民飞机大战》源码
- Unity3D飞机大战
- unity3d2018插件NGUI
- unity3D外星风格射击游戏完整项目源码
- unity3D神启全套源码资源
- Unity3D脚本编程 使用C#语言开发跨平台
- unity3d多人联机赛车游戏完整源码
- Unity 3D脚本编程——使用C#语言开发跨
- Unity3D 街机捕鱼游戏源码
- Unity3D《farm business》农场模拟经营游戏
- 手把手教你用C#制作RPG游戏__罗培羽著
评论
共有 条评论