Pre-release
AdventureJS Docs Downloads
Score: 0 Moves: 0
// setAllAspectsContentsSeen.js
(function () {
  /*global adventurejs A*/
  var p = adventurejs.Tangible.prototype;
  /**
   * This function will try to set all visible aspect contents
   * of this asset seen.
   * @memberOf adventurejs.Tangible
   * @method adventurejs.Tangible#setAllAspectsContentsSeen
   */
  p.setAllAspectsContentsSeen = function Tangible_setAllAspectsContentsSeen(
    value
  ) {
    for (var aspect in this.aspects) {
      if (aspect === "in" && this.is.closed) continue; // @TODO transparency
      if (this.aspects[aspect].see_with_parent) {
        this.setAspectContentsSeen(aspect, value);
      }
    }
  };
})();