Floating text, Rotation, Texture animation, Particle System This will make "Eye Candy" scripts work without modification in XEngine. The use of the CHANGED_REGION_RESTART hack is no longer needed. Implemented in MySQL only, hovertext also in SQLite.
9 lines
273 B
PL/PgSQL
9 lines
273 B
PL/PgSQL
BEGIN;
|
|
|
|
ALTER TABLE prims ADD COLUMN ColorR integer not null default 0;
|
|
ALTER TABLE prims ADD COLUMN ColorG integer not null default 0;
|
|
ALTER TABLE prims ADD COLUMN ColorB integer not null default 0;
|
|
ALTER TABLE prims ADD COLUMN ColorA integer not null default 0;
|
|
|
|
COMMIT;
|