PlayCanvas Editor Plus

Plugin for Playcanvas Editor to add extra useful functions, like coloured model previews, more powerful entity search and others.

PlayCanvas Editor Plus란 무엇입니까?

PlayCanvas Editor Plus은(는) WhyDoIDoIt에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Plugin for Playcanvas Editor to add extra useful functions, like coloured model previews, more powerful entity search and others."입니다.

확장 프로그램 스크린샷

screenshot

PlayCanvas Editor Plus 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        A set of extensions for the PlayCanvas editor.  Implemented as a Google Chrome extension.

* Decimate models right in the asset window
* Clean up your materials so only 1 copy of each material remains with models updated
* Downsize textures with a high quality resample.
* Copy and Paste components and scripts between entities
* Copy and Paste between projects (experimental)
* Colour model view in the assets panel and preview window (no more grey shadows!)
* See whole of asset name in the asset panel
* Bake together meshes to reduce draw calls and improve performance
* Quickly select the Root node and collapse others
* Quickly select the parent of an entity
* Powerful search with RegEx, supports component names, entity names etc and returns all matches (unlike the normal hierarchy search)
* Drop to root - enables items being dropped from the asset panel to be located at the position of the selected entity but then parented to the root - stops accidental creation of complicated deep structures when designing scenes
* Snap to grid - snaps one or more entities that are already in the scene to the current grid interval - normal snapping in PlayCanvas does not round the existing position, but only move
 items it by grid increments.
* Snap Rotation - snaps the Y rotation of one or more entities to a 90 degree increment. Useful for laying out levels.                    

확장 프로그램 기본 정보

이름 PlayCanvas Editor Plus PlayCanvas Editor Plus
ID ebedfcjmndjbaboecddbbjjjoleddfap
공식 URL https://chromewebstore.google.com/detail/playcanvas-editor-plus/ebedfcjmndjbaboecddbbjjjoleddfap
설명 Plugin for Playcanvas Editor to add extra useful functions, like coloured model previews, more powerful entity search and others.
파일 크기 329 KB
설치 횟수 792
현재 버전 1.5.4
최근 업데이트 2021-10-02
출시 날짜 2017-10-01
평점 5.00/5 총 7 개의 평점
개발자 WhyDoIDoIt
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/miketalbot
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PlayCanvas Editor Plus",
    "description": "Plugin for Playcanvas Editor to add extra useful functions, like coloured model previews, more powerful entity search and others.",
    "version": "1.5.4",
    "browser_action": {
        "default_title": "PlayCanvas"
    },
    "author": "Mike Talbot (whydoidoit)",
    "background": {
        "scripts": []
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/playcanvas.com\/editor\/*"
            ],
            "js": [
                "main.fn.build.js",
                "playcanvas.js"
            ],
            "run_at": "document_end"
        }
    ]
}