Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. private Camera _camera;
  2. public new Camera camera {
  3. get {
  4. if (_camera == null) {
  5. _camera = camera;
  6. if (_camera == null) {
  7. Debug.LogWarning("No camera object attached!");
  8. return null;
  9. }
  10. }
  11. return _camera;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement