Take the 2-minute tour ×
Game Development Stack Exchange is a question and answer site for professional and independent game developers. It's 100% free, no registration required.

Why does this happen?

I'm new to Unity development. I have installed Unity yesterday (2015-09-06). This is the error that I get:

enter image description here

share|improve this question
3  
How much RAM does your machine have? –  Philipp 22 hours ago
    
Another question is when does this happen? –  Alexandre Vaillancourt 14 hours ago
    
whe try to import all Assets to project this happens. without inport assets I could create the project –  Sajitha Nilan 7 hours ago

2 Answers 2

Read the error:

System out of memory!

Maybe there is a lack of RAM on your system. Try closing some (if any) background applications to free up some RAM.

share|improve this answer

It's likely your system is out of RAM to be able to make the required memory allocations for opening the project. Have you tried a reboot?

If a reboot doesn't help, have a look to see what image file you have in your Unity assets folder that is around 128mb. I would guess as the crash is within Unity's Image.cpp source code, and the allocation is for 134217744 bytes or 128mb, that it is unable to find memory to create that large image file.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.