Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anchan828/unity-gameviewsizehelper
ScriptからGameViewSizeを作成、また設定するヘルパークラス
https://github.com/anchan828/unity-gameviewsizehelper
Last synced: about 2 months ago
JSON representation
ScriptからGameViewSizeを作成、また設定するヘルパークラス
- Host: GitHub
- URL: https://github.com/anchan828/unity-gameviewsizehelper
- Owner: anchan828
- License: mit
- Created: 2013-07-22T08:44:34.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-12-27T05:42:42.000Z (almost 6 years ago)
- Last Synced: 2024-08-03T19:09:31.888Z (5 months ago)
- Language: C#
- Size: 12.7 KB
- Stars: 54
- Watchers: 5
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
GameViewSizeHelper
==================ScriptからGameViewSizeを作成、また設定するヘルパークラス
## API
### AddCustomSize
GameViewサイズを追加します
```cs
public static void AddCustomSize (GameViewSizeGroupType groupType, GameViewSize gameViewSize)
public static void AddCustomSize (GameViewSizeGroupType groupType, GameViewSizeType type, int width, int height, string baseText)
```名前|説明
:---|:---
groupType|追加したいプラットフォーム
gameViewSize|サイズやアスペクト比など必要な情報を格納したGameViewSizeオブジェクト
type|アスペクト比かピクセルサイズか
width|幅
height|高さ
baseText|この設定の名前### RemoveCustomSize
GameViewサイズを削除します
```cs
public static bool RemoveCustomSize (GameViewSizeGroupType groupType, GameViewSize gameViewSize)
public static bool RemoveCustomSize (GameViewSizeGroupType groupType, GameViewSizeType type, int width, int height, string baseText)
```### Contains
設定しようとしているGameViewサイズが既に設定済みか確認します
```cs
public static bool Contains (GameViewSizeGroupType groupType, GameViewSize gameViewSize)
public static bool Contains (GameViewSizeGroupType groupType, GameViewSizeType type, int width, int height, string baseText)
```### ChangeGameViewSize
指定のGameViewサイズに変更します
必ずUnityEditorをgroupTypeと同じプラットフォームに指定しておかなければいけません```cs
public static void ChangeGameViewSize (GameViewSizeGroupType groupType, GameViewSize gameViewSize)
public static void ChangeGameViewSize (GameViewSizeGroupType groupType, GameViewSizeType type, int width, int height, string baseText)
```## LICENSE
[MIT](https://github.com/anchan828/unity-GameViewSizeHelper/blob/master/LICENSE)