Merge branch 'master' into select-block

This commit is contained in:
xiefan
2020-04-30 17:21:10 +08:00
75 changed files with 5897 additions and 2143 deletions

11
dist/Text.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
import { Mesh } from "three";
export declare class DbText extends Mesh {
/**
*
* 构造一个文本对象,8位点(中心点下面)在0点
* @param {string} str 数字字符串
* @param {number} height 文本高度
* @memberof DbText
*/
constructor(str: string, height?: number);
}