USS を使用する場合、UI コード内のビルトインの VisualElement
プロパティの値や カスタムプロパティの値を指定できます。
USS ファイルからそれらの値を読み込むことに加えて、ビルトインのプロパティ値は VisualElement
の C# プロパティを使用して C# で割り当てることができます。C# で割り当てられた値は、Unity スタイルシート (USS) から値をオーバーライドします。
カスタムプロパティの API を使用して USS を拡張できます。
ここでは、サポートされている型を列挙します。
以下のキーワードは特別な意味を持ちます。
auto
inherit
unset
true
false
none
制限: キーワード auto
、inherit
、unset
は正しくインポートされますが、ランタイムにはサポートされません。
UIElement はユニットをサポートしません。すべてのプロパティはピクセルで指定されているものとします。
数値は浮動小数点数または整数リテラルです。例えば flex:1.0
、width:200
。数値は、整数リテラルを含め浮動小数点数として保存されます。
列挙型は、enum ベースのビルトインプロパティでのみサポートされます。列挙型では、数字の代わりに分かりやすい名前で示されます。例えば position-type:absolute
。
UIElement は、以下のリテラルの色の値と関数をサポートします。
#FFFF00
(rgba はチャンネルごとに 1 バイト)、#0F0
(rgb)rgb(255, 255, 0)
rgba(255, 255, 0, 1.0)
hsl(0, 100%, 50%)
resource()
や url()
関数を使ってアセットを参照することができます。例えば background-image: resource("Images/img.png")
を指定すると Images
ディレクトリの img.png
を背景画像として指定できます。参照されたアセットはインポート中に解決されます。
resource()
関数は Resources
フォルダーか Editor Default Resources
フォルダー下のファイルを受け取ります。以下の注意点があります。
Resources
フォルダー下にある場合は、ファイル拡張子を入れないでください。例えば background-image: resource("Images/my-image")
。Editor Default Resources
下にある場合は、ファイル拡張子を入れる必要があります。例えば background-image: resource("Images/default-image.png")
。url()
関数はファイルパスがプロジェクトのルートか、USS ファイルを含むフォルダーのどちらかに相対的であることを前提にしています。ファイル拡張子を入れる必要があります。例えば background-image: url("Images/my-image.png")
。
テクスチャの場合、ファイルにサフィックス @2x
を持つバージョンがある場合、このファイルは Retina や HiDPI 画面用に自動的に読み込まれます。
引用符を使用して文字列の値を指定します。例えば my-property: "foo"
。
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.