资源简介
捕鱼达人游戏源码和可运行的.exe文件 捕鱼达人游戏源码和可运行的.exe文件 捕鱼达人游戏源码和可运行的.exe文件 捕鱼达人游戏源码和可运行的.exe文件
代码片段和文件信息
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Cannonscript : MonoBehaviour {
public float timer = 0;
public Transform firePoint;
void Start () {
}
// Update is called once per frame
void Update () {
timer += Time.deltaTime;
//先得到炮筒的位置
Vector3 cannonPos = transform.position;
//得到鼠标点击的位置
Vector3 mousePos = Input.mousePosition;
//把鼠标的位置转成世界坐标
mousePos=Camera.main.ScreenToWorldPoint(mousePos);
//如果按下鼠标左键不松开
if (Input.GetMouseButton (0)) {
//得到大炮到鼠标的方向
Vector2 targetDir = mousePos - cannonPos;
float angle = Vector2.Angle (targetDir Vector2.up);
//判断angle的值是正还是负
if (mousePos.x > cannonPos.x) {
angle = -angle;
}
//炮筒旋转的方向
transform.eulerAngles = new Vector3 (0 0 angle);
if (timer >= 0.1f) {
timer = 0;
//产生子弹
Firescript.Create(firePoint.position new Vector3(00angle));
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5020 2018-01-06 15:44 text002\Assembly-CSharp.csproj
I.A.... 11136 2018-01-05 16:58 text002\Assets\Animator.anim
文件 179 2018-01-05 16:07 text002\Assets\Animator.anim.me
文件 1055 2018-01-06 11:05 text002\Assets\Cannonsc
文件 262 2018-01-06 09:11 text002\Assets\Cannonsc
文件 1147 2018-01-06 11:28 text002\Assets\Firesc
文件 262 2018-01-06 08:39 text002\Assets\Firesc
I.A.... 10312 2018-01-05 16:58 text002\Assets\fish.anim
文件 179 2018-01-05 16:55 text002\Assets\fish.anim.me
文件 529716 2014-07-12 15:35 text002\Assets\Fishgame\background.png
文件 1676 2018-01-06 09:06 text002\Assets\Fishgame\background.png.me
文件 49527 2014-07-12 22:21 text002\Assets\Fishgame\cannon.png
文件 2307 2018-01-06 08:19 text002\Assets\Fishgame\cannon.png.me
I.A.... 10628 2018-01-06 11:30 text002\Assets\Fishgame\explosion.anim
文件 179 2018-01-06 08:33 text002\Assets\Fishgame\explosion.anim.me
文件 605288 2007-11-28 00:00 text002\Assets\Fishgame\explosion.png
文件 6413 2018-01-06 08:17 text002\Assets\Fishgame\explosion.png.me
I.A.... 7032 2018-01-06 11:30 text002\Assets\Fishgame\explosion_0.controller
文件 179 2018-01-06 08:33 text002\Assets\Fishgame\explosion_0.controller.me
文件 8123 2014-07-12 21:08 text002\Assets\Fishgame\fire.png
文件 1676 2018-01-06 08:17 text002\Assets\Fishgame\fire.png.me
I.A.... 4368 2018-01-06 09:53 text002\Assets\Fishgame\firepoint.prefab
文件 179 2018-01-06 09:53 text002\Assets\Fishgame\firepoint.prefab.me
文件 40058 2014-07-12 14:05 text002\Assets\Fishgame\fish.png
文件 2885 2018-01-06 08:18 text002\Assets\Fishgame\fish.png.me
I.A.... 10316 2018-01-06 11:30 text002\Assets\Fishgame\fish1.anim
文件 179 2018-01-06 08:23 text002\Assets\Fishgame\fish1.anim.me
I.A.... 10316 2018-01-06 11:30 text002\Assets\Fishgame\fish2.anim
文件 179 2018-01-06 08:27 text002\Assets\Fishgame\fish2.anim.me
文件 95218 2014-07-12 14:03 text002\Assets\Fishgame\fish2.png
............此处省略1284个文件信息
相关资源
- EasyTouch 适用于unity5.x版本
- Unity 5.x Cookbook - Unity英文教程电子书
- unity使用安卓串口与单片机通信
- Unity3D 使用Vuforia Vuforia Engine 8.0发布
- unity 3d迷宫 NPC 小地图
- PuppetMaster unity 布娃娃
- unity三消游戏源码
- Unity 科幻风格的全息交互界面UI内含多
- unity常用的800个脚本
- Unity开发人工智能坦克大战项目源码
- MiddleVR的unity包
- Final IK 2.0
- unity简单的2D飞机大战游戏
- NGUI v3.12.0 Unity3D2017~2018
- NGUI Next-Gen UI v2018.3.0e.unitypackage
- Unity3D VText 2.0.2
- Mesh Baker
- Simple Apocalypse - Cartoon Assets v1.21
- Building an FPS Game with Unity(PACKT2015)
- Unity图表插件Graph And Chart 1.81
- DevXUnityUnpackerTools275.zip
- ShareREC unity视频录制源码
- Unity 烟花特效
- unity带AI的赛车游戏源码
- 传智播客Unity3D视频教程—3-案例:地
- 《Unity3D ShaderLab开发实战详解》源代码
- Unity 材质包(玻璃/金属/陶瓷/塑料等
- Unity3D特效包 100种unity特效
- unity3d小游戏源码
- unity hololens socket demo
评论
共有 条评论