Torus Solutions 改

Defold でエディタのフォントサイズを大きくする方法

ホームディレクトリに .defold/editor.css というファイルを作り、下のように書く。

.root {
    -fx-font-size: 20px;
}

Defold の Discord で見つけた。

image

https://github.com/defold/defold/blob/eebdb359378aeab5b865fe2b0c51e72e313a5956/editor/src/clj/editor/ui.clj#L641 ソースはこのへん。

(defn- apply-default-css! [^Parent root]
  (.. root getStylesheets (add (str (io/resource "editor.css"))))
  nil)