0a1fce450c
- 删除三套旧菜单系统 (MainMenu.cs, MainMenuUI.cs, ModeSelectionUI.cs) - Ground 添加 BoxCollider 并设置 tag 为 Ground - UIManager.OnReturnClicked 改为通过 PageController 返回首页 - PageController 增加 ReturnToHome 方法,管理 BtnFixationBack 可见性 - 清理废弃场景 Experiment.unity / ModeSelection.unity 及历史截图
50 lines
1.3 KiB
Markdown
50 lines
1.3 KiB
Markdown
# merge-descriptors
|
|
|
|
[![NPM Version][npm-image]][npm-url]
|
|
[![NPM Downloads][downloads-image]][downloads-url]
|
|
[![Build Status][travis-image]][travis-url]
|
|
[![Test Coverage][coveralls-image]][coveralls-url]
|
|
|
|
Merge objects using descriptors.
|
|
|
|
```js
|
|
var thing = {
|
|
get name() {
|
|
return 'jon'
|
|
}
|
|
}
|
|
|
|
var animal = {
|
|
|
|
}
|
|
|
|
merge(animal, thing)
|
|
|
|
animal.name === 'jon'
|
|
```
|
|
|
|
## API
|
|
|
|
### merge(destination, source)
|
|
|
|
Redefines `destination`'s descriptors with `source`'s. The return value is the
|
|
`destination` object.
|
|
|
|
### merge(destination, source, false)
|
|
|
|
Defines `source`'s descriptors on `destination` if `destination` does not have
|
|
a descriptor by the same name. The return value is the `destination` object.
|
|
|
|
## License
|
|
|
|
[MIT](LICENSE)
|
|
|
|
[npm-image]: https://img.shields.io/npm/v/merge-descriptors.svg
|
|
[npm-url]: https://npmjs.org/package/merge-descriptors
|
|
[travis-image]: https://img.shields.io/travis/component/merge-descriptors/master.svg
|
|
[travis-url]: https://travis-ci.org/component/merge-descriptors
|
|
[coveralls-image]: https://img.shields.io/coveralls/component/merge-descriptors/master.svg
|
|
[coveralls-url]: https://coveralls.io/r/component/merge-descriptors?branch=master
|
|
[downloads-image]: https://img.shields.io/npm/dm/merge-descriptors.svg
|
|
[downloads-url]: https://npmjs.org/package/merge-descriptors
|