<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2900.2853" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>As mentioned in a previous post,bit fields to flag 
as layer numbers are no good after you shift past 1&lt;&lt;31, so Blender's 
number of layers will never go past 31 (which I have achieved) expanding 
Blender's layer count to&nbsp;31 layers&nbsp;using the present method in 
Blender's codebase.&nbsp;</FONT></DIV>
<DIV><FONT face=Arial size=2>I want to give Blender "at least"&nbsp; 256 scene 
layers.</FONT><FONT face=Arial size=2>Lightwave,Maya and others have 999.I have 
to load a layer number identification table that will load "once" on Blender's 
startup in order to statically assign layer numbers instead of assigning that 
many layer numbers "on the fly"every time a function is called which is 
inefficient as regard code speed.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>&nbsp;My question is, is there a module in Blender 
that initializes "once" on startup so that I can ride that module or function to 
initialize a layer table? If this doesn't exist, the only other thing is a 
header file with a large number of definitions&nbsp;and large arrays that would 
repeatedly load on the fly.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>If there are any other ideas as to how I can do 
this efficiently, please share.</FONT></DIV></BODY></HTML>