| 12345678910111213141516171819202122232425262728293031323334 |
- module.exports = {
- classes: {
- cc: {
- Terrain: {
- properties: {
- _asset: {
- tooltip: 'The terrain asset.',
- },
- effectAsset: {
- tooltip: 'The terrain effect asset.',
- },
- lightmapInfos: {
- tooltip: 'The terrain info.',
- },
- receiveShadow: {
- tooltip: 'Receive shadow.',
- },
- useNormalMap: {
- tooltip: 'Use normal map.',
- },
- usePBR: {
- tooltip: 'Use pbr material.',
- },
- lodEnable: {
- tooltip: 'Enable lod.',
- },
- LodBias: {
- tooltip: 'Lod bias.',
- },
- },
- },
- },
- },
- };
|