ADD: 야모 카메라 컴포지팅 스크립트
This commit is contained in:
parent
4283164a7f
commit
ad144a3092
8
Assets/Scripts/YAMO_Scripts/Camera Composition.meta
Normal file
8
Assets/Scripts/YAMO_Scripts/Camera Composition.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d055de095e477eb4083e75ec18afc37b
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/Camera Composition.zip
(Stored with Git LFS)
Normal file
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/Camera Composition.zip
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7a76ec1c32272a242936808ac20449ad
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/CameraComposition.pdf
(Stored with Git LFS)
Normal file
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/CameraComposition.pdf
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,14 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 403187bd32b8502488efe4583bc51110
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 202816
|
||||
packageName: Camera Composition - Grid Overlay Tool
|
||||
packageVersion: 1.0.2
|
||||
assetPath: Assets/Camera Composition/CameraComposition.pdf
|
||||
uploadId: 471102
|
||||
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/Changelog.txt
(Stored with Git LFS)
Normal file
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/Changelog.txt
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,14 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1c03e5c3741df0b408c8e81db15780ef
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 202816
|
||||
packageName: Camera Composition - Grid Overlay Tool
|
||||
packageVersion: 1.0.2
|
||||
assetPath: Assets/Camera Composition/Changelog.txt
|
||||
uploadId: 471102
|
||||
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/README.txt
(Stored with Git LFS)
Normal file
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/README.txt
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,14 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 583d2b0c7a3fb5146baec6c15b419b8b
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 202816
|
||||
packageName: Camera Composition - Grid Overlay Tool
|
||||
packageVersion: 1.0.2
|
||||
assetPath: Assets/Camera Composition/README.txt
|
||||
uploadId: 471102
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3a53342f3b4a81240ada88d8ca085116
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "CameraComposition",
|
||||
"rootNamespace": "",
|
||||
"references": [],
|
||||
"includePlatforms": [],
|
||||
"excludePlatforms": [],
|
||||
"allowUnsafeCode": false,
|
||||
"overrideReferences": false,
|
||||
"precompiledReferences": [],
|
||||
"autoReferenced": true,
|
||||
"defineConstraints": [],
|
||||
"versionDefines": [],
|
||||
"noEngineReferences": false
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a2f7da84f307c3f4bbb7fed78a3a71b6
|
||||
AssemblyDefinitionImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 202816
|
||||
packageName: Camera Composition - Grid Overlay Tool
|
||||
packageVersion: 1.0.2
|
||||
assetPath: Assets/Camera Composition/Scripts/CameraComposition.asmdef
|
||||
uploadId: 471102
|
||||
@ -0,0 +1,81 @@
|
||||
/* This file is part of the "Camera Composition" editor tool by Jordan Cassady.
|
||||
* You are only permitted to use this software if purchased and downloaded from
|
||||
* the Unity Asset Store. You shall not sell, license, transfer, distribute or
|
||||
* otherwise make this software available to any third party.
|
||||
*/
|
||||
|
||||
// You are only permitted to use this package if purchased and downloaded
|
||||
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
|
||||
namespace JordanCassady
|
||||
{
|
||||
/// <summary>
|
||||
/// Provide access to the composition overlay properties and methods for
|
||||
/// manipulating the Image component from the editor window.
|
||||
/// </summary>
|
||||
[RequireComponent(typeof(Image))]
|
||||
public class CompositionOverlay : MonoBehaviour
|
||||
{
|
||||
#region PROPERTIES
|
||||
public bool IsActive { get { return GetComponent<Image>().enabled; } }
|
||||
public float Opacity { get { return GetComponent<Image>().color.a; } }
|
||||
#endregion
|
||||
|
||||
public void Activate(bool activate)
|
||||
{
|
||||
GetComponent<Image>().enabled = activate;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invert line color from white to black or vice versa.
|
||||
/// </summary>
|
||||
/// <param name="invert"></param>
|
||||
/// <returns></returns>
|
||||
public bool InvertLineColor(bool invert)
|
||||
{
|
||||
if (invert)
|
||||
{
|
||||
GetComponent<Image>().color = Color.black;
|
||||
} else {
|
||||
GetComponent<Image>().color = Color.white;
|
||||
}
|
||||
return invert;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Update the grid overlay opacity by changing the Image alpha value.
|
||||
/// </summary>
|
||||
/// <param name="alpha"></param>
|
||||
public void UpdateOpacity(float alpha)
|
||||
{
|
||||
var image = GetComponent<Image>();
|
||||
GetComponent<Image>().color = new Color(image.color.r, image.color.g, image.color.b, alpha);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Update the orientation of the overlay image.
|
||||
/// </summary>
|
||||
/// <param name="orientation"></param>/
|
||||
public void Position(string orientation)
|
||||
{
|
||||
if (orientation == "Bottom Right")
|
||||
{
|
||||
GetComponent<Image>().transform.rotation = Quaternion.Euler(0, 0, 0);
|
||||
}
|
||||
else if (orientation == "Bottom Left")
|
||||
{
|
||||
GetComponent<Image>().transform.rotation = Quaternion.Euler(-180, 0, -180);
|
||||
}
|
||||
else if (orientation == "Top Right")
|
||||
{
|
||||
GetComponent<Image>().transform.rotation = Quaternion.Euler(-180, 0, 0);
|
||||
}
|
||||
else if (orientation == "Top Left")
|
||||
{
|
||||
GetComponent<Image>().transform.rotation = Quaternion.Euler(0, 0, -180);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,18 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 98b784d50a6597540a070c89dc4b72d0
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 202816
|
||||
packageName: Camera Composition - Grid Overlay Tool
|
||||
packageVersion: 1.0.2
|
||||
assetPath: Assets/Camera Composition/Scripts/CompositionOverlay.cs
|
||||
uploadId: 471102
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: cff1447509629e94e8a9944a36f9ab42
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,236 @@
|
||||
#if UNITY_EDITOR
|
||||
using UnityEngine;
|
||||
using UnityEditor;
|
||||
|
||||
namespace JordanCassady
|
||||
{
|
||||
public class CameraComposition : EditorWindow
|
||||
{
|
||||
#region PROPERTIES
|
||||
private GameObject compositionObject;
|
||||
private GUIStyle guiStyle;
|
||||
private int tabIndex;
|
||||
private GameObject targetCamera;
|
||||
private Vector3 revertCameraPosition;
|
||||
private Quaternion revertCameraRotation;
|
||||
#endregion
|
||||
|
||||
private readonly string[] tabNames = { "Rule of Thirds", "Diagonal", "Golden Ratio", "Golden Spiral", "Cross" };
|
||||
private Color greyColor = new Color(56f / 255f, 56f / 255f, 56f / 255f, 1f);
|
||||
|
||||
[MenuItem("Tools/Camera Composition")]
|
||||
public static void ShowWindow()
|
||||
{
|
||||
var window = GetWindow<CameraComposition>("Camera Composition");
|
||||
window.minSize = new Vector2(370, 186);
|
||||
}
|
||||
|
||||
private void OnEnable()
|
||||
{
|
||||
InitGUIStyle();
|
||||
}
|
||||
|
||||
private void OnDestroy()
|
||||
{
|
||||
if (compositionObject != null)
|
||||
{
|
||||
DestroyImmediate(compositionObject);
|
||||
}
|
||||
}
|
||||
|
||||
private void OnGUI()
|
||||
{
|
||||
if (compositionObject == null)
|
||||
{
|
||||
compositionObject = Instantiate(Resources.Load<GameObject>("Prefabs/Camera Composition"));
|
||||
}
|
||||
|
||||
DrawTabSection();
|
||||
DrawOverrideSection();
|
||||
DrawCameraSection();
|
||||
}
|
||||
|
||||
private void InitGUIStyle()
|
||||
{
|
||||
guiStyle = new GUIStyle
|
||||
{
|
||||
fontSize = 12,
|
||||
fontStyle = FontStyle.Bold,
|
||||
normal = { textColor = Color.white }
|
||||
};
|
||||
}
|
||||
|
||||
private void DrawTabSection()
|
||||
{
|
||||
tabIndex = GUILayout.Toolbar(tabIndex, tabNames);
|
||||
GUILayout.Space(10);
|
||||
|
||||
if (compositionObject == null) return;
|
||||
|
||||
GameObject overlayObject = compositionObject.transform.GetChild(tabIndex).gameObject;
|
||||
|
||||
DrawGridSection(overlayObject);
|
||||
DrawColorSection(overlayObject);
|
||||
DrawOpacitySection(overlayObject);
|
||||
|
||||
if (tabIndex == 3) // Golden Spiral만 회전 지원
|
||||
{
|
||||
DrawRotationSection(overlayObject);
|
||||
}
|
||||
}
|
||||
|
||||
private void DrawGridSection(GameObject overlayObject)
|
||||
{
|
||||
GUILayout.Label("Grid", guiStyle);
|
||||
GUILayout.BeginHorizontal();
|
||||
|
||||
if (GUILayout.Button("On", GUILayout.Height(20)))
|
||||
overlayObject.GetComponent<CompositionOverlay>().Activate(true);
|
||||
|
||||
if (GUILayout.Button("Off", GUILayout.Height(20)))
|
||||
overlayObject.GetComponent<CompositionOverlay>().Activate(false);
|
||||
|
||||
GUILayout.EndHorizontal();
|
||||
GUILayout.Space(10);
|
||||
}
|
||||
|
||||
private void DrawRotationSection(GameObject overlayObject)
|
||||
{
|
||||
GUILayout.Label("Rotation", guiStyle);
|
||||
GUILayout.BeginHorizontal();
|
||||
|
||||
if (GUILayout.Button("↶ Top Left", GUILayout.Height(30)))
|
||||
{
|
||||
overlayObject.GetComponent<CompositionOverlay>().Position("Top Left");
|
||||
ToggleGrid(overlayObject);
|
||||
}
|
||||
|
||||
if (GUILayout.Button("↷ Top Right", GUILayout.Height(30)))
|
||||
{
|
||||
overlayObject.GetComponent<CompositionOverlay>().Position("Top Right");
|
||||
ToggleGrid(overlayObject);
|
||||
}
|
||||
|
||||
GUILayout.EndHorizontal();
|
||||
GUILayout.BeginHorizontal();
|
||||
|
||||
if (GUILayout.Button("↶ Bottom Left", GUILayout.Height(30)))
|
||||
{
|
||||
overlayObject.GetComponent<CompositionOverlay>().Position("Bottom Left");
|
||||
ToggleGrid(overlayObject);
|
||||
}
|
||||
|
||||
if (GUILayout.Button("↷ Bottom Right", GUILayout.Height(30)))
|
||||
{
|
||||
overlayObject.GetComponent<CompositionOverlay>().Position("Bottom Right");
|
||||
ToggleGrid(overlayObject);
|
||||
}
|
||||
|
||||
GUILayout.EndHorizontal();
|
||||
GUILayout.Space(10);
|
||||
}
|
||||
|
||||
private void DrawColorSection(GameObject overlayObject)
|
||||
{
|
||||
GUILayout.Label("Color", guiStyle);
|
||||
GUILayout.BeginHorizontal();
|
||||
|
||||
if (GUILayout.Button("White", GUILayout.Height(20)))
|
||||
{
|
||||
overlayObject.GetComponent<CompositionOverlay>().InvertLineColor(false);
|
||||
ToggleGrid(overlayObject);
|
||||
}
|
||||
|
||||
if (GUILayout.Button("Black", GUILayout.Height(20)))
|
||||
{
|
||||
overlayObject.GetComponent<CompositionOverlay>().InvertLineColor(true);
|
||||
ToggleGrid(overlayObject);
|
||||
}
|
||||
|
||||
GUILayout.EndHorizontal();
|
||||
GUILayout.Space(10);
|
||||
}
|
||||
|
||||
private void DrawOpacitySection(GameObject overlayObject)
|
||||
{
|
||||
GUILayout.Label("Opacity", guiStyle);
|
||||
|
||||
var opacity = overlayObject.GetComponent<CompositionOverlay>().Opacity;
|
||||
opacity = EditorGUILayout.Slider(opacity, 0f, 1f);
|
||||
overlayObject.GetComponent<CompositionOverlay>().UpdateOpacity(opacity);
|
||||
ToggleGrid(overlayObject);
|
||||
|
||||
GUILayout.Space(10);
|
||||
}
|
||||
|
||||
private void DrawOverrideSection()
|
||||
{
|
||||
GUILayout.Label("Overrides", guiStyle);
|
||||
|
||||
if (GUILayout.Button("Turn Off All Grids", GUILayout.Height(20)))
|
||||
{
|
||||
if (compositionObject != null)
|
||||
{
|
||||
foreach (Transform overlayObject in compositionObject.transform)
|
||||
{
|
||||
overlayObject.gameObject.GetComponent<CompositionOverlay>().Activate(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
GUILayout.Space(10);
|
||||
}
|
||||
|
||||
private void DrawCameraSection()
|
||||
{
|
||||
GUILayout.Label("Target Camera", guiStyle);
|
||||
targetCamera = (GameObject)EditorGUILayout.ObjectField(targetCamera, typeof(GameObject), true);
|
||||
|
||||
if (targetCamera == null)
|
||||
{
|
||||
EditorGUILayout.HelpBox("Select a target camera to adjust position & rotation.", MessageType.Info);
|
||||
return;
|
||||
}
|
||||
|
||||
GUILayout.Space(10);
|
||||
GUILayout.Label("Position", guiStyle);
|
||||
Undo.RecordObject(targetCamera.transform, "Camera Position Change");
|
||||
targetCamera.transform.position = EditorGUILayout.Vector3Field("", targetCamera.transform.position);
|
||||
|
||||
GUILayout.Label("Rotation", guiStyle);
|
||||
Undo.RecordObject(targetCamera.transform, "Camera Rotation Change");
|
||||
Vector3 rotationVector = EditorGUILayout.Vector3Field("", targetCamera.transform.rotation.eulerAngles);
|
||||
targetCamera.transform.rotation = Quaternion.Euler(rotationVector);
|
||||
|
||||
GUILayout.Space(10);
|
||||
GUILayout.BeginHorizontal();
|
||||
|
||||
if (GUILayout.Button("Align Camera With Scene View", GUILayout.Height(25)))
|
||||
{
|
||||
revertCameraPosition = targetCamera.transform.position;
|
||||
revertCameraRotation = targetCamera.transform.rotation;
|
||||
|
||||
SceneView sceneView = SceneView.lastActiveSceneView;
|
||||
targetCamera.transform.position = sceneView.camera.transform.position;
|
||||
targetCamera.transform.rotation = sceneView.camera.transform.rotation;
|
||||
}
|
||||
|
||||
if (GUILayout.Button("Revert", GUILayout.Height(25)))
|
||||
{
|
||||
targetCamera.transform.position = revertCameraPosition;
|
||||
targetCamera.transform.rotation = revertCameraRotation;
|
||||
}
|
||||
|
||||
GUILayout.EndHorizontal();
|
||||
}
|
||||
|
||||
private void ToggleGrid(GameObject overlayObject)
|
||||
{
|
||||
if (overlayObject.GetComponent<CompositionOverlay>().IsActive)
|
||||
{
|
||||
overlayObject.GetComponent<CompositionOverlay>().Activate(false);
|
||||
overlayObject.GetComponent<CompositionOverlay>().Activate(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@ -0,0 +1,18 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ebd5b4dd87acf5d4fb4708e7f8254391
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 202816
|
||||
packageName: Camera Composition - Grid Overlay Tool
|
||||
packageVersion: 1.0.2
|
||||
assetPath: Assets/Camera Composition/Scripts/Editor/CameraComposition.cs
|
||||
uploadId: 471102
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: dd7470611f8359d44bade60d577c1b3a
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f82d8fb0476d4ec49ba51d3ccc9bb995
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/Scripts/Resources/Overlays/overlays.cross.png
(Stored with Git LFS)
Normal file
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/Scripts/Resources/Overlays/overlays.cross.png
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,117 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8d77b5e9fb0b60042bf500b550408d4a
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 0
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 1
|
||||
wrapV: 1
|
||||
wrapW: 0
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 8
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/Scripts/Resources/Overlays/overlays.diagonal.png
(Stored with Git LFS)
Normal file
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/Scripts/Resources/Overlays/overlays.diagonal.png
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,115 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c9d95680f7765924597092167a372bb2
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 0
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 1
|
||||
wrapV: 1
|
||||
wrapW: 0
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 8
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 4096
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 4096
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 202816
|
||||
packageName: Camera Composition - Grid Overlay Tool
|
||||
packageVersion: 1.0.2
|
||||
assetPath: Assets/Camera Composition/Scripts/Resources/Overlays/overlays.diagonal.png
|
||||
uploadId: 471102
|
||||
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/Scripts/Resources/Overlays/overlays.goldenratio.png
(Stored with Git LFS)
Normal file
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/Scripts/Resources/Overlays/overlays.goldenratio.png
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,115 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 79b9b80aefa75f64b9d5a30ea126eea5
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 0
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 1
|
||||
wrapV: 1
|
||||
wrapW: 0
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 8
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 4096
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 4096
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 202816
|
||||
packageName: Camera Composition - Grid Overlay Tool
|
||||
packageVersion: 1.0.2
|
||||
assetPath: Assets/Camera Composition/Scripts/Resources/Overlays/overlays.goldenratio.png
|
||||
uploadId: 471102
|
||||
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/Scripts/Resources/Overlays/overlays.goldenspiral.png
(Stored with Git LFS)
Normal file
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/Scripts/Resources/Overlays/overlays.goldenspiral.png
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,115 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1d42720af587c634194e68d63a6ab372
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 0
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 1
|
||||
wrapV: 1
|
||||
wrapW: 0
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 8
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 4096
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 4096
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 202816
|
||||
packageName: Camera Composition - Grid Overlay Tool
|
||||
packageVersion: 1.0.2
|
||||
assetPath: Assets/Camera Composition/Scripts/Resources/Overlays/overlays.goldenspiral.png
|
||||
uploadId: 471102
|
||||
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/Scripts/Resources/Overlays/overlays.ruleofthirds.png
(Stored with Git LFS)
Normal file
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/Scripts/Resources/Overlays/overlays.ruleofthirds.png
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,115 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 73733fe54b9af5542add1b1dcda3fe6e
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 11
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 0
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 1
|
||||
wrapV: 1
|
||||
wrapW: 0
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 8
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 4096
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 4096
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 202816
|
||||
packageName: Camera Composition - Grid Overlay Tool
|
||||
packageVersion: 1.0.2
|
||||
assetPath: Assets/Camera Composition/Scripts/Resources/Overlays/overlays.ruleofthirds.png
|
||||
uploadId: 471102
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3da72fa5689b23e4db4a26f4614a4f37
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/Scripts/Resources/Prefabs/Camera Composition.prefab
(Stored with Git LFS)
Normal file
BIN
Assets/Scripts/YAMO_Scripts/Camera Composition/Scripts/Resources/Prefabs/Camera Composition.prefab
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,14 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 95ddfacf554c2f24c977dafaf03affcd
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 202816
|
||||
packageName: Camera Composition - Grid Overlay Tool
|
||||
packageVersion: 1.0.2
|
||||
assetPath: Assets/Camera Composition/Scripts/Resources/Prefabs/Camera Composition.prefab
|
||||
uploadId: 471102
|
||||
Loading…
x
Reference in New Issue
Block a user