Unity スタイルシート (USS) は、アセットとして認識される、スタイル規則をサポートするテキストファイルです。USS テキストファイルには拡張子 .uss
が必要です。
USS ファイルは、ゲームやアプリケーションの UI 要素の見た目とスタイルの定義に使用できます。USS は、UI 要素の見た目とスタイルを他のコードから分離する方法を提供し、アプリケーションの見た目や印象の管理をより簡単にします。
USS を使用すると、ボタンやラベル、画像などの UI 要素のスタイルを別の USS ファイルで定義し、それをゲームやアプリケーションのコードに適用することができます。このため、コードに変更を加えずに、USS ファイルを変更してアプリケーションの見た目を変更することが可能です。
USS は以下によって構成されます。
以下は、スタイル規則の基本的な構文です。
selector {
property1: value;
property2: value;
}
スタイルシートを定義したら、それを ビジュアルツリー に適用することができます。セレクターは、要素を照合し、USS ファイルからどのプロパティが当てはまるかを解決します。セレクターが一致する要素を見つけると、その要素にスタイル宣言が適用されます。
例えば、以下のルールは全ての Button
オブジェクトに適合します。
Button {
width: 200px;
}
USS は、以下のような各種の基準に基づいて要素を照合する、いくつかのタイプのシンプルセレクターおよび複合セレクターをサポートしています。
name
プロパティまた USS は、疑似クラス もサポートしています。これをセレクターに使用することで、特定の状態にある要素をターゲットにしたり、:root
要素を選択することができます。
要素が複数のセレクターに一致する場合、USS は 優先される 方のセレクターのスタイルを適用します。
ノート: セレクターは全て大文字と小文字を区別します。
USS は一式のシンプルセレクターをサポートしています。これは CSS のsh人プルセレクターと類似していますが全く同じではありません。以下の表は、USS のシンプルセレクターの簡単なリファレンスです。
セレクタータイプ | 構文 | マッチ |
---|---|---|
タイプセレクター | Type {...} |
特定の C# タイプあるいはビジュアル要素タイプを持つ要素 |
クラスセレクター | .class {...} |
特定の USS クラスが割り当てられた要素 |
名前セレクター | #name {..} |
特定の name 属性が割り当てられた要素 |
ユニバーサルセレクター | * {...} |
任意の要素 |
USS は、CSS の複合セレクターのサブセットをサポートしています。以下の表は、USS の複合セレクターの簡単なリファレンスです。
セレクタータイプ | 構文 | マッチ |
---|---|---|
子孫セレクター | selector1 selector2 {...} |
ビジュアルツリー内の別の要素の子孫である要素 |
子セレクター | selector1 > selector2 {...} |
ビジュアルツリー内の別の要素の子要素 |
複数セレクター | selector1selector2 {...} |
全てのシンプルセレクターに一致する要素 |
スタイルと要素は、以下の方法で結びつけることができます。
style
プロパティに設定するか、要素に一致するセレクターを持つ USS スタイルシートを styleSheet
プロパティに追加します。詳細は、C# スクリプトでスタイルを適用する を参照してください。Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.