// Token: 0x06008A47 RID: 35399 RVA: 0x002833D0 File Offset: 0x002815D0 public virtual bool IsCulled(Vector2 p) { if (!BJLuaObjHelper.IsSkipLuaHotfix && this.TryInitHotFix("") && this.m_IsCulledVector2_hotfix != null) { return(Convert.ToBoolean(this.m_IsCulledVector2_hotfix.call(new object[] { this, p }))); } BJLuaObjHelper.IsSkipLuaHotfix = false; return(CameraBase.IsCulled(this.m_camera, p)); }
// Token: 0x060089F6 RID: 35318 RVA: 0x00282BD4 File Offset: 0x00280DD4 public override bool IsCulled(Vector2 p) { if (!BJLuaObjHelper.IsSkipLuaHotfix && this.TryInitHotFix("") && this.m_IsCulledVector2_hotfix != null) { return(Convert.ToBoolean(this.m_IsCulledVector2_hotfix.call(new object[] { this, p }))); } BJLuaObjHelper.IsSkipLuaHotfix = false; if (this.m_isSplitScreen) { return(CameraBase.IsCulled(this.m_camera1, p) && CameraBase.IsCulled(this.m_camera2, p)); } return(base.IsCulled(p)); }