NodeChange constructor

NodeChange(
  1. LocalId id, {
  2. bool transform = false,
  3. bool name = false,
  4. bool layers = false,
  5. bool visible = false,
  6. bool reparented = false,
  7. bool components = false,
  8. bool skin = false,
})

Records the changed aspects of node id.

Implementation

NodeChange(
  this.id, {
  this.transform = false,
  this.name = false,
  this.layers = false,
  this.visible = false,
  this.reparented = false,
  this.components = false,
  this.skin = false,
});