mirror of
https://github.com/ConjureETS/CodenamePitchfork.git
synced 2026-03-24 00:51:07 +00:00
17 lines
248 B
C#
17 lines
248 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class test : MonoBehaviour {
|
|
|
|
// Use this for initialization
|
|
void Start () {
|
|
RenderSettings.ambientLight = Color.black;
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update () {
|
|
|
|
}
|
|
}
|