2026.1.23 适龄提醒 公告

This commit is contained in:
kongweiqiang 2026-01-23 17:34:56 +08:00
parent 3969ad9913
commit 2c5e7f3dcc
5 changed files with 3722 additions and 2872 deletions

View File

@ -2886,10 +2886,10 @@ RectTransform:
m_Children: []
m_Father: {fileID: 6785623969569000178}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 1}
m_AnchorMax: {x: 0.5, y: 1}
m_AnchoredPosition: {x: 0, y: -39.999985}
m_SizeDelta: {x: 340, y: 80}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: -2.5, y: 3}
m_SizeDelta: {x: -5, y: -6}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &7369170251871088168
CanvasRenderer:

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -106,9 +106,9 @@ end
---@private
function UISimpleNoticeView:InitGenerate__4(Root, data)
--[[
UIAnimator/Window/TitleLab
UIAnimator/Window/bg_title/TitleLab
--]]
local tmp = Root:Find("UIAnimator/Window/TitleLab").gameObject
local tmp = Root:Find("UIAnimator/Window/bg_title/TitleLab").gameObject
if tolua.getpeer(tmp) == nil then
tolua.setpeer(tmp, {})
end

View File

@ -11,6 +11,10 @@
---@field public loopVerticalScrollRect UnityEngine.UI.LoopVerticalScrollRect
---@field public content UINotifyTips__Generate_scrollViewNotify_content
---@class UINotifyTips__Generate_btnClose
---@field public gameObject UnityEngine.GameObject
---@field public button UnityEngine.UI.Button
---@class UINotifyTips__Generate_AnyBtn
---@field public gameObject UnityEngine.GameObject
---@field public button UnityEngine.UI.Button
@ -25,6 +29,7 @@
---@field private uIAnimator UINotifyTips__Generate_uIAnimator
---@field private AnyBtn UINotifyTips__Generate_AnyBtn
---@field private window UnityEngine.GameObject
---@field private btnClose UINotifyTips__Generate_btnClose
---@field private scrollViewNotify UINotifyTips__Generate_scrollViewNotify
---@field private BtnClose UINotifyTips__Generate_BtnClose
local UINotifyTipsView = class("UINotifyTipsView", require("UIViewBase"))
@ -52,6 +57,7 @@ function UINotifyTipsView:InitGenerate(Root, data)
self:InitGenerate__4(Root,data)
self:InitGenerate__5(Root,data)
self:InitGenerate__6(Root,data)
self:InitGenerate__7(Root,data)
end
@ -99,6 +105,20 @@ end
---@private
function UINotifyTipsView:InitGenerate__4(Root, data)
--[[
UIAnimator/Window/BtnClose
--]]
local tmp = Root:Find("UIAnimator/Window/BtnClose").gameObject
if tolua.getpeer(tmp) == nil then
tolua.setpeer(tmp, {})
end
self.btnClose = tmp
tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
end
---@private
function UINotifyTipsView:InitGenerate__5(Root, data)
--[[
UIAnimator/Window/ScrollViewNotify
--]]
@ -112,7 +132,7 @@ function UINotifyTipsView:InitGenerate__4(Root, data)
end
---@private
function UINotifyTipsView:InitGenerate__5(Root, data)
function UINotifyTipsView:InitGenerate__6(Root, data)
--[[
UIAnimator/Window/ScrollViewNotify/Viewport/Content
--]]
@ -126,7 +146,7 @@ function UINotifyTipsView:InitGenerate__5(Root, data)
end
---@private
function UINotifyTipsView:InitGenerate__6(Root, data)
function UINotifyTipsView:InitGenerate__7(Root, data)
--[[
UIAnimator/Window/ClostBox/BtnCloseFlat
--]]
@ -156,6 +176,10 @@ function UINotifyTipsView:GenerateDestroy()
tolua.setpeer(self.window, nil)
end
self.window = nil
if tolua.getpeer(self.btnClose) ~= nil then
tolua.setpeer(self.btnClose, nil)
end
self.btnClose = nil
if tolua.getpeer(self.scrollViewNotify) ~= nil then
tolua.setpeer(self.scrollViewNotify, nil)
end