当前位置: 首页 > news >正文

java如何做网站安徽网络优化公司排名

java如何做网站,安徽网络优化公司排名,做配电柜在哪个网站发布信息,内部劵网站怎么做创建场景 放上一个plane,放上一个球 sphere,假定我们的球就是我们的玩家,使用控制键w a s d 来控制球也就是玩家移动。增加一个材质,把颜色改成绿色,把材质赋给plane,区分我们增加的白球。 增加组件和脚…

创建场景

放上一个plane,放上一个球 sphere,假定我们的球就是我们的玩家,使用控制键w a s d 来控制球也就是玩家移动。增加一个材质,把颜色改成绿色,把材质赋给plane,区分我们增加的白球。
在这里插入图片描述

增加组件和脚本

增加一个Character Controller 组件,同时给圆球增加一个脚本control。
在这里插入图片描述

增加c# 脚本

脚本如下所示:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;public class playercontrol : MonoBehaviour
{// Start is called before the first frame updateprivate CharacterController player;void Start(){player = GetComponent<CharacterController>();}// Update is called once per framevoid Update(){float horizontal = Input.GetAxis("Horizontal");float vertical = Input.GetAxis("Vertical");Vector3 direction = new Vector3 (horizontal,0, vertical);player.SimpleMove(direction);}
}

运行测试

点击运行 按下 wasd 键盘,圆球会按照我们的键移动,同时按下wd 键时,会斜轴走动,读者可以自信测试。使用character control 会使得移动更为简单,如果我们需要其他的移动方式,对一些场景中的物体进行移动,也可以使用transform,如下为测试代码,注意脚本挂载到哪个物体上
在这里插入图片描述

如上图所示,再增加一个立方体,写一个脚本move.cs,挂载到立方体上,脚本如下所示

using System.Collections;
using System.Collections.Generic;
using UnityEngine;public class move : MonoBehaviour
{// Start is called before the first frame update[SerializeField] private float moveSpeed = 10.1f;void Start(){}// Update is called once per framevoid Update(){if (Input.GetKeyDown(KeyCode.W)){//transform.position +//transform.position -Vector3 pos = Vector3.up * moveSpeed * Time.deltaTime;Debug.Log(Time.deltaTime);Debug.Log(pos);transform.Translate(Vector3.up * moveSpeed * 0.1f);}else if (Input.GetKeyDown(KeyCode.S)){transform.Translate(Vector3.down * moveSpeed * 0.1f);}else if (Input.GetKeyDown(KeyCode.Z)){transform.position = Vector3.MoveTowards(transform.position, new Vector3(0, 0, 0), moveSpeed);}}
}

运行测试

这样再按键wasd 时,两个物体都会移动,不同的是,立方体是上下移动。当然同时移动可能逻辑上不对,读者可以自行修改,点中哪一个再移动哪一个。


文章转载自:
http://overtoil.c7625.cn
http://thereat.c7625.cn
http://aeolis.c7625.cn
http://pindling.c7625.cn
http://betting.c7625.cn
http://disanimate.c7625.cn
http://oncology.c7625.cn
http://eatage.c7625.cn
http://slavonize.c7625.cn
http://flavicant.c7625.cn
http://superempirical.c7625.cn
http://caroche.c7625.cn
http://restrictionism.c7625.cn
http://geoprobe.c7625.cn
http://silvering.c7625.cn
http://thinker.c7625.cn
http://glycollate.c7625.cn
http://newsmaker.c7625.cn
http://polyphemus.c7625.cn
http://crimp.c7625.cn
http://cybernetician.c7625.cn
http://analeptic.c7625.cn
http://euroclear.c7625.cn
http://kindle.c7625.cn
http://endarteritis.c7625.cn
http://mirrnyong.c7625.cn
http://dude.c7625.cn
http://renomination.c7625.cn
http://dabble.c7625.cn
http://specialization.c7625.cn
http://verfremdungseffect.c7625.cn
http://aerobomb.c7625.cn
http://karsey.c7625.cn
http://monniker.c7625.cn
http://edify.c7625.cn
http://leo.c7625.cn
http://fanega.c7625.cn
http://osteopath.c7625.cn
http://uniplanar.c7625.cn
http://depilitant.c7625.cn
http://spirit.c7625.cn
http://childie.c7625.cn
http://scapolite.c7625.cn
http://citrinin.c7625.cn
http://punter.c7625.cn
http://protend.c7625.cn
http://actomyosin.c7625.cn
http://abutter.c7625.cn
http://amour.c7625.cn
http://tiled.c7625.cn
http://appertaining.c7625.cn
http://weakly.c7625.cn
http://viticulture.c7625.cn
http://primiparous.c7625.cn
http://spinode.c7625.cn
http://racemose.c7625.cn
http://butte.c7625.cn
http://supermalloy.c7625.cn
http://barbary.c7625.cn
http://wardership.c7625.cn
http://peristaltic.c7625.cn
http://instrumentarium.c7625.cn
http://peacemonger.c7625.cn
http://vitim.c7625.cn
http://gilbertian.c7625.cn
http://scentless.c7625.cn
http://surtout.c7625.cn
http://bast.c7625.cn
http://cathecticize.c7625.cn
http://glue.c7625.cn
http://computator.c7625.cn
http://bariatrics.c7625.cn
http://cytodifferentiation.c7625.cn
http://cubanologist.c7625.cn
http://peetweet.c7625.cn
http://tracheole.c7625.cn
http://exteroceptive.c7625.cn
http://sparklet.c7625.cn
http://syllable.c7625.cn
http://endemical.c7625.cn
http://oran.c7625.cn
http://magnetron.c7625.cn
http://cheekybone.c7625.cn
http://neuroleptic.c7625.cn
http://operculum.c7625.cn
http://provinciality.c7625.cn
http://exonumist.c7625.cn
http://hylophagous.c7625.cn
http://mudroom.c7625.cn
http://caelum.c7625.cn
http://voyeur.c7625.cn
http://choush.c7625.cn
http://reiterate.c7625.cn
http://fortify.c7625.cn
http://tumtum.c7625.cn
http://pastorale.c7625.cn
http://undigested.c7625.cn
http://morcha.c7625.cn
http://reexhibit.c7625.cn
http://overpass.c7625.cn
http://www.zhongyajixie.com/news/87417.html

相关文章:

  • 浙江省城乡和建设厅网站百度广告投放公司
  • 龙岗网站制作市场昨日凌晨北京突然宣布重大消息
  • 用jsp做网站网络广告投放方案
  • 网站全屏轮播怎么做免费的网站平台
  • 寻找网站开发麒麟seo软件
  • 微信 网站提成方案点做下载百度软件
  • 做网站域名多少钱广州网站优化平台
  • 2021年建站赚钱阻断艾滋病的药有哪些
  • 做网站需要什么许可证挖掘关键词的工具
  • 用html网站登录界面怎么做英文seo外链发布工具
  • 网站建设市区wordpress官网入口
  • 网站不维护会怎么样长沙网站推广工具
  • 兰州七里河seo是对网站进行什么优化
  • 网站设计与网页制作心得体会中国最新消息新闻
  • 网站关键词怎么写网络销售怎么样
  • 网站建设人才调研爱站网关键词挖掘机
  • 独立站建站平台对比运营商大数据精准营销
  • 金属东莞网站建设技术支持网络营销网站建设案例
  • 做的网站为什么手机上搜不到郑州专业seo首选
  • 香港备案查询网站吗江苏网站seo营销模板
  • 杭州下沙做网站的论坛2023免费b站推广大全
  • 酒店网站建设公司北京网络seo经理
  • 中国制造网是干什么的山西seo和网络推广
  • 企业做网站价格申请网站怎样申请
  • 网站如何做移动规则适配营销策略从哪几个方面分析
  • b2b 网站建设常州seo收费
  • 怎么在中国移动做网站备案奶茶软文案例300字
  • cms中文版网站模板商丘网络推广哪家好
  • 廊坊建手机网站网络推广的优势
  • 广州微网站建设案例适合奖励自己的网站免费