更新ui
@@ -65,7 +65,7 @@
|
||||
},
|
||||
{
|
||||
"key": "category_1001",
|
||||
"language_en": "mature_lady",
|
||||
"language_en": "Mature Lady",
|
||||
"language_cn": "熟女",
|
||||
"language_hi": "परिपक्व महिला",
|
||||
"language_fr": "Femme mature",
|
||||
@@ -73,7 +73,7 @@
|
||||
},
|
||||
{
|
||||
"key": "category_1002",
|
||||
"language_en": "eighteen",
|
||||
"language_en": "Eighteen",
|
||||
"language_cn": "18岁",
|
||||
"language_hi": "अठारह वर्ष",
|
||||
"language_fr": "Dix-huit ans",
|
||||
@@ -81,7 +81,7 @@
|
||||
},
|
||||
{
|
||||
"key": "category_1003",
|
||||
"language_en": "hot_mommy",
|
||||
"language_en": "Hot Mommy",
|
||||
"language_cn": "辣妈",
|
||||
"language_hi": "सेक्सी माँ",
|
||||
"language_fr": "Maman sexy",
|
||||
@@ -89,7 +89,7 @@
|
||||
},
|
||||
{
|
||||
"key": "category_1004",
|
||||
"language_en": "binding",
|
||||
"language_en": "Binding",
|
||||
"language_cn": "捆绑",
|
||||
"language_hi": "बंधन",
|
||||
"language_fr": "Bondage",
|
||||
@@ -97,7 +97,7 @@
|
||||
},
|
||||
{
|
||||
"key": "category_1005",
|
||||
"language_en": "public_fight",
|
||||
"language_en": "Public Fight",
|
||||
"language_cn": "公众野战",
|
||||
"language_hi": "सार्वजनिक संभोग",
|
||||
"language_fr": "Sexe public",
|
||||
@@ -105,12 +105,20 @@
|
||||
},
|
||||
{
|
||||
"key": "category_1006",
|
||||
"language_en": "cartoon",
|
||||
"language_en": "Cartoon",
|
||||
"language_cn": "卡通",
|
||||
"language_hi": "कार्टून",
|
||||
"language_fr": "Dessin animé",
|
||||
"language_de": "Zeichentrick"
|
||||
},
|
||||
{
|
||||
"key": "category_1007",
|
||||
"language_en": "Up Coming",
|
||||
"language_cn": "Up Coming",
|
||||
"language_hi": "कार्टून",
|
||||
"language_fr": "Dessin animé",
|
||||
"language_de": "Zeichentrick"
|
||||
},
|
||||
{
|
||||
"key": "girl_10001_name",
|
||||
"language_en": "Anaya Kapoor",
|
||||
|
||||
@@ -46,5 +46,13 @@
|
||||
"category": 5,
|
||||
"isRelease": false,
|
||||
"path": "Image/Theme/1006"
|
||||
},
|
||||
{
|
||||
"id": 1007,
|
||||
"key": "category_1007",
|
||||
"name": "upcomming",
|
||||
"category": 6,
|
||||
"isRelease": false,
|
||||
"path": "Image/Theme/1007"
|
||||
}
|
||||
]
|
||||
@@ -119,12 +119,19 @@ export class SceneBgVideoLayer extends li_BaseView {
|
||||
this.videoPlayer.play();
|
||||
let uiT:UITransform = this.videoPlayer.node.getComponent(UITransform);
|
||||
|
||||
const size = uiT.contentSize;
|
||||
console.log(size);
|
||||
const videoSize = uiT.contentSize;
|
||||
const targetSize = data.size;
|
||||
console.log(targetSize);
|
||||
console.log('Video size:', videoSize, 'Target size:', targetSize);
|
||||
|
||||
this.videoPlayer.node.setScale(new Vec3(targetSize.y/576,targetSize.y/576,1));
|
||||
// 计算宽度和高度的缩放比例
|
||||
const scaleX = targetSize.width / videoSize.width;
|
||||
const scaleY = targetSize.height / videoSize.height;
|
||||
|
||||
// 选择较大的缩放比例以填满整个区域(可能超出但不会有黑边)
|
||||
const scale = Math.max(scaleX, scaleY);
|
||||
|
||||
console.log(`Video scaling: scaleX=${scaleX}, scaleY=${scaleY}, final scale=${scale}`);
|
||||
this.videoPlayer.node.setScale(new Vec3(scale, scale, 1));
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,12 @@
|
||||
import { _decorator, Label, Node, Sprite, VideoPlayer, instantiate } from "cc";
|
||||
import {
|
||||
_decorator,
|
||||
Label,
|
||||
Node,
|
||||
Sprite,
|
||||
VideoPlayer,
|
||||
instantiate,
|
||||
UITransform,
|
||||
} from "cc";
|
||||
import li_BaseView from "db://assets/Scripts/Main/Common/li_BaseView";
|
||||
import ResManager from "db://assets/Scripts/Main/Manager/ResManager";
|
||||
import { DetailImageItem } from "../../uiitems/DetailImageItem";
|
||||
@@ -71,6 +79,39 @@ export class GirlDetailPanel extends li_BaseView {
|
||||
this.avatarVideo.play();
|
||||
}
|
||||
}
|
||||
|
||||
adjustVideoScale() {
|
||||
if (!this.avatarVideo || !this.avatarVideo.node.parent) {
|
||||
return;
|
||||
}
|
||||
|
||||
const tryAdjustScale = () => {
|
||||
const parentTransform =
|
||||
this.avatarVideo.node.parent.getComponent(UITransform);
|
||||
const videoTransform = this.avatarVideo.node.getComponent(UITransform);
|
||||
|
||||
if (parentTransform && videoTransform && videoTransform.height > 0) {
|
||||
const scale = parentTransform.height / videoTransform.height;
|
||||
this.avatarVideo.node.setScale(scale, scale, 1);
|
||||
console.log(`Video scaled to: ${scale}, parent height: ${parentTransform.height}, video height: ${videoTransform.height}`);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
};
|
||||
|
||||
// 立即尝试一次
|
||||
if (!tryAdjustScale()) {
|
||||
// 如果失败,延迟尝试
|
||||
this.scheduleOnce(() => {
|
||||
if (!tryAdjustScale()) {
|
||||
// 再次延迟尝试
|
||||
this.scheduleOnce(() => {
|
||||
tryAdjustScale();
|
||||
}, 0.5);
|
||||
}
|
||||
}, 0.1);
|
||||
}
|
||||
}
|
||||
nameKey: string;
|
||||
tagKey: string;
|
||||
category;
|
||||
@@ -90,6 +131,14 @@ export class GirlDetailPanel extends li_BaseView {
|
||||
dataDetail.pics[0],
|
||||
"Chat18x"
|
||||
);
|
||||
|
||||
// 添加视频加载完成回调
|
||||
this.avatarVideo.node.on(VideoPlayer.EventType.READY_TO_PLAY, () => {
|
||||
this.adjustVideoScale();
|
||||
}, this);
|
||||
|
||||
// 也立即尝试调整(以防已经加载完成)
|
||||
this.adjustVideoScale();
|
||||
}
|
||||
if (dataDetail.pics.length > 1) {
|
||||
for (let i = this.imgsLayout.children.length - 1; i >= 0; i--) {
|
||||
|
||||
@@ -45,7 +45,7 @@ export class ThemePanel extends li_BaseView {
|
||||
this.registerListener();
|
||||
this.itemInst = this._nodeTab.ThemeItem.getComponent(ThemeItem);
|
||||
this.itemInst.node.active = false;
|
||||
this.content = this._nodeTab.AllThemesLayout;
|
||||
this.content = this._nodeTab.allThemecontent;
|
||||
|
||||
this.Show();
|
||||
}
|
||||
|
||||
@@ -12,6 +12,8 @@ const { ccclass, property } = _decorator;
|
||||
export class ThemeItem extends Component {
|
||||
@property(Sprite)
|
||||
lockImg: Sprite;
|
||||
@property(Sprite)
|
||||
lockCover: Sprite;
|
||||
@property(Label)
|
||||
titleName: Label;
|
||||
|
||||
@@ -35,7 +37,8 @@ export class ThemeItem extends Component {
|
||||
}
|
||||
|
||||
refresh(themeData: Theme) {
|
||||
this.lockImg.node.active = !themeData.isRelease;
|
||||
this.lockImg.node.active = this.lockCover.node.active =
|
||||
!themeData.isRelease;
|
||||
this.isLocked = !themeData.isRelease;
|
||||
this.key = themeData.key;
|
||||
this.titleName.string = LanguageUtils.getText(themeData.key);
|
||||
|
||||
@@ -36,6 +36,10 @@ export enum Category {
|
||||
* 卡通
|
||||
*/
|
||||
cartoon = 5,
|
||||
/**
|
||||
* 未完成
|
||||
*/
|
||||
upcomming = 6,
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -87,9 +87,6 @@
|
||||
{
|
||||
"__id__": 3
|
||||
},
|
||||
{
|
||||
"__id__": 9
|
||||
},
|
||||
{
|
||||
"__id__": 62
|
||||
},
|
||||
@@ -150,142 +147,6 @@
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "deco",
|
||||
"_objFlags": 0,
|
||||
"__editorExtras__": {},
|
||||
"_parent": {
|
||||
"__id__": 2
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 4
|
||||
},
|
||||
{
|
||||
"__id__": 6
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 8
|
||||
},
|
||||
"_lpos": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 1109.011,
|
||||
"z": 0
|
||||
},
|
||||
"_lrot": {
|
||||
"__type__": "cc.Quat",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0,
|
||||
"w": 1
|
||||
},
|
||||
"_lscale": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 1
|
||||
},
|
||||
"_mobility": 0,
|
||||
"_layer": 33554432,
|
||||
"_euler": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.UITransform",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"__editorExtras__": {},
|
||||
"node": {
|
||||
"__id__": 3
|
||||
},
|
||||
"_enabled": true,
|
||||
"__prefab": {
|
||||
"__id__": 5
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 1170,
|
||||
"height": 298.4
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.CompPrefabInfo",
|
||||
"fileId": "2828Qz8CBG6I1BcsGR7RhD"
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Sprite",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"__editorExtras__": {},
|
||||
"node": {
|
||||
"__id__": 3
|
||||
},
|
||||
"_enabled": true,
|
||||
"__prefab": {
|
||||
"__id__": 7
|
||||
},
|
||||
"_customMaterial": null,
|
||||
"_srcBlendFactor": 2,
|
||||
"_dstBlendFactor": 4,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_spriteFrame": {
|
||||
"__uuid__": "0b9ea17a-dae1-42ae-b32f-1571d1658fa6@f9941",
|
||||
"__expectedType__": "cc.SpriteFrame"
|
||||
},
|
||||
"_type": 0,
|
||||
"_fillType": 0,
|
||||
"_sizeMode": 0,
|
||||
"_fillCenter": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"_fillStart": 0,
|
||||
"_fillRange": 0,
|
||||
"_isTrimmedMode": true,
|
||||
"_useGrayscale": false,
|
||||
"_atlas": null,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.CompPrefabInfo",
|
||||
"fileId": "3bNWAaZptKuaKI9FIRXX+K"
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "47f8uAldRGvYYei/4UkdOo",
|
||||
"instance": null,
|
||||
"targetOverrides": null,
|
||||
"nestedPrefabInstanceRoots": null
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "Upper",
|
||||
@@ -295,6 +156,9 @@
|
||||
"__id__": 2
|
||||
},
|
||||
"_children": [
|
||||
{
|
||||
"__id__": 4
|
||||
},
|
||||
{
|
||||
"__id__": 10
|
||||
},
|
||||
@@ -352,13 +216,149 @@
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "bg",
|
||||
"_objFlags": 0,
|
||||
"__editorExtras__": {},
|
||||
"_parent": {
|
||||
"__id__": 3
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
"_components": [
|
||||
{
|
||||
"__id__": 5
|
||||
},
|
||||
{
|
||||
"__id__": 7
|
||||
}
|
||||
],
|
||||
"_prefab": {
|
||||
"__id__": 9
|
||||
},
|
||||
"_lpos": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": -1162.804,
|
||||
"z": 0
|
||||
},
|
||||
"_lrot": {
|
||||
"__type__": "cc.Quat",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0,
|
||||
"w": 1
|
||||
},
|
||||
"_lscale": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 1
|
||||
},
|
||||
"_mobility": 0,
|
||||
"_layer": 33554432,
|
||||
"_euler": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.UITransform",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"__editorExtras__": {},
|
||||
"node": {
|
||||
"__id__": 4
|
||||
},
|
||||
"_enabled": true,
|
||||
"__prefab": {
|
||||
"__id__": 6
|
||||
},
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 1170,
|
||||
"height": 2532
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0.5,
|
||||
"y": 0.5
|
||||
},
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.CompPrefabInfo",
|
||||
"fileId": "9erai1mrdJu5Qyj/fHCVMP"
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Sprite",
|
||||
"_name": "",
|
||||
"_objFlags": 0,
|
||||
"__editorExtras__": {},
|
||||
"node": {
|
||||
"__id__": 4
|
||||
},
|
||||
"_enabled": true,
|
||||
"__prefab": {
|
||||
"__id__": 8
|
||||
},
|
||||
"_customMaterial": null,
|
||||
"_srcBlendFactor": 2,
|
||||
"_dstBlendFactor": 4,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_spriteFrame": {
|
||||
"__uuid__": "943325de-7f76-4f86-881b-e3413d3ec18e@f9941",
|
||||
"__expectedType__": "cc.SpriteFrame"
|
||||
},
|
||||
"_type": 3,
|
||||
"_fillType": 1,
|
||||
"_sizeMode": 0,
|
||||
"_fillCenter": {
|
||||
"__type__": "cc.Vec2",
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"_fillStart": 1,
|
||||
"_fillRange": -0.13,
|
||||
"_isTrimmedMode": true,
|
||||
"_useGrayscale": false,
|
||||
"_atlas": null,
|
||||
"_id": ""
|
||||
},
|
||||
{
|
||||
"__type__": "cc.CompPrefabInfo",
|
||||
"fileId": "66jwQtTIpE0LZDTiL6kTcZ"
|
||||
},
|
||||
{
|
||||
"__type__": "cc.PrefabInfo",
|
||||
"root": {
|
||||
"__id__": 1
|
||||
},
|
||||
"asset": {
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "a6RMmHy2BLu4x3mwPxPeqB",
|
||||
"instance": null,
|
||||
"targetOverrides": null,
|
||||
"nestedPrefabInstanceRoots": null
|
||||
},
|
||||
{
|
||||
"__type__": "cc.Node",
|
||||
"_name": "ReturnBtn",
|
||||
"_objFlags": 0,
|
||||
"__editorExtras__": {},
|
||||
"_parent": {
|
||||
"__id__": 9
|
||||
"__id__": 3
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
@@ -453,9 +453,9 @@
|
||||
"_dstBlendFactor": 4,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 236,
|
||||
"g": 160,
|
||||
"b": 63,
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_spriteFrame": {
|
||||
@@ -502,9 +502,9 @@
|
||||
"_transition": 1,
|
||||
"_normalColor": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 236,
|
||||
"g": 160,
|
||||
"b": 63,
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_hoverColor": {
|
||||
@@ -598,8 +598,6 @@
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "72Zr8T/ixB7bYZRSWtwmd/",
|
||||
"instance": null,
|
||||
"targetOverrides": null,
|
||||
"nestedPrefabInstanceRoots": null
|
||||
},
|
||||
{
|
||||
@@ -608,7 +606,7 @@
|
||||
"_objFlags": 0,
|
||||
"__editorExtras__": {},
|
||||
"_parent": {
|
||||
"__id__": 9
|
||||
"__id__": 3
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
@@ -629,7 +627,7 @@
|
||||
"_lpos": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": -108.3130000000001,
|
||||
"y": -126.88400000000001,
|
||||
"z": 0
|
||||
},
|
||||
"_lrot": {
|
||||
@@ -700,14 +698,14 @@
|
||||
"_dstBlendFactor": 4,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 10,
|
||||
"g": 10,
|
||||
"b": 10,
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_string": "Valeria",
|
||||
"_horizontalAlign": 1,
|
||||
"_verticalAlign": 1,
|
||||
"_verticalAlign": 2,
|
||||
"_actualFontSize": 70,
|
||||
"_fontSize": 70,
|
||||
"_fontFamily": "NotoSans-Regular",
|
||||
@@ -768,7 +766,7 @@
|
||||
"_left": 0,
|
||||
"_right": 0,
|
||||
"_top": 0,
|
||||
"_bottom": 35.49099999999989,
|
||||
"_bottom": 16.91999999999998,
|
||||
"_horizontalCenter": 0,
|
||||
"_verticalCenter": 0,
|
||||
"_isAbsLeft": true,
|
||||
@@ -796,8 +794,6 @@
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "39EnTuibZGCr652I/KtAjK",
|
||||
"instance": null,
|
||||
"targetOverrides": null,
|
||||
"nestedPrefabInstanceRoots": null
|
||||
},
|
||||
{
|
||||
@@ -806,7 +802,7 @@
|
||||
"_objFlags": 0,
|
||||
"__editorExtras__": {},
|
||||
"_parent": {
|
||||
"__id__": 9
|
||||
"__id__": 3
|
||||
},
|
||||
"_children": [
|
||||
{
|
||||
@@ -1172,8 +1168,6 @@
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "57e5J7vh1M7p6trwHvaWGq",
|
||||
"instance": null,
|
||||
"targetOverrides": null,
|
||||
"nestedPrefabInstanceRoots": null
|
||||
},
|
||||
{
|
||||
@@ -1182,7 +1176,7 @@
|
||||
"_objFlags": 0,
|
||||
"__editorExtras__": {},
|
||||
"_parent": {
|
||||
"__id__": 9
|
||||
"__id__": 3
|
||||
},
|
||||
"_children": [],
|
||||
"_active": true,
|
||||
@@ -1274,9 +1268,9 @@
|
||||
"_dstBlendFactor": 4,
|
||||
"_color": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 130,
|
||||
"g": 54,
|
||||
"b": 136,
|
||||
"r": 255,
|
||||
"g": 255,
|
||||
"b": 255,
|
||||
"a": 255
|
||||
},
|
||||
"_spriteFrame": {
|
||||
@@ -1347,8 +1341,6 @@
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "bfSWNeNClPV7y6vofKsuzM",
|
||||
"instance": null,
|
||||
"targetOverrides": null,
|
||||
"nestedPrefabInstanceRoots": null
|
||||
},
|
||||
{
|
||||
@@ -1357,7 +1349,7 @@
|
||||
"_objFlags": 0,
|
||||
"__editorExtras__": {},
|
||||
"node": {
|
||||
"__id__": 9
|
||||
"__id__": 3
|
||||
},
|
||||
"_enabled": true,
|
||||
"__prefab": {
|
||||
@@ -1385,9 +1377,9 @@
|
||||
"_objFlags": 0,
|
||||
"__editorExtras__": {},
|
||||
"node": {
|
||||
"__id__": 9
|
||||
"__id__": 3
|
||||
},
|
||||
"_enabled": true,
|
||||
"_enabled": false,
|
||||
"__prefab": {
|
||||
"__id__": 58
|
||||
},
|
||||
@@ -1430,7 +1422,7 @@
|
||||
"_objFlags": 0,
|
||||
"__editorExtras__": {},
|
||||
"node": {
|
||||
"__id__": 9
|
||||
"__id__": 3
|
||||
},
|
||||
"_enabled": true,
|
||||
"__prefab": {
|
||||
@@ -1469,8 +1461,6 @@
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "bbti0yYsZHGpPCtqZ37P2r",
|
||||
"instance": null,
|
||||
"targetOverrides": null,
|
||||
"nestedPrefabInstanceRoots": null
|
||||
},
|
||||
{
|
||||
@@ -3291,7 +3281,7 @@
|
||||
"_lpos": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": 0,
|
||||
"y": -50,
|
||||
"y": -61.700000000000045,
|
||||
"z": 0
|
||||
},
|
||||
"_lrot": {
|
||||
@@ -3332,7 +3322,7 @@
|
||||
"_contentSize": {
|
||||
"__type__": "cc.Size",
|
||||
"width": 1167,
|
||||
"height": 2032
|
||||
"height": 2008.6
|
||||
},
|
||||
"_anchorPoint": {
|
||||
"__type__": "cc.Vec2",
|
||||
@@ -3361,7 +3351,7 @@
|
||||
"_target": null,
|
||||
"_left": 0,
|
||||
"_right": 0,
|
||||
"_top": 300,
|
||||
"_top": 323.4,
|
||||
"_bottom": 200,
|
||||
"_horizontalCenter": 0,
|
||||
"_verticalCenter": 0,
|
||||
@@ -3702,7 +3692,7 @@
|
||||
},
|
||||
"_lpos": {
|
||||
"__type__": "cc.Vec3",
|
||||
"x": -505.45,
|
||||
"x": -483.71500000000003,
|
||||
"y": 47,
|
||||
"z": 0
|
||||
},
|
||||
@@ -4300,7 +4290,7 @@
|
||||
"a": 255
|
||||
},
|
||||
"_spriteFrame": {
|
||||
"__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
|
||||
"__uuid__": "4cef8664-eeed-4be5-b33b-1bb74a6019cb@f9941",
|
||||
"__expectedType__": "cc.SpriteFrame"
|
||||
},
|
||||
"_type": 1,
|
||||
@@ -4340,7 +4330,7 @@
|
||||
}
|
||||
],
|
||||
"_interactable": true,
|
||||
"_transition": 2,
|
||||
"_transition": 0,
|
||||
"_normalColor": {
|
||||
"__type__": "cc.Color",
|
||||
"r": 214,
|
||||
@@ -4370,7 +4360,7 @@
|
||||
"a": 255
|
||||
},
|
||||
"_normalSprite": {
|
||||
"__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
|
||||
"__uuid__": "4cef8664-eeed-4be5-b33b-1bb74a6019cb@f9941",
|
||||
"__expectedType__": "cc.SpriteFrame"
|
||||
},
|
||||
"_hoverSprite": {
|
||||
@@ -4415,8 +4405,6 @@
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "63rx8crEFCYI2KnhlywsIA",
|
||||
"instance": null,
|
||||
"targetOverrides": null,
|
||||
"nestedPrefabInstanceRoots": null
|
||||
},
|
||||
{
|
||||
@@ -4819,8 +4807,6 @@
|
||||
"__id__": 0
|
||||
},
|
||||
"fileId": "81Uff7uwFDBpNbH8mEhRRb",
|
||||
"instance": null,
|
||||
"targetOverrides": null,
|
||||
"nestedPrefabInstanceRoots": null
|
||||
},
|
||||
{
|
||||
|
||||
|
After Width: | Height: | Size: 108 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "82aaafa8-eac0-4090-8a18-35d5a474cfec",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "82aaafa8-eac0-4090-8a18-35d5a474cfec@6c48a",
|
||||
"displayName": "1007",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "82aaafa8-eac0-4090-8a18-35d5a474cfec",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "82aaafa8-eac0-4090-8a18-35d5a474cfec@f9941",
|
||||
"displayName": "1007",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 550,
|
||||
"height": 450,
|
||||
"rawWidth": 550,
|
||||
"rawHeight": 450,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-275,
|
||||
-225,
|
||||
0,
|
||||
275,
|
||||
-225,
|
||||
0,
|
||||
-275,
|
||||
225,
|
||||
0,
|
||||
275,
|
||||
225,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
450,
|
||||
550,
|
||||
450,
|
||||
0,
|
||||
0,
|
||||
550,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-275,
|
||||
-225,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
275,
|
||||
225,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "82aaafa8-eac0-4090-8a18-35d5a474cfec@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "82aaafa8-eac0-4090-8a18-35d5a474cfec@6c48a"
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
themepanel.titleGirls Online在线选妃+ऑनलाइन लड़कियाँFilles en ligneMädchen Onlinethemepanel.recomandtextDaily Recomand每日推荐%दैनिक सिफारिशRecommandation quotidienneTägliche Empfehlunggirllistpanel.title Girl List技师列表,लड़कियों की सूचीListe des filles␍Mädchenlistegirldetailpanel.chatbtn
|
||||
themepanel.titleGirls Online在线选妃+ऑनलाइन लड़कियाँFilles en ligneMädchen Onlinethemepanel.recomandtextDaily Recomand每日推荐%दैनिक सिफारिशRecommandation quotidienneTägliche Empfehlunggirllistpanel.title Girl List技师列表,लड़कियों की सूचीListe des filles␍Mädchenlistegirldetailpanel.chatbtn
|
||||
Send Msgs!发送消息संदेश भेजेंEnvoyer un messageNachricht sendengirldetailpanel.nameName:名字:
|
||||
नाम:Nom:Name:girldetailpanel.ageAge:年龄:␍उम्र:Âge:Alter:girldetailpanel.descDescription:␍自我介绍:विवरण:Description:␍Beschreibung:chatpanel.inputplaceholder Messages!请输入:संदेश लिखेंÉcrivez ici...Nachricht eingeben␍category_1001mature_lady熟女%परिपक्व महिलाFemme mature
|
||||
Reife Dame␍category_1002eighteen18岁अठारह वर्षDix-huit ansAchtzehn␍category_1003 hot_mommy辣妈सेक्सी माँ
|
||||
Maman sexyHeiße Mama␍category_1004binding捆绑बंधनBondageFesseln␍category_1005public_fight公众野战+सार्वजनिक संभोगSexe publicÖffentlicher Sex␍category_1006cartoon卡通कार्टून␍Dessin animéZeichentrickgirl_10001_nameAnaya Kapoor 阿纳雅आन्या कपूरAnaya KapoorAnaya Kapoorgirl_10002_nameMeher Joshi梅尔मेहर जोशीMeher JoshiMeher Joshigirl_10003_name
|
||||
नाम:Nom:Name:girldetailpanel.ageAge:年龄:␍उम्र:Âge:Alter:girldetailpanel.descDescription:␍自我介绍:विवरण:Description:␍Beschreibung:chatpanel.inputplaceholder Messages!请输入:संदेश लिखेंÉcrivez ici...Nachricht eingeben␍category_1001Mature Lady熟女%परिपक्व महिलाFemme mature
|
||||
Reife Dame␍category_1002Eighteen18岁अठारह वर्षDix-huit ansAchtzehn␍category_1003 Hot Mommy辣妈सेक्सी माँ
|
||||
Maman sexyHeiße Mama␍category_1004Binding捆绑बंधनBondageFesseln␍category_1005Public Fight公众野战+सार्वजनिक संभोगSexe publicÖffentlicher Sex␍category_1006Cartoon卡通कार्टून␍Dessin animéZeichentrick␍category_1007 Up Coming Up Comingकार्टून␍Dessin animéZeichentrickgirl_10001_nameAnaya Kapoor 阿纳雅आन्या कपूरAnaya KapoorAnaya Kapoorgirl_10002_nameMeher Joshi梅尔मेहर जोशीMeher JoshiMeher Joshigirl_10003_name
|
||||
Sana Reddy萨娜साना रेड्डी
|
||||
Sana Reddy
|
||||
Sana Reddygirl_10001_tag Hot|Horny␍火辣|饥渴"सेक्सी|कामुकChaude|Excitée
|
||||
|
||||
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 818 B After Width: | Height: | Size: 47 KiB |
@@ -46,10 +46,10 @@
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 204,
|
||||
"height": 217,
|
||||
"rawWidth": 204,
|
||||
"rawHeight": 217,
|
||||
"width": 351,
|
||||
"height": 800,
|
||||
"rawWidth": 351,
|
||||
"rawHeight": 800,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
@@ -61,17 +61,17 @@
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-102,
|
||||
-108.5,
|
||||
-175.5,
|
||||
-400,
|
||||
0,
|
||||
102,
|
||||
-108.5,
|
||||
175.5,
|
||||
-400,
|
||||
0,
|
||||
-102,
|
||||
108.5,
|
||||
-175.5,
|
||||
400,
|
||||
0,
|
||||
102,
|
||||
108.5,
|
||||
175.5,
|
||||
400,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
@@ -84,12 +84,12 @@
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
217,
|
||||
204,
|
||||
217,
|
||||
800,
|
||||
351,
|
||||
800,
|
||||
0,
|
||||
0,
|
||||
204,
|
||||
351,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
@@ -103,13 +103,13 @@
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-102,
|
||||
-108.5,
|
||||
-175.5,
|
||||
-400,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
102,
|
||||
108.5,
|
||||
175.5,
|
||||
400,
|
||||
0
|
||||
]
|
||||
},
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 9.2 KiB |
@@ -46,10 +46,10 @@
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 44,
|
||||
"height": 44,
|
||||
"rawWidth": 44,
|
||||
"rawHeight": 44,
|
||||
"width": 208,
|
||||
"height": 208,
|
||||
"rawWidth": 208,
|
||||
"rawHeight": 208,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
@@ -61,17 +61,17 @@
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-22,
|
||||
-22,
|
||||
-104,
|
||||
-104,
|
||||
0,
|
||||
22,
|
||||
-22,
|
||||
104,
|
||||
-104,
|
||||
0,
|
||||
-22,
|
||||
22,
|
||||
-104,
|
||||
104,
|
||||
0,
|
||||
22,
|
||||
22,
|
||||
104,
|
||||
104,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
@@ -84,12 +84,12 @@
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
44,
|
||||
44,
|
||||
44,
|
||||
208,
|
||||
208,
|
||||
208,
|
||||
0,
|
||||
0,
|
||||
44,
|
||||
208,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
@@ -103,13 +103,13 @@
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-22,
|
||||
-22,
|
||||
-104,
|
||||
-104,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
22,
|
||||
22,
|
||||
104,
|
||||
104,
|
||||
0
|
||||
]
|
||||
},
|
||||
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "4fb0d3b0-40f8-4bbc-913a-ec04cba7e016",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "4fb0d3b0-40f8-4bbc-913a-ec04cba7e016@6c48a",
|
||||
"displayName": "chat_bubble_002",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "4fb0d3b0-40f8-4bbc-913a-ec04cba7e016",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "4fb0d3b0-40f8-4bbc-913a-ec04cba7e016@f9941",
|
||||
"displayName": "chat_bubble_002",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 69,
|
||||
"height": 60,
|
||||
"rawWidth": 69,
|
||||
"rawHeight": 60,
|
||||
"borderTop": 27.1,
|
||||
"borderBottom": 27.1,
|
||||
"borderLeft": 30,
|
||||
"borderRight": 30,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-34.5,
|
||||
-30,
|
||||
0,
|
||||
34.5,
|
||||
-30,
|
||||
0,
|
||||
-34.5,
|
||||
30,
|
||||
0,
|
||||
34.5,
|
||||
30,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
60,
|
||||
69,
|
||||
60,
|
||||
0,
|
||||
0,
|
||||
69,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-34.5,
|
||||
-30,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
34.5,
|
||||
30,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "4fb0d3b0-40f8-4bbc-913a-ec04cba7e016@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "4fb0d3b0-40f8-4bbc-913a-ec04cba7e016@6c48a"
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"ver": "1.0.27",
|
||||
"importer": "image",
|
||||
"imported": true,
|
||||
"uuid": "1622aad1-df40-4d88-94cb-fe395a2b26fd",
|
||||
"files": [
|
||||
".json",
|
||||
".png"
|
||||
],
|
||||
"subMetas": {
|
||||
"6c48a": {
|
||||
"importer": "texture",
|
||||
"uuid": "1622aad1-df40-4d88-94cb-fe395a2b26fd@6c48a",
|
||||
"displayName": "simple_frame_002",
|
||||
"id": "6c48a",
|
||||
"name": "texture",
|
||||
"userData": {
|
||||
"wrapModeS": "clamp-to-edge",
|
||||
"wrapModeT": "clamp-to-edge",
|
||||
"imageUuidOrDatabaseUri": "1622aad1-df40-4d88-94cb-fe395a2b26fd",
|
||||
"isUuid": true,
|
||||
"visible": false,
|
||||
"minfilter": "linear",
|
||||
"magfilter": "linear",
|
||||
"mipfilter": "none",
|
||||
"anisotropy": 0
|
||||
},
|
||||
"ver": "1.0.22",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
},
|
||||
"f9941": {
|
||||
"importer": "sprite-frame",
|
||||
"uuid": "1622aad1-df40-4d88-94cb-fe395a2b26fd@f9941",
|
||||
"displayName": "simple_frame_002",
|
||||
"id": "f9941",
|
||||
"name": "spriteFrame",
|
||||
"userData": {
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 56,
|
||||
"height": 56,
|
||||
"rawWidth": 56,
|
||||
"rawHeight": 56,
|
||||
"borderTop": 25,
|
||||
"borderBottom": 25,
|
||||
"borderLeft": 25,
|
||||
"borderRight": 25,
|
||||
"packable": true,
|
||||
"pixelsToUnit": 100,
|
||||
"pivotX": 0.5,
|
||||
"pivotY": 0.5,
|
||||
"meshType": 0,
|
||||
"vertices": {
|
||||
"rawPosition": [
|
||||
-28,
|
||||
-28,
|
||||
0,
|
||||
28,
|
||||
-28,
|
||||
0,
|
||||
-28,
|
||||
28,
|
||||
0,
|
||||
28,
|
||||
28,
|
||||
0
|
||||
],
|
||||
"indexes": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
2,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"uv": [
|
||||
0,
|
||||
56,
|
||||
56,
|
||||
56,
|
||||
0,
|
||||
0,
|
||||
56,
|
||||
0
|
||||
],
|
||||
"nuv": [
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1
|
||||
],
|
||||
"minPos": [
|
||||
-28,
|
||||
-28,
|
||||
0
|
||||
],
|
||||
"maxPos": [
|
||||
28,
|
||||
28,
|
||||
0
|
||||
]
|
||||
},
|
||||
"isUuid": true,
|
||||
"imageUuidOrDatabaseUri": "1622aad1-df40-4d88-94cb-fe395a2b26fd@6c48a",
|
||||
"atlasUuid": ""
|
||||
},
|
||||
"ver": "1.0.12",
|
||||
"imported": true,
|
||||
"files": [
|
||||
".json"
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
},
|
||||
"userData": {
|
||||
"type": "sprite-frame",
|
||||
"hasAlpha": true,
|
||||
"fixAlphaTransparencyArtifacts": false,
|
||||
"redirect": "1622aad1-df40-4d88-94cb-fe395a2b26fd@6c48a"
|
||||
}
|
||||
}
|
||||