12-13-2023, 12:36 AM
@Daspex
This is what I was looking for! Thank You
I will definitely have to check out the room and browse your script files to see exactly what's going on
// Rotation Stuff 1
DressDescription :DressR9ZRoom201c1++_Description .
{
.DressID I32(11172);
.DressName "Door Half Open";
.DressType I32(1);
.PrimaryZone :DZ_Room1++;
.CmdArray [
DressCmd . {
.Target "Room:SDoorBoddy_Cube_001";
.ParamID I32(0);
.Attr @ STransform .Rotation;
.Value @ ( F32(90) , F32(-45) , F32(0) );
};
DressCmd . {
.Target "Room:SDoorBoddy_Cube_001";
.ParamID I32(0);
.Attr @ STransform .Translation;
.Value @ ( F32(-1.5) , F32(0) , F32(+7) );
};
];
};
DressDescription :DressR9ZRoom201c1++_Description .
{
.DressID I32(11173);
.DressName "Door Open";
.DressType I32(1);
.PrimaryZone :DZ_Room1+=;
.CmdArray [
DressCmd . {
.Target "Room:SDoorBoddy_Cube_001";
.ParamID I32(0);
.Attr @ STransform .Rotation;
.Value @ ( F32(90) , F32(-90) , F32(0) );
};
DressCmd . {
.Target "Room:SDoorBoddy_Cube_001";
.ParamID I32(0);
.Attr @ STransform .Translation;
.Value @ ( F32(-7.6) , F32(0) , F32(+10.9) );
};
];
};
DressDescription :DressR9ZRoom201c1++_Description .
{
.DressID I32(11174);
.DressName "Door Closed";
.DressType I32(1);
.PrimaryZone :DZ_Room1+=;
.CmdArray [
DressCmd . {
.Target "Room:SDoorBoddy_Cube_001";
.ParamID I32(0);
.Attr @ STransform .Rotation;
.Value @ ( F32(90) , F32(0) , F32(0) );
};
DressCmd . {
.Target "Room:SDoorBoddy_Cube_001";
.ParamID I32(0);
.Attr @ STransform .Translation;
.Value @ ( F32(0) , F32(0) , F32(0) );
};
];
};
This is what I was looking for! Thank You
I will definitely have to check out the room and browse your script files to see exactly what's going on
// Rotation Stuff 1
DressDescription :DressR9ZRoom201c1++_Description .
{
.DressID I32(11172);
.DressName "Door Half Open";
.DressType I32(1);
.PrimaryZone :DZ_Room1++;
.CmdArray [
DressCmd . {
.Target "Room:SDoorBoddy_Cube_001";
.ParamID I32(0);
.Attr @ STransform .Rotation;
.Value @ ( F32(90) , F32(-45) , F32(0) );
};
DressCmd . {
.Target "Room:SDoorBoddy_Cube_001";
.ParamID I32(0);
.Attr @ STransform .Translation;
.Value @ ( F32(-1.5) , F32(0) , F32(+7) );
};
];
};
DressDescription :DressR9ZRoom201c1++_Description .
{
.DressID I32(11173);
.DressName "Door Open";
.DressType I32(1);
.PrimaryZone :DZ_Room1+=;
.CmdArray [
DressCmd . {
.Target "Room:SDoorBoddy_Cube_001";
.ParamID I32(0);
.Attr @ STransform .Rotation;
.Value @ ( F32(90) , F32(-90) , F32(0) );
};
DressCmd . {
.Target "Room:SDoorBoddy_Cube_001";
.ParamID I32(0);
.Attr @ STransform .Translation;
.Value @ ( F32(-7.6) , F32(0) , F32(+10.9) );
};
];
};
DressDescription :DressR9ZRoom201c1++_Description .
{
.DressID I32(11174);
.DressName "Door Closed";
.DressType I32(1);
.PrimaryZone :DZ_Room1+=;
.CmdArray [
DressCmd . {
.Target "Room:SDoorBoddy_Cube_001";
.ParamID I32(0);
.Attr @ STransform .Rotation;
.Value @ ( F32(90) , F32(0) , F32(0) );
};
DressCmd . {
.Target "Room:SDoorBoddy_Cube_001";
.ParamID I32(0);
.Attr @ STransform .Translation;
.Value @ ( F32(0) , F32(0) , F32(0) );
};
];
};
What I know about scripting I taught myself and I'm a lousy student
When modifying script I like to follow the bread crumbs
Sometimes they lead you to other files or someplace unexpected
Check my downloads for ReadMe or some kind of Notes
I'm always leaving bread crumbs to follow
When modifying script I like to follow the bread crumbs
Sometimes they lead you to other files or someplace unexpected
Check my downloads for ReadMe or some kind of Notes
I'm always leaving bread crumbs to follow