temp save

This commit is contained in:
AI Health Developer
2025-04-10 18:01:01 +08:00
parent faa6a2c4dc
commit 2caa476640
84 changed files with 1908 additions and 800 deletions

View File

@@ -571,12 +571,17 @@ XPRoomGraffitiGiftAnimationViewDelegate
}
self.isRoomBannerV2Displaying = YES;
@kWeakify(self);
RoomInfoModel *roomInfo = self.hostDelegate.getRoomInfo;
[BroveGiftBannerView display:self.bannerContainer
inRoomUid:roomInfo.uid
with:obj
complete:^{
@kStrongify(self);
self.isRoomBannerV2Displaying = NO;
[self processNextRoomEffectAttachment];
} exitCurrentRoom:^{
@kStrongify(self);
[self.hostDelegate exitRoom];
}];
}
@@ -696,17 +701,20 @@ XPRoomGraffitiGiftAnimationViewDelegate
}
- (void)loadBroveSVGAVideoItem:(NSInteger)level {
if (level < 3) {
return;
}
NSString *svgaItemName = @"";
SVGAVideoEntity *entity;
switch (level) {
case 1:
svgaItemName = @"小";
entity = self.broveSVGAEntity_lv_1;
break;
case 2:
svgaItemName = @"中";
entity = self.broveSVGAEntity_lv_2;
break;
// case 1:
// svgaItemName = @"小";
// entity = self.broveSVGAEntity_lv_1;
// break;
// case 2:
// svgaItemName = @"中";
// entity = self.broveSVGAEntity_lv_2;
// break;
case 3:
svgaItemName = @"大";
entity = self.broveSVGAEntity_lv_3;
@@ -736,12 +744,12 @@ XPRoomGraffitiGiftAnimationViewDelegate
completionBlock:^(SVGAVideoEntity * _Nonnull videoItem) {
@kStrongify(self);
switch (level) {
case 1:
self.broveSVGAEntity_lv_1 = videoItem;
break;
case 2:
self.broveSVGAEntity_lv_2 = videoItem;
break;
// case 1:
// self.broveSVGAEntity_lv_1 = videoItem;
// break;
// case 2:
// self.broveSVGAEntity_lv_2 = videoItem;
// break;
case 3:
self.broveSVGAEntity_lv_3 = videoItem;
break;