12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
-
- // =================================
- // Namespaces.
- // =================================
- using UnityEngine;
- using UnityEngine.UI;
- // =================================
- // Define namespace.
- // =================================
- namespace MirzaBeig
- {
- namespace Demos
- {
- namespace ParticlePlayground
- {
- // =================================
- // Classes.
- // =================================
-
- public class BillboardCameraPlaneUVFX : MonoBehaviour
- {
- // =================================
- // Nested classes and structures.
- // =================================
- // ...
- // =================================
- // Variables.
- // =================================
- // ...
- Transform cameraTransform;
- // =================================
- // Functions.
- // =================================
- void Awake()
- {
- }
- // ...
- void Start()
- {
- cameraTransform = Camera.main.transform;
- }
- // ...
- void Update()
- {
- }
- // ...
- void LateUpdate()
- {
- transform.forward = -cameraTransform.forward;
- }
- // =================================
- // End functions.
- // =================================
- }
- // =================================
- // End namespace.
- // =================================
- }
- }
- }
- // =================================
- // --END-- //
- // =================================
|