Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 /
  • Help Room /
avatar image
1
Question by Forbidden_Duck · Feb 07, 2017 at 04:37 AM · unity 5build-errorwindowsbuild errorx86

URGENT! I can't build with Unity

Hi,

I was trying to get my Game Music to work when I stumbled on an Unity Error with the File (Editor) (Build: Windows x86_64)

Image

Please help me ASAP!

screenshot-55.png (62.9 kB)
Comment
Add comment
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

1 Reply

· Add your reply
  • Sort: 
avatar image
1

Answer by oStaiko · Feb 07, 2017 at 06:13 AM

I had a similar issue before. When working with a partner from a different timezone, they sent files that to my computer, appeared to be 2 hours from the future. For some odd reason Unity cannot build with assets from the future. Unfortunately, you might just have to wait a few hours until it passes like I did! Other than than, edit the files to reset the date, or change your computers time? Goodluck

Comment
Add comment · Show 3 · Share
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 Forbidden_Duck · Feb 07, 2017 at 09:28 AM 0
Share

Hey, the thing is I didn't even tough them. I just copied them to my laptop then when I went back to my desktop it sent that error

avatar image Forbidden_Duck · Feb 07, 2017 at 09:31 AM 0
Share

Still got the same problem and I tried what you said

avatar image oStaiko Forbidden_Duck · Feb 07, 2017 at 02:41 PM 0
Share

Here, try this script, it might help refresh the dlls. Put it in an Editor folder, and then run the menu item "Assets/Reimport UI Assemblies" after the error appears again.

 using UnityEngine;
 using System.Collections.Generic;
 using UnityEditor;
 using System.Text.RegularExpressions;
 using System.IO;
 using System.Text;
  
 public class ReimportUnityEngineUI
 {
     [$$anonymous$$enuItem( "Assets/Reimport UI Assemblies", false, 100 )]
     public static void ReimportUI()
     {
 #if UNITY_4_6
         var path = EditorApplication.applicationContentsPath + "/UnityExtensions/Unity/GUISystem/{0}/{1}";
         var version = Regex.$$anonymous$$atch( Application.unityVersion,@"^[0-9]+\.[0-9]+\.[0-9]+").Value;
 #else
         var path = EditorApplication.applicationContentsPath + "/UnityExtensions/Unity/GUISystem/{1}";
         var version = string.Empty;
 #endif
         string engineDll = string.Format( path, version, "UnityEngine.UI.dll");
         string editorDll = string.Format( path, version, "Editor/UnityEditor.UI.dll");
         ReimportDll( engineDll );
         ReimportDll( editorDll );
                
     }
     static void ReimportDll(string path )
     {
         if ( File.Exists( path ) )
             AssetDatabase.ImportAsset( path, ImportAssetOptions.ForceUpdate| ImportAssetOptions.DontDownloadFromCacheServer );
         else
             Debug.LogError( string.Format( "DLL not found {0}", path ) );
     }
 }

Credits to j-robichaud for the script, but it was written for Unity 4.6, so I don't really know if it still works. If it doesn't, you'll have to try the reimport all assets option, or maybe just delete your whole library folder (get a backup first) and let it make a new one.

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

136 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Windows Store build errors inside Unity 1 Answer

BUİLD ERROR!! it just fails on this project,BUILD ERROR!!! it just fails on this project 0 Answers

Unity 5.3.1p1, iOS, Xcode project build Error 1 Answer

Random hard crash on start, both in Editor and in Windows standalone build. 1 Answer

Error on building "Unable to Find Plugins folder StandaloneWindows(64): Native VR plugins will not be loaded" 2 Answers


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