Stupid me! Committed in wrong console with wrong dir... here's the rest of

all files for the Ipo/Action/NLA makeover...
This commit is contained in:
2005-10-10 18:05:30 +00:00
parent 9b8868532a
commit 4bd9775936
36 changed files with 756 additions and 458 deletions

View File

@@ -1113,37 +1113,37 @@ static PyObject *World_insertIpoKey( BPy_World * self, PyObject * args )
map = texchannel_to_adrcode(self->world->texact);
if(key == IPOKEY_ZENITH) {
insertkey((ID *)self->world, WO_ZEN_R);
insertkey((ID *)self->world, WO_ZEN_G);
insertkey((ID *)self->world, WO_ZEN_B);
insertkey((ID *)self->world, ID_WO, NULL, NULL, WO_ZEN_R);
insertkey((ID *)self->world, ID_WO, NULL, NULL, WO_ZEN_G);
insertkey((ID *)self->world, ID_WO, NULL, NULL, WO_ZEN_B);
}
if(key == IPOKEY_HORIZON) {
insertkey((ID *)self->world, WO_HOR_R);
insertkey((ID *)self->world, WO_HOR_G);
insertkey((ID *)self->world, WO_HOR_B);
insertkey((ID *)self->world, ID_WO, NULL, NULL, WO_HOR_R);
insertkey((ID *)self->world, ID_WO, NULL, NULL, WO_HOR_G);
insertkey((ID *)self->world, ID_WO, NULL, NULL, WO_HOR_B);
}
if(key == IPOKEY_MIST) {
insertkey((ID *)self->world, WO_MISI);
insertkey((ID *)self->world, WO_MISTDI);
insertkey((ID *)self->world, WO_MISTSTA);
insertkey((ID *)self->world, WO_MISTHI);
insertkey((ID *)self->world, ID_WO, NULL, NULL, WO_MISI);
insertkey((ID *)self->world, ID_WO, NULL, NULL, WO_MISTDI);
insertkey((ID *)self->world, ID_WO, NULL, NULL, WO_MISTSTA);
insertkey((ID *)self->world, ID_WO, NULL, NULL, WO_MISTHI);
}
if(key == IPOKEY_STARS) {
insertkey((ID *)self->world, WO_STAR_R);
insertkey((ID *)self->world, WO_STAR_G);
insertkey((ID *)self->world, WO_STAR_B);
insertkey((ID *)self->world, WO_STARDIST);
insertkey((ID *)self->world, WO_STARSIZE);
insertkey((ID *)self->world, ID_WO, NULL, NULL, WO_STAR_R);
insertkey((ID *)self->world, ID_WO, NULL, NULL, WO_STAR_G);
insertkey((ID *)self->world, ID_WO, NULL, NULL, WO_STAR_B);
insertkey((ID *)self->world, ID_WO, NULL, NULL, WO_STARDIST);
insertkey((ID *)self->world, ID_WO, NULL, NULL, WO_STARSIZE);
}
if(key == IPOKEY_OFFSET) {
insertkey((ID *)self->world, map+MAP_OFS_X);
insertkey((ID *)self->world, map+MAP_OFS_Y);
insertkey((ID *)self->world, map+MAP_OFS_Z);
insertkey((ID *)self->world, ID_WO, NULL, NULL, map+MAP_OFS_X);
insertkey((ID *)self->world, ID_WO, NULL, NULL, map+MAP_OFS_Y);
insertkey((ID *)self->world, ID_WO, NULL, NULL, map+MAP_OFS_Z);
}
if(key == IPOKEY_SIZE) {
insertkey((ID *)self->world, map+MAP_SIZE_X);
insertkey((ID *)self->world, map+MAP_SIZE_Y);
insertkey((ID *)self->world, map+MAP_SIZE_Z);
insertkey((ID *)self->world, ID_WO, NULL, NULL, map+MAP_SIZE_X);
insertkey((ID *)self->world, ID_WO, NULL, NULL, map+MAP_SIZE_Y);
insertkey((ID *)self->world, ID_WO, NULL, NULL, map+MAP_SIZE_Z);
}
allspace(REMAKEIPO, 0);