當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript babylonjs.Tools類代碼示例

本文整理匯總了TypeScript中babylonjs.Tools的典型用法代碼示例。如果您正苦於以下問題:TypeScript Tools類的具體用法?TypeScript Tools怎麽用?TypeScript Tools使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Tools類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: load

 public load() {
     if (this.loader) {
         Tools.Error("Model was already loaded or in the process of loading.");
     } else {
         this._initLoad();
     }
 }
開發者ID:nicolas-obre,項目名稱:Babylon.js,代碼行數:7,代碼來源:viewerModel.ts

示例2: _initLoad

    private _initLoad() {
        if (!this._modelConfiguration || !this._modelConfiguration.url) {
            return Tools.Error("No model URL to load.");
        }
        let parts = this._modelConfiguration.url.split('/');
        let filename = parts.pop() || this._modelConfiguration.url;
        let base = parts.length ? parts.join('/') + '/' : './';

        let plugin = this._modelConfiguration.loader;

        //temp solution for animation group handling
        let animationsArray = this._scene.animationGroups.slice();

        this.loader = SceneLoader.ImportMesh(undefined, base, filename, this._scene, (meshes, particleSystems, skeletons) => {
            meshes.forEach(mesh => {
                Tags.AddTagsTo(mesh, "viewerMesh");
            });
            this.meshes = meshes;
            this.particleSystems = particleSystems;
            this.skeletons = skeletons;

            // check if this is a gltf loader and load the animations
            if (this.loader.name === 'gltf') {
                this._scene.animationGroups.forEach(ag => {
                    // add animations that didn't exist before
                    if (animationsArray.indexOf(ag) === -1) {
                        this._animations.push(new GroupModelAnimation(ag));
                    }
                })
            } else {
                skeletons.forEach((skeleton, idx) => {
                    let ag = new BABYLON.AnimationGroup("animation-" + idx, this._scene);
                    skeleton.getAnimatables().forEach(a => {
                        if (a.animations[0]) {
                            ag.addTargetedAnimation(a.animations[0], a);
                        }
                    });
                    this._animations.push(new GroupModelAnimation(ag));
                });
            }

            if (this._modelConfiguration.animation) {
                if (this._modelConfiguration.animation.playOnce) {
                    this._animations.forEach(a => {
                        a.playMode = AnimationPlayMode.ONCE;
                    });
                }
                if (this._modelConfiguration.animation.autoStart && this._animations.length) {
                    let animationName = this._modelConfiguration.animation.autoStart === true ?
                        this._animations[0].name : this._modelConfiguration.animation.autoStart;
                    this.playAnimation(animationName);
                }
            }

            this.onLoadedObservable.notifyObserversWithPromise(this);
        }, (progressEvent) => {
            this.onLoadProgressObservable.notifyObserversWithPromise(progressEvent);
        }, (e, m, exception) => {
            this.onLoadErrorObservable.notifyObserversWithPromise({ message: m, exception: exception });
        }, plugin)!;

        this.loader['animationStartMode'] = 0;
    }
開發者ID:nicolas-obre,項目名稱:Babylon.js,代碼行數:63,代碼來源:viewerModel.ts

示例3:

         b: 0.8823529411764706
     }
 },
 loaderPlugins: {
     extendedMaterial: true,
     applyMaterialConfig: true,
     msftLod: true,
     telemetry: true
 },
 model: {
     rotationOffsetAxis: {
         x: 0,
         y: -1,
         z: 0
     },
     rotationOffsetAngle: Tools.ToRadians(210),
     material: {
         directEnabled: true,
         directIntensity: 0.884,
         emissiveIntensity: 1.04,
         environmentIntensity: 0.6
     },
     entryAnimation: {
         scaling: {
             x: 0,
             y: 0,
             z: 0
         },
         time: 0.5,
         easingFunction: 4,
         easingMode: 1
開發者ID:NasimiAsl,項目名稱:Babylon.js,代碼行數:31,代碼來源:extended.ts

示例4: resolve

 return new Promise<Blob>((resolve) => {
     BabylonTools.ToBlob(canvas, b => resolve(b));
 });
開發者ID:BabylonJS,項目名稱:Editor,代碼行數:3,代碼來源:graphics-tools.ts

示例5: addLoaderPlugin

export function addLoaderPlugin(name: string, plugin: ILoaderPlugin) {
    if (pluginCache[name]) {
        Tools.Warn("Overwriting plugin with the same name - " + name);
    }
    pluginCache[name] = plugin;
}
開發者ID:NasimiAsl,項目名稱:Babylon.js,代碼行數:6,代碼來源:index.ts

示例6: Promise

 return new Promise((resolve, reject) => {
     let fileRequest = Tools.LoadFile(url, resolve, undefined, undefined, false, (request, error: any) => {
         reject(error);
     });
     this.loadRequests.push(fileRequest);
 });
開發者ID:nicolas-obre,項目名稱:Babylon.js,代碼行數:6,代碼來源:loader.ts


注:本文中的babylonjs.Tools類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。