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

unity学习18:unity里的 Debug.Log相关

目录

1 unity里的 Debug.log相关

2 用Debug.DrawLine 和  Debug.DrawRay画线

2.1 画线


1 unity里的 Debug.log相关

除了常用的 Debug.Log,还有另外2个

  •     Debug.Log("Debug.Log");
  •     Debug.LogWarning("Debug.LogWarning");
  •     Debug.LogError("Debug.LogError");

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class debugTest : MonoBehaviour
{
    // Start is called before the first frame update
    void Start()
    {
    Debug.Log("Debug.Log");
    Debug.LogWarning("Debug.LogWarning");
    Debug.LogError("Debug.LogError");

    }

    // Update is called once per frame
    void Update()
    {
        
    }
}

2 用Debug.DrawLine 和  Debug.DrawRay画线

2.1 画线

  • Debug.DrawLine(new Vector3(290,90,100),new Vector3(290,100,100),Color.blue);
  • DrawLine( 起点坐标,终点坐标)

  • Debug.DrawRay(new Vector3(290,90,100),new Vector3(290,100,100),Color.red);
  • DrawRay( 起点坐标,方向)
  • 其实方向,也就是这里的Vector3(290,100,100) 是指
  • Vector3(0,0,0) 到Vector3(290,100,100)的方向,把起点从Vector3(0,0,0)挪到Vector3(290,90,100)这里来形成的一个新射线
  • 这么详细解释下
  • step1: 有一个向量Vector3(290,100,100), 画出来,Vector3(0,0,0) → 指向Vector3(290,100,100), 图上的红色箭头
  • step2:然后把这个向量挪动,方向不变,起点挪动到Vector3(290,90,100) 这里来,生成了图上红色的细线

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class debugTest : MonoBehaviour
{
    // Start is called before the first frame update
    void Start()
    {
    Debug.Log("Debug.Log");
    Debug.LogWarning("Debug.LogWarning");
    Debug.LogError("Debug.LogError");

    }

    // Update is called once per frame
    void Update()
    {
    Debug.DrawLine(new Vector3(290,90,100),new Vector3(290,100,100),Color.blue);
    Debug.DrawRay(new Vector3(290,90,100),new Vector3(290,100,100),Color.red);
    }
}

2.2 调试的东西只会出现scene窗口,不会出现在game窗口

  • 调试的东西只会出现scene窗口,不会出现在game窗口
  • 比如上面的画线


http://www.kler.cn/a/503218.html

相关文章:

  • Microsoft
  • Android 对接口的封装使用
  • pycharm-pyspark 环境安装
  • Three.js 用户交互:构建沉浸式3D体验的关键
  • Spring Data Elasticsearch简介
  • Redis 优化秒杀(异步秒杀)
  • 如何使用 Excel 进行多元回归分析?
  • 【数据结构】C语言顺序栈和链式栈的使用
  • 科技快讯 | 华为余承东2025新年信;教育部拟同意设置福耀科技大学等本科院校;我国成功发射一箭10星
  • <C++学习> C++ Boost 字符串操作教程
  • Day31补代码随想录20250110贪心算法5 56.合并区间|738.单调递增的数字|968.监控二叉树(可跳过)
  • LoRaWAN节点学习笔记
  • ASP.NET Core - 日志记录系统(一)
  • leetcode 面试经典 150 题:快乐数
  • 云服务信息安全管理体系认证,守护云端安全
  • npm、yarn、pnpm包安装器差异性对比
  • 深度学习中的卷积神经网络(CNN):原理与应用详解
  • 如何使用虚拟机连接到SSH
  • 【0x005B】HCI_Write_Default_Erroneous_Data_Reporting命令详解
  • 【Pandas】pandas Series radd
  • 基于Springboot + vue实现的文档管理系统
  • flutter 装饰类【BoxDecoration】
  • 上传自己的镜像到docker hub详细教程
  • 浅谈云计算06 | 云管理系统架构
  • 论文阅读:《Whole-animal connectomes of both Caenorhabditis elegans sexes》
  • 7.STM32F407ZGT6-RTC