PlayCanvas

PLAYCANVAS-Tutorial:HTMLで作成したボタンを押す

PLAYCANVASを学習中。

CSS UI | Learn PlayCanvas 2022 03 20 10 00 10

HTML/CSS UI | Learn PlayCanvas

このTutorialで、ボタンを押すとクリックした回数が増えるサンプルがあるので、これを見て、ボタンをクリックした情報をどのように処理しているのかを学びます。

サンプルの検証

UntitledImage

HIERARCHYには、camera,box(Entity),html+css(Entity)の3つがあります。

UntitledImage

ASSETSには、box、skyboxのフォルダがあり、このskyboxはどうやら背景の画像っぽいです。boxは画面に表示されるものです。

直下ファイルとして、css,html,turn.js,ui.jsの4つがあります。

コードの確認

<div class='button'>BUTTON</div>
<div class='counterBox'>
    times clicked <span class='counter'>0</span>
</div>
<div class='text'>
    Hit the button to increment the counter<br />
</div>

Htmlのコードはこちら。

var Turn = pc.createScript('turn');

Turn.prototype.update = function (dt) {
    this.entity.rotate(0, dt * 90, 0);
};

turn.jsのコード。

このdtという値ですが、スクリプトの構造 | Learn PlayCanvasを見ると、

各フレームのdtは、最後のフレームからの秒単位の時間となる引数として渡されます。

となっており、PLAYCANVAS上で決まった変数のよう。

var Ui = pc.createScript('ui');

Ui.attributes.add('css', {type: 'asset', assetType:'css', title: 'CSS Asset'});
Ui.attributes.add('html', {type: 'asset', assetType:'html', title: 'HTML Asset'});

Ui.prototype.initialize = function () {
    // create STYLE element
    var style = document.createElement('style');

    // append to head
    document.head.appendChild(style);
    style.innerHTML = this.css.resource || '';
    
    // Add the HTML
    this.div = document.createElement('div');
    this.div.classList.add('container');
    this.div.innerHTML = this.html.resource || '';
    
    // append to body
    // can be appended somewhere else
    // it is recommended to have some container element
    // to prevent iOS problems of overfloating elements off the screen
    document.body.appendChild(this.div);
    
    this.counter = 0;
    
    this.bindEvents();
};

Ui.prototype.bindEvents = function() {
    var self = this;
    // example
    //
    // get button element by class
    var button = this.div.querySelector('.button');
    var counter = this.div.querySelector('.counter');
    // if found
    if (button) {
        // add event listener on `click`
        button.addEventListener('click', function() {
            ++self.counter;
            if (counter)
                counter.textContent = self.counter;
            
            console.log('button clicked');

            // try to find object and change its material diffuse color
            // just for fun purposes
            var obj = pc.app.root.findByName('box');
            if (obj && obj.render) {
                var material = obj.render.meshInstances[0].material;
                if (material) {
                    material.diffuse.set(Math.random(), Math.random(), Math.random());
                    material.update();
                }
            }
        }, false);
    }

    if (counter)
        counter.textContent = self.counter;
};

Ui.jsのコード。こちらで全体のコントロールをしている様子。

Ui.attributes.add('css', {type: 'asset', assetType:'css', title: 'CSS Asset'});
Ui.attributes.add('html', {type: 'asset', assetType:'html', title: 'HTML Asset'});

このコードは読み込む外部ファイルを設定しているのかな?

CSS UI | Editor 2022 03 20 10 30 34

Editorにはこのように表示されています。

Ui.attributes.add('css1', {type: 'asset', assetType:'css', title: 'CSS Asset'});
Ui.attributes.add('html', {type: 'asset', assetType:'html', title: 'HTML Asset'});

このように、Editorで’css1’と変更してセーブ。

CSS UI | Editor 2022 03 20 10 34 09

PARSEをクリック

CSS UI | Editor 2022 03 20 10 36 50

Ui.jsをクリックすると

CSS UI | Editor 2022 03 20 10 37 48

Css1に更新されました。

Ui.attributes.add('css', {type: 'asset', assetType:'css', title: 'CSS Asset'});
Ui.attributes.add('css1', {type: 'asset', assetType:'css', title: 'CSS Asset'});
Ui.attributes.add('html', {type: 'asset', assetType:'html', title: 'HTML Asset'});

さらに、Ui.attributes.addを一行追加。

CSS UI | Editor 2022 03 20 10 39 35

追加されました。

コードの変更を行ったら、
コードのsave > PARSE > 該当ファイルをクリック
で更新されるようです。

buttonクリックイベントの取得

CSS UI | Code Editor 2022 03 20 10 51 21

Buttonがクリックされたイベントについては、bindEventsという関数で .buttonにclickのイベントリスナーを追加して、counterという変数を1増加、

CSS UI | Code Editor 2022 03 20 10 51 55

また、表示されているboxオブジェクトの外観を、

material.diffuse.set(Math.random(), Math.random(), Math.random());

このコードでランダムに色を変更するという処理をしています。

turn.js

CSS UI | Editor 2022 03 20 10 55 54

オブジェクトboxのENTITYの中に、Scriptとしてturn.jsがありました。

このスクリプトは

Turn.prototype.update = function (dt) {
this.entity.rotate(0, dt * 90, 0);
};

となっているので、ENTITYであるboxをひたすらrotateさせるコードのようです。

まとめ

オブジェクトとコードの連携のイメージが少しづつつかめてきました。

ABOUT ME
中畑 隆拓
スマートライト㈱ 代表取締役。IoTソリューションの開発、スマートホーム&オフィスのコンサルティング、DALI,KNX,EnOceanなどのインテグレーションを行っています。

COMMENT

メールアドレスが公開されることはありません。 が付いている欄は必須項目です