This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Overlay(typeof(SceneView), "SceneViewDemo", true)] | |
| public class SceneViewDemo : Overlay { | |
| public override VisualElement CreatePanelContent() { | |
| VisualElement root = new() { name = "SceneViewDemo" }; | |
| Button btn = new() { | |
| text = "Hello World"; | |
| }; | |
| btn.clickable.activators.Add(new() { | |
| button = MouseButton.RightMouse |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import quodlibet.library | |
| from quodlibet.query import Query | |
| from quodlibet import app | |
| import sqlite3 | |
| # you need a Quod Libet dev environment | |
| # this script and your QL songs file need to be placed at the root of your Quod Libet git checkout | |
| # there is another one for copying QL data to SQLite https://gist.github.com/WildRikku/15b645d236b2d4edf32c01c9603a2c86 | |
| dbcon = sqlite3.connect("../songs.db") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import quodlibet.library | |
| from quodlibet.query import Query | |
| from quodlibet import app | |
| import sqlite3 | |
| # you need a Quod Libet dev environment https://quodlibet.readthedocs.io/en/latest/development/devenv.html | |
| # this script and your QL songs file need to be placed at the root of your Quod Libet git checkout | |
| # the SQLite file will also be placed there | |
| dbcon = sqlite3.connect("songs.db") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Odin | |
| Assets/Plugins/Sirenix/* | |
| !Assets/Plugins/Sirenix/Assemblies | |
| !Assets/Plugins/Sirenix/Assemblies.meta | |
| Assets/Plugins/Sirenix/Assemblies/* | |
| !Assets/Plugins/Sirenix/Assemblies/Sirenix.OdinInspector.Attributes* |