Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by Bourke · Jun 07, 2012 at 03:24 AM · c#

Simple Singleton between Design, Play, and Scene Change?

For some reason when switching between design and play modes m_instance wiped. Each time I enter play mode a new DoubleLockingSingletonTest is created. I was hoping to use the singleton in both design and play modes and between scenes.

using UnityEngine;

 public class DoubleLockingSingletonTest
 {
 
     private static volatile DoubleLockingSingletonTest m_instance;
     private static readonly object m_lock = new object();
 
     private DoubleLockingSingletonTest() { }
 
     public static DoubleLockingSingletonTest instance
     {
         get
         {
             //double locking Singleton
             if (m_instance == null)
             {
                 lock (m_lock)
                 {
                     if (m_instance == null)
                     {
                         m_instance = new DoubleLockingSingletonTest();
                         Debug.Log("Test.instance");
                     }
                 }
             }
 
             return m_instance;
         }
     }    
 }
Comment
Add comment · Show 4
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image kolban · Jun 07, 2012 at 04:14 AM 1
Share

I see m_instance is defined with the volatile qualifier. This means that it is free to be deleted and recreated whenever the environment wishes.

avatar image Bourke · Jun 07, 2012 at 12:07 PM 0
Share

"The volatile keyword indicates that a field can be modified in the program by something such as the operating system, the hardware, or a concurrently executing thread." http://msdn.microsoft.com/en-us/library/x13ttww7(v=vs.71).aspx

the double locking singleton is from http://msdn.microsoft.com/en-us/library/ff650316.aspx

avatar image whydoidoit · Jun 07, 2012 at 12:16 PM 1
Share

Wouldn't it be very dangerous to have a singleton persisting between Editor and Game? I mean the real Game would never have the other Singleton created in the Editor. You would be better off serializing the data when you switch from Editor to Game view and recreating it.

avatar image Bourke · Jun 08, 2012 at 01:06 AM 0
Share

$$anonymous$$y singleton is needed to manage native resources of which I need full control over all the time. However, you're trying to answer a question with a question =)

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Multiple Cars not working 1 Answer

Distribute terrain in zones 3 Answers

Code explanation - C# 1 Answer

Issues rotating around transform.up 2 Answers

Fixing screen resolution 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges