using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class L03 : MonoBehaviour
{
void Start()
{
Debug.Log(transform.position.x) ; //用;结束语句
if(transform.position.y <= 5f)
{
Debug.Log("Hit the Ground!"); //用;结束语句
}
}
}
标点
. 句点运算符是一个句点或句号,常用于代码内的单词之间。
;的作用是终止语句。通常每一行末尾都有一个分号;,但并非所有代码都是语句,例如类声明语句的首尾,函数或if语句的首尾等。所有{}的末尾都不需要;
缩进
缩进非必须,但能提升阅读体验。良好的缩进能显示代码的功能结构。