DavidGuaita
DavidGuaita

Reputation: 511

Which Unity version deprecated PostProcessBuildplayer?

It seems that PostProcessBuildPlayer is not working anymore in Unity 4.5, it must have been deprecated.

Which version was the last one to support PostprocessBuildPlayer script?

Upvotes: 0

Views: 1161

Answers (1)

peterept
peterept

Reputation: 4427

Are you in a Mac environment?

It hasn't been deprecated AFAIK.

It is working for me on 4.5.5f1:

$ vi Assets/Editor/PostProcessBuildPlayer
#!/bin/sh
open "http://google.com"
$ chmod +x A

When I build I see it open up my web browser.

For a cross-platform build solution Unity recommends using the Build Player Pipeline

Upvotes: 1

Related Questions