12345678910111213141516171819202122232425262728 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class FlagsClear : MonoBehaviour
- {
-
- void Start()
- {
-
- }
-
- void Update()
- {
- }
- public Camera ca;
- void OnPreRender()
- {
-
- }
- private void OnPostRender()
- {
- }
- }
|