Out of memory loading solid: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
m (Toned description down)
Line 1: Line 1:
It's a complicated error that can totally up set a level designer! It appers while loading a '''VMF'''.It is rarely seen but can appear '''IF SOMEBODY HAS CREATED TOO MANY SOLIDS AT ONCE AND TYING THEM TO ENTITY OR WORLD'''. Simply just try to save your project as many times as you can and reload hammer while creating complicated solids that are combined with [[func_detail]]s. {{TODO|write a better description}}
This error appers while loading a [[VMF]]. It is rarely seen but can appear if there are '''too many''' solids at once tied to an entity or the world. Simply just try to save your project as many times as you can and reload hammer while creating complicated solids that are combined with [[func_detail]]s. {{TODO|write a better description}}


----
----

Revision as of 10:44, 4 February 2012

This error appers while loading a VMF. It is rarely seen but can appear if there are too many solids at once tied to an entity or the world. Simply just try to save your project as many times as you can and reload hammer while creating complicated solids that are combined with func_details.

Todo: write a better description

Here is an example how to erase WRONG solids:

1. Open your map file with Notepad++ and go to line that Hammer tells you where ERROR:7 exist. 2. You should find a SOLID group there. 3. While looking at it's sttings it will look like this:

solid
	{
		"id" "33026"
		side
		{
			"id" "21912"
			"plane" "(1.#QNAN 1.#QNAN -132) (1.#QNAN 1.#QNAN -168) (1.#QNAN 1.#QNAN -168)"
			"material" "TOOLS/TOOLSNODRAW"
			"uaxis" "[1 0 0 0] 0.25"
			"vaxis" "[0 -1 0 0] 0.25"
			"rotation" "0"
			"lightmapscale" "16"
			"smoothing_groups" "0"
		}
		side
		{
			"id" "21911"
			"plane" "(1.#QNAN 1.#QNAN -140) (1.#QNAN 1.#QNAN -176) (1.#QNAN 1.#QNAN -176)"
			"material" "TOOLS/TOOLSNODRAW"
			"uaxis" "[1 0 0 0] 0.25"
			"vaxis" "[0 -1 0 0] 0.25"
			"rotation" "0"
			"lightmapscale" "16"
			"smoothing_groups" "0"
		}
		side
		{
			"id" "21910"
			"plane" "(1.#QNAN 1.#QNAN -132) (1.#QNAN 1.#QNAN -132) (1.#QNAN 1.#QNAN -140)"
			"material" "TOOLS/TOOLSNODRAW"
			"uaxis" "[0 1 0 0] 0.25"
			"vaxis" "[0 0 -1 0] 0.25"
			"rotation" "0"
			"lightmapscale" "16"
			"smoothing_groups" "0"
		}
		side
		{
			"id" "21909"
			"plane" "(1.#QNAN 1.#QNAN -176) (1.#QNAN 1.#QNAN -176) (1.#QNAN 1.#QNAN -168)"
			"material" "TOOLS/TOOLSNODRAW"
			"uaxis" "[0 1 0 0] 0.25"
			"vaxis" "[0 0 -1 0] 0.25"
			"rotation" "0"
			"lightmapscale" "16"
			"smoothing_groups" "0"
		}
		side
		{
			"id" "21908"
			"plane" "(1.#QNAN 1.#QNAN -168) (1.#QNAN 1.#QNAN -132) (1.#QNAN 1.#QNAN -140)"
			"material" "TOOLS/TOOLSNODRAW"
			"uaxis" "[1 0 0 0] 0.25"
			"vaxis" "[0 0 -1 0] 0.25"
			"rotation" "0"
			"lightmapscale" "16"
			"smoothing_groups" "0"
		}
		side
		{
			"id" "21907"
			"plane" "(1.#QNAN 1.#QNAN -176) (1.#QNAN 1.#QNAN -140) (1.#QNAN 1.#QNAN -132)"
			"material" "TOOLS/TOOLSNODRAW"
			"uaxis" "[1 0 0 0] 0.25"
			"vaxis" "[0 0 -1 0] 0.25"
			"rotation" "0"
			"lightmapscale" "16"
			"smoothing_groups" "0"
		}
		editor
		{
			"color" "0 219 116"
			"visgroupshown" "1"
			"visgroupautoshown" "1"
		}
}

4. By the look there is no such location as written above "1.#QNAN".

Confirm:(it is probably the solid with QUERY NO ASSINGED to NORMALS)

5. Simply erase all wrong solid data from your VMF and that ought to bring your level back to usable form.

--Pitt1993 02:37, 4 February 2012 (PST)