Exemplo n.º 1
0
        void FadOutParticle(AdvGraphicObject obj, AdvParticleStopType stopType)
        {
            AdvGraphicObjectParticle particle = obj.TargetObject as AdvGraphicObjectParticle;

            if (particle != null)
            {
                particle.Stop(stopType);
                fadeOutingObjets.Add(obj);
                Remove(obj);
            }
        }
Exemplo n.º 2
0
        //セーブが有効なオブジェクトかをチェック
        public virtual bool EnableSaveObject()
        {
            if (LastResource == null)
            {
                return(false);
            }
            if (LastResource.DataType == AdvGraphicInfo.TypeCapture)
            {
                return(false);
            }

            AdvGraphicObjectParticle particle = this.TargetObject as AdvGraphicObjectParticle;


            if (particle != null)
            {
                return(particle.EnableSave());
            }

            return(true);
        }