3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Unity】ZenjectをImportするとエラーが出る

Posted at

概要

ZenjectをAsset StoreからImportすると出現するエラーを、強引に解決する方法を書きました。

環境

Unity 2019.1.0f2 personal
Zenject 7.3.1

問題

ZenjectをAsset StoreからImportすると、以下のようなエラーが出ます。

Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/Ship.cs(41,16): error CS0246: The type or namespace name 'ParticleEmitter' could not be found (are you missing a using directive or an assembly reference?)

Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/Ship.cs(18,9): error CS0246: The type or namespace name 'ParticleEmitter' could not be found (are you missing a using directive or an assembly reference?)

スクリーンショット 2019-05-09 午後2.39.33.png

'ParticleEmitter'というnamespaceが見当たらない、という内容のエラーです。

原因

ParticleEmitterがUnity 2018.1 以降廃止されていることが原因です。

解決方法

強引な解決方法ですが、
Assets > Plugins > Zenject > OptionalExtras
を開き、SampleGame1(Beginner)を削除します。

参考文献

UnityEngine.ParticleEmitter - Unity スクリプトリファレンス

Unity2018で旧来のパーティクルがエラーになる

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?