November 5, 2019 (edited) , 翻译为ZH (显示翻译) , 从EN翻译 (展示原始文件)
The scene is defined in the Background 2D.scn file which is to be found in the same folder as the Backgrounds sub-folder that you say you have changed the picture in.
Background 2D.scn is a simple text file so you can edit it with Notepad or Notepad++. Here is a modified version that only plays bikini clips and has no camera movement. There is another modification that you can do to only have standing clips, or to only have "table" clips. You should call your modified version something different or else it may be overwritten at sometime in the future.
text: text.txt
clip {
id: Clip
category: bikini // ADD THIS LINE TO ONLY PLAY CLIPS FEATURING BIKINIS
deny: behindtable, top, inout // MODIFIED TO STOP SWING CLIPS AND INOUT CLIPS
}
texture {
id: Background2D
source: Backgrounds
}
camera {
type: 2D
pos: 0, 0 // CHANGED FROM -10, 0 BECAUSE WE WILL NO LONGER BE MOVING THE CAMERA
size: 800, 450
// animate: 15, PingPong, InOutQuad, pos, 20, 20 // COMMENT OUT to stop camera movement
sprite {
pos: 400, 150
hotspot: 0.5, 0.5
size: 820, 615
source: Background2D
blend: false
}
clipSprite {
pos: 400, 450 // CHANGE THESE NUMBERS TO MOVE THE MODEL TO A DIFFERENT PLACE
standingHeight: 380
source: Clip
}
clipNameSprite {
pos: 400, 450
scale: 0.5
hotspot: 0.5, 1
source: Clip
}
}