Resizing Scenes?
Tudo sobre iStripper
October 29, 2023, 12 respostas
For the girl on the left
Pour la fille à gauche
// Reflections of the secondary clip on the floor.
clipSprite { // LeftGirl clip reflection.
pos: -680, -470, 20
rot: 180, 0, 0
scale: -1, 1, 1 // Scale of the node x, y, z.
source: LeftGirl // This is the id of the clip. Has been created using clip node.
standingHeight: 500 // Expected height of standing clips. The sitting clips are scaled accordingly.
opacity: 0.3 // Opacity of the node from 0 (Completly transparent) to 1.
}
clipSprite { // RightGirl clip reflection.
pos: +670, -470, 20
rot: 180, 0, 0
scale: -1, 1, 1 // Negative scale for mirroring.
source: RightGirl
standingHeight: 500
opacity: 0.3
}
// Left secondary clip
clipSprite {
pos: -680, -470, 20
source: LeftGirl
scale: -1, 1, 1
standingHeight: 500
color: 1, 0.9, 0.9 // Indicates the color filter of the node. Each pixel of the texture will be filtered by this color (RGB from 0 to 1 for each composant).
material: true // true or false. false is the default, true indicates that this node will be influenced by lights.
resolution: 20 // How many rows and columns are used for light calculations with this sprite. The default is 1, adding more rows and columns get better results.
}
light {
pos: -680, -1000, 100
color: 0.9, 0.9, 0.9 // Light color (RGB).
}
light {
pos: -680, -400, 100
color: -0.4, -0.4, 1 // Blue one.
}