Luna Debugger

Debug Luna Playable develop builds in the browser

ما هو Luna Debugger؟

Luna Debugger هو إضافة Chrome تم تطويرها بواسطة https://is.com، والميزة الرئيسية لها هي "Debug Luna Playable develop builds in the browser".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Luna Debugger

قم بتنزيل ملفات الامتداد Luna Debugger بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        The Luna Debugger is a powerful tool that allows developers using Luna Playable to inspect and debug develop builds directly in the browser. The interface is easy-to-use and simple, we’ve incorporated familiar components like hierarchy and inspector panels so that you can easily debug a Luna Playable build in real-time.

For detailed usage instructions please visit our developer docs here: https://docs.lunalabs.io/docs/playable/code/luna-in-browser/luna-debugger

The Luna Debugger is useful for a number of use-cases:

* Determining whether a game object is instantiated and active in the scene
* Determining whether a game object is a prefab
* Activating disabled game objects and vice versa
* Changing the position, rotation and scale of an object, or indeed, any attribute
* Use the scene camera to move freely around a scene
* Pause can be used to stop the running of the scene arbitrarily and see the state of the scene in that frame
* Step functionality can be used to micromanage/debug the project frame-by-frame
* Monitor the performance of the playable with an FPS and memory counter
* Objects within a scene can be edited in the browser and new components values can be sent directly to Unity
*Highlight colliders in your scene so that you can identify their position, size and shape easily
* If your scene contains a game object with the particle component, we will highlight in red any features unsupported by the Luna engine
* Log a game object in JS to the browser’s console with a mouse click

To get started with the Luna Debugger visit our docs and follow this getting started guide:

1. Install the Luna Debugger Chrome extension from the Chrome Web Store
2. Open a Luna Playable develop build in Chrome
3. Use the keyboard shortcut Option + ⌘ + I (on macOS), or Shift + CTRL + I (on Windows/Linux), to open the Chrome DevTools panel
4. At the furthermost right of the DevTools tabs you should now see Luna, click this to open the debugger

For more information about Luna please visit https://luna.is.com/

Latest version: 0.3.2
Changelog:
* Upgraded to Manifest V3                    

معلومات أساسية عن التمديد

الاسم Luna Debugger Luna Debugger
ID fcbfimdagbecbglbbpafobkhkfbejdnf
عنوان URL الرسمي https://chromewebstore.google.com/detail/luna-debugger/fcbfimdagbecbglbbpafobkhkfbejdnf
الوصف Debug Luna Playable develop builds in the browser
حجم الملف 799 KB
عدد التثبيتات 390
النسخة الحالية 0.3.2
آخر تحديث 2023-01-20
تاريخ النشر 2021-02-03
تقييم 5.00/5 مجموع تقييمات 6
المطور https://is.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://luna.is.com/
عنوان صفحة المساعدة https://docs.lunalabs.io/
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Luna Debugger",
    "description": "Debug Luna Playable develop builds in the browser",
    "version": "0.3.2",
    "icons": {
        "16": ".\/logo-16.png",
        "48": ".\/logo-48.png",
        "128": ".\/logo-128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "devtools_page": "dev\/index.html",
    "web_accessible_resources": [
        {
            "resources": [
                "dev\/tool.js",
                "dev\/checker.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "dev\/background.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}