- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 my game ,我的主角是一个立方体,如果按下空格键,它会根据您按下按钮的大小而跳跃,但我想在按下空格键时将我的立方体旋转 90 度。我不确定如何实现这一目标。
这是我目前正在尝试的
if (Input.GetKey(KeyCode.Space))
{
timeCount=Time.time
}
if (Input.GetKeyUp(KeyCode.Space))
{
transform.rotation = Quaternion.Lerp(transform.rotation, Quaternion.Euler(0, 0, 90), timeCount*.1f);
timeCount = 0;
}
编辑:这是我用你的代码更新的代码
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerEverything : MonoBehaviour{
public Transform GroundCheck; // Put the prefab of the ground here
public LayerMask groundLayerBlue; // Insert the layer here.
public LayerMask groundLayerPurple;
public bool isGroundedBlue;
public bool isGroundedPurple;
private Rigidbody2D rb2D;
private float jumpTimer;
private float timeCount = 0.0f;
private bool isGrounded;
public Transform groundCheck;
public LayerMask groundLayer;
// we are going to store our coroutine to assure that it is only going to run once
private Coroutine RotationCoroutine = null;
[SerializeField] private float degreesToRotateBy; // assign this variable to 90.0f in the inspector
[SerializeField] private float timeToRotate; // assign this variable to however much time you want the rotation to occur
// axis of rotation that will occur
private Vector3 rotationAxis = Vector3.forward;
// Start is called before the first frame update
public void Start()
{
rb2D = GetComponent<Rigidbody2D>();
}
// Update is called once per frame
public void Update()
{
isGroundedBlue = Physics2D.OverlapCircle(GroundCheck.position, 0.15f, groundLayerBlue);
if (isGroundedBlue)
{
transform.position += Vector3.right/60;
}
isGroundedPurple = Physics2D.OverlapCircle(GroundCheck.position, 0.15f, groundLayerPurple);
if (isGroundedPurple)
{
transform.position += Vector3.left / 60;
}
if (isGrounded)
{
if (Input.GetKey(KeyCode.Space))
{
jumpTimer += Time.deltaTime;
timeCount = Time.time;
}
if (Input.GetKeyUp(KeyCode.Space))
{
DoJump(250f * jumpTimer);
jumpTimer = 0;
}
// I changed your input to GetKeyDown instead of GetKey
// as GetKeyDown is triggered the single frame the user presses space instead of every frame
if (Input.GetKeyDown(KeyCode.Space))
{
if (RotationCoroutine == null)
RotationCoroutine = StartCoroutine(RotateAxisByDegrees(degreesToRotateBy, timeToRotate, rotationAxis));
}
if (Input.GetKeyUp(KeyCode.Space))
{
// assuming you want the rotation to stop
if (RotationCoroutine != null)
StopCoroutine(RotationCoroutine);
RotationCoroutine = null;
}
}
}
/// <summary>
/// Rotate an object by a set angle in the rotationAxis over a set time
/// </summary>
/// <param name="angleToRotateTo">Angle we are rotating by</param>
/// <param name="timeToRotate">Amount of time the rotation takes</param>
/// <param name="rotationAxis">Axis to rotate around</param>
/// <returns></returns>
private IEnumerator RotateAxisByDegrees(float angleToRotateTo, float timeToRotate, Vector3 rotationAxis)
{
// store our initial rotation and keep a timer for the rotation progress
float currentTimeElapsed = 0.0f;
Quaternion startRotation = transform.rotation;
Quaternion endRotation = startRotation * Quaternion.AngleAxis(angleToRotateTo, rotationAxis);
while (currentTimeElapsed < timeToRotate)
{
// set our new rotation
transform.rotation = Quaternion.Slerp(startRotation, endRotation, currentTimeElapsed / timeToRotate);
// increment our timer with how long it has been since the last frame
currentTimeElapsed += Time.deltaTime;
// this line will tell the coroutine to end here and continue work in the next frame
yield return null;
}
// assign our rotation in case there are floating point errors
transform.rotation = endRotation;
// set our coroutine to null as we are done
RotationCoroutine = null;
}
private void FixedUpdate()
{
isGrounded = Physics2D.OverlapCircle(groundCheck.position, 0.2f, groundLayer);
}
public void DoJump(float JumpForce)
{
float jumpForceMagnitutde = Mathf.Clamp(JumpForce/3, 0, 50);
rb2D.AddForce(Vector2.up * jumpForceMagnitutde/3, ForceMode2D.Impulse);
rb2D.AddForce(Vector2.right*jumpForceMagnitutde/10,ForceMode2D.Impulse);
}
}
最佳答案
正如我所提到的,您发布的示例代码有一个主要问题
if (Input.GetKey(KeyCode.Space))
{
timeCount=Time.time
}
if (Input.GetKeyUp(KeyCode.Space))
{
transform.rotation = Quaternion.Lerp(transform.rotation, Quaternion.Euler(0, 0, 90), timeCount*.1f);
timeCount = 0;
}
Lerp
是一个在多个帧上逐渐完成的过程。我假设此输入代码位于
Update
内函数,通常允许
Lerp
上类。然而,由于它是在空间提升的条件检查中,这只会发生
single frame
用户提起一个键,它不会连续运行。
Coroutines
.一个
Coroutine
是一个函数,它能够在每一帧中以小块的形式处理进程,并在下一帧中返回到它停止的地方。
// we are going to store our coroutine to assure that it is only going to run once
private Coroutine RotationCoroutine = null;
[SerializeField] private float degreesToRotateBy; // assign this variable to 90.0f in the inspector
[SerializeField] private float timeToRotate; // assign this variable to however much time you want the rotation to occur
// axis of rotation that will occur
private Vector3 zRotationAxis = Vector3.forward;
private void Update()
{
// I changed your input to GetKeyDown instead of GetKey
// as GetKeyDown is triggered the single frame the user presses space instead of every frame
if (Input.GetKeyDown(KeyCode.Space))
{
if (RotationCoroutine == null)
RotationCoroutine = StartCoroutine(RotateAxisByDegrees(degreesToRotateBy, timeToRotate, zRotationAxis));
}
if (Input.GetKeyUp(KeyCode.Space))
{
// assuming you want the rotation to stop
if (RotationCoroutine != null)
StopCoroutine(RotationCoroutine);
RotationCoroutine = null;
}
}
/// <summary>
/// Rotate an object by a set angle in the rotationAxis over a set time
/// </summary>
/// <param name="angleToRotateTo">Angle we are rotating by</param>
/// <param name="timeToRotate">Amount of time the rotation takes</param>
/// <param name="rotationAxis">Axis to rotate around</param>
/// <returns></returns>
private IEnumerator RotateAxisByDegrees(float angleToRotateTo, float timeToRotate, Vector3 rotationAxis)
{
// store our initial rotation and keep a timer for the rotation progress
float currentTimeElapsed = 0.0f;
Quaternion startRotation = transform.rotation;
Quaternion endRotation = startRotation * Quaternion.AngleAxis(angleToRotateTo, rotationAxis);
while (currentTimeElapsed < timeToRotate)
{
// set our new rotation
transform.rotation = Quaternion.Slerp(startRotation, endRotation, currentTimeElapsed / timeToRotate);
// increment our timer with how long it has been since the last frame
currentTimeElapsed += Time.deltaTime;
// this line will tell the coroutine to end here and continue work in the next frame
yield return null;
}
// assign our rotation in case there are floating point errors
transform.rotation = endRotation;
// set our coroutine to null as we are done
RotationCoroutine = null;
}
我目前实现了在特定时间内完成的轮换。可以改为旋转给定速度的对象。您还可以扩展该函数以接收特定轴,以创建一个函数,该函数允许在任何时间以任何角度在任何轴上旋转。只需添加新参数,不要使轴全局化。
Lerp
,有一个有用的
article
在处理它们时会介绍一些一般做法。
GetKeyUp
进行 if 条件检查。您的内部
isGrounded
查看。
if (isGrounded)
{
if (Input.GetKey(KeyCode.Space))
{
jumpTimer += Time.deltaTime;
timeCount = Time.time;
}
if (Input.GetKeyUp(KeyCode.Space))
{
DoJump(250f * jumpTimer);
jumpTimer = 0;
}
// I changed your input to GetKeyDown instead of GetKey
// as GetKeyDown is triggered the single frame the user presses space instead of every frame
if (Input.GetKeyDown(KeyCode.Space))
{
if (RotationCoroutine == null)
RotationCoroutine = StartCoroutine(RotateAxisByDegrees(degreesToRotateBy, timeToRotate, rotationAxis));
}
}
// this needs to be outside of the isGrounded
if (Input.GetKeyUp(KeyCode.Space))
{
// assuming you want the rotation to stop
if (RotationCoroutine != null)
StopCoroutine(RotationCoroutine);
RotationCoroutine = null;
}
关于c# - 在 unity 2D c# 中如何旋转几何体破折号之类的对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67729473/
...沮丧。我希望我的游戏仅在横向模式下运行。我已将适当的键/值添加到 Info.plist 文件中,以强制设备方向在启动时正确。 我现在正在尝试旋转 OpenGL 坐标空间以匹配设备的坐标空间。我正
我如何创建一个旋转矩阵,将 X 旋转 a,Y 旋转 b,Z 旋转 c? 我需要公式,除非您使用的是 ardor3d api 的函数/方法。 矩阵是这样设置的 xx, xy, xz, yx, yy, y
假设我有一个包含 3 个 vector 的类(一个用于位置,一个用于缩放,一个用于旋转)我可以使用它们生成一个变换矩阵,该矩阵表示对象在 3D 空间中的位置、旋转和大小。然后我添加对象之间的父/子关系
所以我只是在玩一个小的 javascript 游戏,构建一个 pacman 游戏。你可以在这里看到它:http://codepen.io/acha5066/pen/rOyaPW 不过我对旋转有疑问。你
在我的应用程序中,我有一个 MKMapView,其中显示了多个注释。 map 根据设备的航向旋转。要旋转 map ,请执行以下语句(由方法 locationManager 调用:didUpdateHe
使用此 jquery 插件时:http://code.google.com/p/jqueryrotate/wiki/Documentation我将图像旋转 90 度,无论哪个方向,它们最终都会变得模糊
我有以下代码:CSS: .wrapper { margin:80px auto; width:300px; border:none; } .square { widt
本篇介绍Manim中的两个旋转类的动画,名称差不多,分别是Rotate和Rotating。 Rotate类主要用于对图形对象进行指定角度、围绕特定点的精确旋转,适用于几何图形演示、物理模拟和机械运动
我只想通过小部件的轴移动图像并围绕小部件的中心旋转(就像任何数字绘画软件中的 Canvas ),但它围绕其左顶点旋转...... QPainter p(this); QTransform trans;
我需要先旋转图像,然后再将其加载到 Canvas 中。据我所知,我无法使用 canvas.rotate() 旋转它,因为它会旋转整个场景。 有没有好的JS方法来旋转图片? [不依赖于浏览器的方式] 最
我需要知道我的 Android 设备屏幕何时从一个横向旋转到另一个横向(rotation_90 到 rotation_270)。在我的 Android 服务中,我重新实现了 onConfigurati
**摘要:**本篇文章主要讲解Python调用OpenCV实现图像位移操作、旋转和翻转效果,包括四部分知识:图像缩放、图像旋转、图像翻转、图像平移。 本文分享自华为云社区《[Python图像处理] 六
我只是在玩MTKView中的模板设置;并且,我一直在尝试了解以下内容: 相机的默认位置。 使用MDLMesh和MTKMesh创建基元时的默认位置。 为什么轮换还涉及翻译。 相关代码: matrix_f
我正在尝试使用包 dendexend 创建一个树状图。它创建了非常好的 gg 树状图,但不幸的是,当你把它变成一个“圆圈”时,标签跟不上。我将在下面提供一个示例。 我的距离对象在这里:http://s
我想将一个完整的 ggplot 对象旋转 90°。 我不想使用 coord_flip因为这似乎会干扰 scale="free"和 space="free"使用刻面时。 例如: qplot(as.fac
我目前可以通过首先平移到轴心点然后执行旋转最后平移回原点来围绕轴心点旋转。在我的例子中,我很容易为肩膀做到这一点。但是,我不知道如何为前臂添加绕肘部的旋转。 我已经尝试了以下围绕肘部旋转的前臂: 平移
我想使用此功能旋转然后停止在特定点或角度。现在该元素只是旋转而不停止。代码如下: $(function() { var $elie = $("#bkgimg");
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 4 年前。 Improve this ques
我正在尝试创建一个非常简单的关键帧动画,其中图形通过给定的中点从一个角度旋转到另一个角度。 (目的是能够通过大于 180 度的 OBTUSE 弧角来制作旋转动画,而不是让动画“作弊”并走最短路线,即通
我需要旋转 NSView 实例的框架,使其宽度变为其高度,其高度变为其宽度。该 View 包含一个字符串,并且该字符串也被旋转,这一点很重要。 我查看了 NSView 的 setFrameRotati
我是一名优秀的程序员,十分优秀!