csharp ScreenPointToRayテスト

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp ScreenPointToRayテスト相关的知识,希望对你有一定的参考价值。

using UnityEngine;

[ExecuteInEditMode]
public class TestScreenPointToRay : MonoBehaviour
{
    [SerializeField]
    Camera cam;

    public Vector3 pos;
    public float length = 10f;

    void Update()
    {
        if (cam != null)
        {
            Ray ray = cam.ScreenPointToRay(pos);
            Debug.DrawRay(ray.origin, ray.direction * length, Color.yellow);
        }
    }
}

以上是关于csharp ScreenPointToRayテスト的主要内容,如果未能解决你的问题,请参考以下文章

csharp JobSystemテスト迁移

csharp カスタム属性テスト

csharp AnimationEventで对象参照とAnimationEvent型を送るテスト

ScreenPointToRay,该功能的背后是啥?

php Gist Publicテスト

php ログイン认证テスト