Created
March 17, 2015 23:11
-
-
Save nutti/066f8a39e6040e8e61b2 to your computer and use it in GitHub Desktop.
[Unity] Unityからnendの広告を表示させる方法 ref: http://qiita.com/nutti/items/b337736184c56c3203d1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GetComponent(Nend_Ad_Banner_Controller).OnScreenChanged(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var banner = GetComponent(NendAdBanner); | |
banner.Hide(); | |
bannder.Pause(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var banner = GetComponent(NendAdBanner); | |
banner.Show(); | |
banner.Resume(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment