The Swartz-Manning’s first exhibit will provide a detailed history of Aaron Swartz Day. https://www.aaronswartzday.org/vr
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

DontDestroyOnLoad.cs 565B

123456789101112131415161718192021
  1. //======= Copyright (c) Valve Corporation, All rights reserved. ===============
  2. //
  3. // Purpose: This object won't be destroyed when a new scene is loaded
  4. //
  5. //=============================================================================
  6. using UnityEngine;
  7. using System.Collections;
  8. namespace Valve.VR.InteractionSystem
  9. {
  10. //-------------------------------------------------------------------------
  11. public class DontDestroyOnLoad : MonoBehaviour
  12. {
  13. //-------------------------------------------------
  14. void Awake()
  15. {
  16. DontDestroyOnLoad( this );
  17. }
  18. }
  19. }