idTech4.Renderer.idRenderModel_Static.PartialInitFromFile C# (CSharp) Method

PartialInitFromFile() public method

public PartialInitFromFile ( string fileName ) : void
fileName string
return void
		public override void PartialInitFromFile(string fileName)
		{
			if(this.Disposed == true)
			{
				throw new ObjectDisposedException(this.GetType().Name);
			}

			_fastLoad = true;

			InitFromFile(fileName);
		}