public override ISpriteSoundEntry Get()
        {
            this.Sprite = this.Section.GetValue <IVectorEntry>(this.FieldKey + ".spr");
            this.Sound  = this.Section.GetValue <IVectorEntry>(this.FieldKey + ".snd");

            return(this);
        }
Ejemplo n.º 2
0
        public override IPlayerSelectionTeamMenuValueEntry Get()
        {
            this.Sound     = this.Section.GetValue <IVectorEntry>(this.FieldKey + ".snd");
            this.Icon      = this.Section.GetValue <IImageEntry>(this.FieldKey + ".icon");
            this.EmptyIcon = this.Section.GetValue <IImageEntry>(this.FieldKey + ".empty.icon");
            this.Spacing   = this.Section.GetValue <IVectorEntry>(this.FieldKey + ".spacing");

            return(this);
        }
Ejemplo n.º 3
0
        public override IVelocityEntry Get()
        {
            this.Forward  = this.Section.GetValue <IVectorEntry>(this.FieldKey + ".fwd");
            this.Backward = this.Section.GetValue <IVectorEntry>(this.FieldKey + ".back");
            this.Neutral  = this.Section.GetValue <IVectorEntry>(this.FieldKey + ".neu");
            this.Up       = this.Section.GetValue <IVectorEntry>(this.FieldKey + ".up");
            this.Down     = this.Section.GetValue <IVectorEntry>(this.FieldKey + ".down");

            return(this);
        }