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