Search Unity

  1. Unity Asset Manager is now available in public beta. Try it out now and join the conversation here in the forums.
    Dismiss Notice

Issue with Tiny project

Discussion in 'Project Tiny' started by philipgg, Mar 25, 2019.

  1. philipgg

    philipgg

    Joined:
    Aug 20, 2018
    Posts:
    2
    Hello guys,

    just experimenting with Tiny I get some null exceptions when trying to use tiny, main problem is it doesn't switch to tiny Hierarchy as in the tutorials it still shows TinyProject-DoNotEdit Scene.

    also i get Null exception on line 364 for TinyHeirarchyWindow.cs

    Code (CSharp):
    1. private static void HandleSceneGraphChange(ChangeSource source, object originator)
    2.         {
    3.             foreach (var entityGroup in LoadedEntityGroups)
    4.             {
    5.                 var graph = EntityGroupManager.GetSceneGraph(entityGroup);
    6.                 graph.CommitChanges();
    7.             }
    8.  
    9.            [COLOR=#ff0000] [/COLOR][COLOR=#404040]Context.GetManager<IBindingsManager>().TransferAll(); <-- here null exception, its unity code[/COLOR]
    10.  
    11.             foreach (var window in s_ActiveWindows)
    12.             {
    13.                 window.m_TreeView.Invalidate();
    14.             }
    15.         }
    I am using MacOSX, unity 2018.9.3f1, Tiny mode -0.14.3 preview mode. Opening the workshop project.

    any help is appreciated.
     

    Attached Files:

  2. raymondyunity

    raymondyunity

    Unity Technologies

    Joined:
    Apr 30, 2018
    Posts:
    122
    Hey @philipgg,

    It looks like the Tiny package did not successfully install. Do you see a "Tiny" menu in your menu bar?

    Try the following steps:
    1) Uninstall the package.
    2) Set your window layouts to "Default".
    3) Install the Tiny Mode package again (make your you have a stable connection).

    You should not have to create a new Unity project but you can try that instead of uninstalling.

    Also I am assuming you mean Unity 2018.3.9f1 for your editor version.
     
  3. philipgg

    philipgg

    Joined:
    Aug 20, 2018
    Posts:
    2
    Hey Raymon,

    thanks for reply i tried your steps but still no luck.

    It worked out of the box on my PC ...

    bests