日期:2014-05-17 浏览次数:20430 次
CREATE TABLE animationOffsets(
animationResourceId_fk int not null foreign key references animationResources(animationResourceId_pk) on delete cascade,
eventPosition int not null,
offsetX float default 0.0,
offsetY float default 0.0,
offsetZ float default 0.0,
primary key(animationResourceId_fk, eventPosition)
)