Catlike Unity Tutorials
Catlike Unity Tutorials
G0rgeoustray
Done is better than perfect.
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
笔记 - Basics02 - Building a Graph - Visualizing Math
原文链接1 Creating a Line of Cubes新建一个 Cube,将其做成 prefab。新建脚本 Graph.cs,附在空物体 Graph 上。代码如下:using UnityEngine;public class Graph : MonoBehaviour{ [SerializeField] // 在编辑器中拖动 prefab 为其赋值 Transform pointPrefab = default; void Awake () {原创 2020-12-19 00:15:25 · 246 阅读 · 1 评论 -
笔记 - Basics01 - Game Objects and Scripts - Creating a Clock
原文链接1 Creating a Project新建项目,移除代码编辑器以外的 package1.4 Color SpaceEdit / Project Settings… then select the Player category and scroll down to the Rendering section in the Other Settings panel. Make sure that Color Space is set to Linear.把渲染调成线性色彩空间,这是目前原创 2020-12-18 15:54:21 · 160 阅读 · 2 评论
分享