Example #1
0
 public void prepareUGC(string name, string description, string path, string preview, string change, ESteamUGCType type, string tag, ESteamUGCVisibility visibility, bool verified)
 {
     this.ugcName        = name;
     this.ugcDescription = description;
     this.ugcPath        = path;
     this.ugcPreview     = preview;
     this.ugcChange      = change;
     this.ugcType        = type;
     this.ugcTag         = tag;
     this.ugcVisibility  = visibility;
     this.ugcVerified    = verified;
 }
Example #2
0
        public void prepareUGC(string name, string description, string path, string preview, string change, ESteamUGCType type, string tag, ESteamUGCVisibility visibility)
        {
            bool verified = File.Exists(path + "/Skin.kvt");

            this.prepareUGC(name, description, path, preview, change, type, tag, visibility, verified);
        }