Unity Garbage Code Generator

Unity Garbage Code Generator

introduction

No matter whether the project developed by Unity is launched on Google or App Store, it must pass the code similarity verification. At this time, if the third-party plug-in is used more, it may cause the review to fail.

We can ensure that the code similarity is relatively low by adding some irrelevant invalid codes to the project.

It is clumsy to manually copy some other invalid codes, and it is not easy to find some invalid and irrelevant codes. At this time, we can develop a garbage code generator by ourselves.

The garbage code generator should be done very well and meticulously, and the workload is still quite large. I am here just to ensure that it can be used. If it is not done well, I hope you can criticize and correct me.

accomplish

Auxiliary class

using System.Collections;
using System.Collections.Generic;
using Uni

Guess you like

Origin blog.csdn.net/yr1102358773/article/details/128915934