Skip to content

Commit

Permalink
Merge pull request #1737 from nockawa/devmsi
Browse files Browse the repository at this point in the history
introduce _cachedTexture for Inspector display
  • Loading branch information
nockawa committed Feb 1, 2017
2 parents 9b8e156 + e8dde41 commit a7e747b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions canvas2D/src/Engine/babylon.group2d.ts
Expand Up @@ -1025,6 +1025,13 @@
}
}

public get _cachedTexture(): MapTexture {
if (this._renderableData) {
return this._renderableData._cacheTexture;
}
return null;
}

private _trackedNode: Node;
protected _isRenderableGroup: boolean;
protected _isCachedGroup: boolean;
Expand Down

0 comments on commit a7e747b

Please sign in to comment.