Skip to content

Commit 70bde26

Browse files
authored
Update README.md
1 parent 16459f0 commit 70bde26

1 file changed

Lines changed: 24 additions & 5 deletions

File tree

README.md

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,64 +14,83 @@ You need to have `TextMeshPro` plugin in your project. You can install TMPro via
1414

1515
I checked Unity and TextMeshPro Version are below.
1616

17+
```
1718
UnityVer:2022.3.13f1
18-
1919
TextMeshProVer:3.0.6
20+
```
2021

2122
[Ja]
2223

2324
TextMeshProは`Unity 2023.2`から[非推奨](https://forum.unity.com/threads/2023-2-latest-development-on-textmesh-pro.1434757/)になります。
2425

2526
この意味は、namespaceは変わらず、現状のベータ版ではTextMeshProが `com.unity.ui` に統合されたため、TextMeshProパッケージをパッケージマネージャからインストールすると重複しエラーが起こる状態になります。
2627

27-
そのため、RubyTexxtMeshProをそのまま使用することは現状可能だと思われます
28+
そのため、RubyTextMeshProをそのまま使用することは現状可能だと思われます
2829

2930
[En]
3031

3132
TextMeshPro will be [deprecated](https://forum.unity.com/threads/2023-2-latest-development-on-textmesh-pro.1434757/) starting `Unity 2023.2`.
3233

3334
What this means is that the namespace remains the same, but in the current beta version, TextMeshPro has been integrated into `com.unity.ui`, so installing the TextMeshPro package from the package manager will result in duplication and errors.
3435

35-
Therefore, it is currently possible to use RubyTexxtMeshPro as is.
36+
Therefore, it is currently possible to use RubyTextMeshPro as is.
3637

3738
# Disruptive change
3839

3940
### ver 1.2
4041

4142
[Ja]
43+
4244
追加 : `RubyTextMeshProDefinitions``BASE_NO_OVERRAP_RUBY_ALIGNMENT` を追加しました。
45+
4346
追加 : `BASE_NO_OVERRAP_RUBY_ALIGNMENT` 用に `rubyMargin` を追加しました。 ルビの隙間を指定します。
47+
4448
変更 : SerializeField パラメータを `_<xyz>` に変更しました。 以前のバージョンと互換性を保つため `FormerlySerializedAs(<xyz>)` を定義していますが、ご注意ください。
49+
4550
変更 : `BASE_NO_OVERRAP_RUBY_ALIGNMENT` 用にルビとベースの文字の描画位置を計算する処理を追加しました。負荷が上がっている可能性があります。
51+
4652
削除 : `RubyTextMeshPro.UnditedText` / `RubyTextMeshProUGUI.UnditedText` : 削除されました。 `uneditedText` をご使用ください。
4753

4854
[En]
55+
4956
Added : `BASE_NO_OVERRAP_RUBY_ALIGNMENT` for `RubyTextMeshProDefinitions`.
57+
5058
Added : `rubyMargin` for `BASE_NO_OVERRAP_RUBY_ALIGNMENT`. Specify the ruby margin.
59+
5160
Changed : SerializeField parameter to `_<xyz>`. Note that `FormerlySerializedAs(<xyz>)` is defined for compatibility with previous versions.
61+
5262
Changed : Added processing for `BASE_NO_OVERRAP_RUBY_ALIGNMENT` to calculate the drawing position of ruby and base characters. This may have increased the load.
53-
Removed : `RubyTextMeshPro.UnditedText` / `RubyTextMeshProUGUI.UnditedText` : removed. Please use `uneditedText`.
5463

55-
Translated with www.DeepL.com/Translator (free version)
64+
Removed : `RubyTextMeshPro.UnditedText` / `RubyTextMeshProUGUI.UnditedText` : removed. Please use `uneditedText`.
5665

5766
### ver 1.1
5867

5968
[Ja]
69+
6070
削除 : `allVCompensationRuby` / `allVCompensationRubyLineHeight` : `rubyLineHeight` が空文字の場合、 いままでの `allVCompensationRuby:false` と同等の効果になります。また、 `rubyLineHeight` に値が入っている場合、 `allVCompensationRubyLineHeight` の値と同様の効果になります。
71+
6172
削除予定 : `RubyTextMeshPro.UnditedText` / `RubyTextMeshProUGUI.UnditedText` : 次のバージョンで削除されます。`uneditedText`をご使用ください。
6273

6374
[En]
75+
6476
Removed : `allVCompensationRuby` / `allVCompensationRubyLineHeight` : If `rubyLineHeight` is an empty string, it will be the `allVCompensationRuby:false` value up to now, and if `rubyLineHeight` is a value, it will be the `allVCompensationRubyLineHeight` value.
77+
6578
Obsolete : `RubyTextMeshPro.UnditedText` / `RubyTextMeshProUGUI.UnditedText` : Will be removed in the next version. Please use `uneditedText`.
6679

6780
# Features
81+
6882
### Realtime Ruby Text
83+
6984
あなたは`<ruby=にほんご>日本語</ruby>`タグもしくは省略した`<r=にほんご>日本語</r>`タグを使用できます。
85+
7086
また、半角ダブルクォーテーションで囲っても動作します。
87+
7188
`<ruby="にほんご">日本語</ruby>`タグも`<r="にほんご">日本語</r>`タグもOKです。
7289

7390
You can use `<ruby=ice>fire</ruby>` tag or `<r=ice>fire</r>` tag. Both are the same.
91+
7492
It can also work with double quotes.
93+
7594
`<ruby="ice">fire</ruby>` tag or `<r="ice">fire</r>` tag.
7695

7796
# How To Use

0 commit comments

Comments
 (0)