PrefabUtility android

Hello, I was developing my game, and at time, i use PrefabUtility, on it to create an empty prefab, but since this is an android game, when I went to build, I can’t, it says Unknow Identifier, so, is there some to replace PrefabUtility to use on android, or I misunderstood the use of this

Thanks in advance
=]

I wonder if you have solved the problem?

Prefabs are an editor only feature. That’s why the PrefabUtility is an editor class. Prefabs are just serialized standalone assets. At runtime you can only use assets which you have created in the editor. The only point of prefabs is that they provide a prepared / serialized object that can be used as instantiate source.

You can’t create new assets at runtime. You can create objects from scratch or create instances of prefabs that are part of the project.

The question is not clear what you actually want to do. The project files are read-only once the project is built.