* @function LevelRenderer.Render.prototype.modGroup * @description 修改组。 * * @param {string} groupId - 组对象唯一标识。 * @param {LevelRenderer.Group} group - 组对象。 * @return {LevelRenderer.Render} this。
(groupId, group)
| 186 | * @return {LevelRenderer.Render} this。 |
| 187 | */ |
| 188 | modGroup(groupId, group) { |
| 189 | this.storage.mod(groupId, group); |
| 190 | return this; |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | * @function LevelRenderer.Render.prototype.modLayer |