当前位置:网站首页>Zoom with unity mouse wheel: zoom the camera closer or farther
Zoom with unity mouse wheel: zoom the camera closer or farther
2022-07-06 20:13:00 【LiPing122335】
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class shuBiao : MonoBehaviour {
void Update()
{
// Effect of mouse wheel
if (Input.GetAxis("Mouse ScrollWheel") < 0)
{
if (Camera.main.fieldOfView <= 100)
Camera.main.fieldOfView += 2;
if (Camera.main.orthographicSize <= 20)
Camera.main.orthographicSize += 0.5F;
}
//Zoom in
if (Input.GetAxis("Mouse ScrollWheel") > 0)
{
if (Camera.main.fieldOfView > 2)
Camera.main.fieldOfView -= 2;
if (Camera.main.orthographicSize >= 1)
Camera.main.orthographicSize -= 0.5F;
}
}
}
边栏推荐
- Discussion on beegfs high availability mode
- Tencent T3 Daniel will teach you hand-in-hand, the internal information of the factory
- HDU 1026 Ignatius and the Princess I 迷宫范围内的搜索剪枝问题
- Groovy basic syntax collation
- Tencent Android development interview, basic knowledge of Android Development
- Special topic of rotor position estimation of permanent magnet synchronous motor -- Summary of position estimation of fundamental wave model
- Jupyter launch didn't respond after Anaconda was installed & the web page was opened and ran without execution
- Continuous test (CT) practical experience sharing
- HMS Core 机器学习服务打造同传翻译新“声”态,AI让国际交流更顺畅
- Special topic of rotor position estimation of permanent magnet synchronous motor -- fundamental wave model and rotor position angle
猜你喜欢

Monthly report of speech synthesis (TTS) and speech recognition (ASR) papers in June 2022

HMS Core 机器学习服务打造同传翻译新“声”态,AI让国际交流更顺畅
![[calculating emotion and thought] floor sweeper, typist, information panic and Oppenheimer](/img/8c/afb90128e7a523bbee4c6c4166363f.png)
[calculating emotion and thought] floor sweeper, typist, information panic and Oppenheimer

The "white paper on the panorama of the digital economy" has been released with great emphasis on the digitalization of insurance

腾讯T3大牛手把手教你,大厂内部资料

Pay attention to the partners on the recruitment website of fishing! The monitoring system may have set you as "high risk of leaving"

Special topic of rotor position estimation of permanent magnet synchronous motor -- fundamental wave model and rotor position angle

持续测试(CT)实战经验分享
![[Yann Lecun likes the red stone neural network made by minecraft]](/img/95/c3af40c7ecbd371dd674aea19b272a.png)
[Yann Lecun likes the red stone neural network made by minecraft]

Discussion on beegfs high availability mode
随机推荐
Standardized QCI characteristics
[Yann Lecun likes the red stone neural network made by minecraft]
腾讯T3大牛手把手教你,大厂内部资料
爬虫(14) - Scrapy-Redis分布式爬虫(1) | 详解
beegfs高可用模式探讨
腾讯T2大牛亲自讲解,跳槽薪资翻倍
Node.js: express + MySQL实现注册登录,身份认证
Monthly report of speech synthesis (TTS) and speech recognition (ASR) papers in June 2022
Anaconda安装后Jupyter launch 没反应&网页打开运行没执行
02 基础入门-数据包拓展
mod_wsgi + pymssql通路SQL Server座
Ideas and methods of system and application monitoring
【计网】第三章 数据链路层(4)局域网、以太网、无线局域网、VLAN
Linear distance between two points of cesium
持续测试(CT)实战经验分享
深度学习分类网络 -- ZFNet
leetcode先刷_Maximum Subarray
It's enough to read this article to analyze the principle in depth
夏志刚介绍
Tencent Android interview must ask, 10 years of Android development experience