Releases: Katsuya100/ConstExpressionForUnity
Releases · Katsuya100/ConstExpressionForUnity
v3.3.0
v3.2.0
- Support for null
- Fixed caching of values after boxing.
- Fixed errors when multithreading.
- Compile-time error handler can now be implemented
- Support for invalidation in specific assemblies and types
==== - nullに対応
- boxing後の値をキャッシュするよう対応
- マルチスレッド時のエラーを修正
- コンパイル時エラーハンドラーを実装できるよう対応
- 特定アセンブリや型での無効化に対応
v3.1.1
- Updated Dependent Packages
- Fixed bugs
==== - 依存パッケージを更新
- 不具合を修正
v3.1.0
- Update dependent packages
- Omitted tracking of local variables with constants assigned
==== - 依存パッケージを更新
- 定数が代入されたローカル変数のトラッキングをオミット
v3.0.0
- Implement StaticExpression
- Supports all types, not including reference types, as arguments and return values of ConstExpression.
- Supports generic struct types as arguments and return values of ConstExpression.
- Support giving the return value of ConstExpression as the argument of ConstExpression.
- Relaxed restrictions on ConstExpression arguments that are variables.
- Updated dependencies
==== - StaticExpressionを実装
- ConstExpressionの引数や戻り値として、参照型を含まない全ての型をサポート
- ConstExpressionの引数や戻り値として、Genericなstruct型をサポート
- ConstExpressionの引数にConstExpressionの戻り値を与えられるよう対応
- ConstExpressionの引数が変数だった場合の制約を緩和
- 依存パッケージを更新
v2.1.0
- Fixed a problem with incorrect ConstTable names
- Updated dependencies
==== - ConstTableの名前が間違っていた問題を修正
- 依存パッケージを更新
v2.0.0
- Separated common functionality that can be used in other libraries into a separate package
- Changed the namespace of ReadOnlyArray
- Fixed a critical bug with crashes
==== - 他ライブラリでも使える共通機能を別パッケージに分離
- ReadOnlyArrayのネームスペースを変更
- クラッシュを伴う重大な不具合の修正
v1.3.0
- Supported bool and ReadOnlyArray<bool> types
- GUID in package.json was conflicting with other packages.
==== - bool型、ReadOnlyArray<bool>型に対応
- package.jsonのGUIDが他のパッケージと衝突していたため変更
v1.2.0
- Added option to ConstExpressionAttribute to disable "warning on calculation failure".
==== - ConstExpressionAttributeに「計算失敗時の警告」を非有効化するオプションを追加。
v1.1.0
- Support for enum.
- Supports ReadOnlyArray<enum>.
- Supports ReadOnlyArray<string>.
==== - enumに対応
- ReadOnlyArray<enum>に対応
- ReadOnlyArray<string>に対応