Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
Z
ZxAd_Unity
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王雪伟
ZxAd_Unity
Commits
e9460770
Commit
e9460770
authored
May 19, 2021
by
zhangzhe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
广告加载框
parent
be803ec4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
27 changed files
with
1527 additions
and
35 deletions
+1527
-35
.DS_Store
.DS_Store
+0
-0
AD_Loading.meta
Assets/AdSDK/AD/AD_Loading.meta
+1
-1
ADLoading.cs
Assets/AdSDK/AD/AD_Loading/ADLoading.cs
+145
-0
ADLoading.cs.meta
Assets/AdSDK/AD/AD_Loading/ADLoading.cs.meta
+11
-0
ADLoading_bg.png
Assets/AdSDK/AD/AD_Loading/ADLoading_bg.png
+0
-0
ADLoading_bg.png.meta
Assets/AdSDK/AD/AD_Loading/ADLoading_bg.png.meta
+92
-0
ADLoading_loading.png
Assets/AdSDK/AD/AD_Loading/ADLoading_loading.png
+0
-0
ADLoading_loading.png.meta
Assets/AdSDK/AD/AD_Loading/ADLoading_loading.png.meta
+92
-0
EffectMgr.cs
Assets/AdSDK/AD/AD_Loading/EffectMgr.cs
+532
-0
EffectMgr.cs.meta
Assets/AdSDK/AD/AD_Loading/EffectMgr.cs.meta
+11
-0
MonoBaseMgr.cs
Assets/AdSDK/AD/AD_Loading/MonoBaseMgr.cs
+38
-0
MonoBaseMgr.cs.meta
Assets/AdSDK/AD/AD_Loading/MonoBaseMgr.cs.meta
+11
-0
MonoMgr.cs
Assets/AdSDK/AD/AD_Loading/MonoMgr.cs
+22
-0
MonoMgr.cs.meta
Assets/AdSDK/AD/AD_Loading/MonoMgr.cs.meta
+11
-0
AdManager.cs
Assets/AdSDK/AD/AD_Manager/AdManager.cs
+35
-0
AdDemo.cs
Assets/AdSDK/AD/Demo/AdDemo.cs
+1
-1
HttpTool.cs
Assets/AdSDK/NetWork/HTTP/HttpTool.cs
+3
-1
Resources.meta
Assets/Resources.meta
+8
-0
ADLoading.meta
Assets/Resources/ADLoading.meta
+8
-0
ADLoading.prefab
Assets/Resources/ADLoading/ADLoading.prefab
+476
-0
ADLoading.prefab.meta
Assets/Resources/ADLoading/ADLoading.prefab.meta
+7
-0
packages-lock.json
Packages/packages-lock.json
+16
-16
EditorBuildSettings.asset
ProjectSettings/EditorBuildSettings.asset
+2
-2
GraphicsSettings.asset
ProjectSettings/GraphicsSettings.asset
+0
-1
PackageManagerSettings.asset
ProjectSettings/PackageManagerSettings.asset
+1
-1
ProjectSettings.asset
ProjectSettings/ProjectSettings.asset
+2
-10
ProjectVersion.txt
ProjectSettings/ProjectVersion.txt
+2
-2
No files found.
.DS_Store
View file @
e9460770
No preview for this file type
Assets/AdSDK/
NetWork/HTTPV2
.meta
→
Assets/AdSDK/
AD/AD_Loading
.meta
View file @
e9460770
fileFormatVersion: 2
fileFormatVersion: 2
guid:
a7e20345cf807564fbfb4c3d2779e72f
guid:
c7895a97019184bc5ae692e9fcb88337
folderAsset: yes
folderAsset: yes
DefaultImporter:
DefaultImporter:
externalObjects: {}
externalObjects: {}
...
...
Assets/AdSDK/AD/AD_Loading/ADLoading.cs
0 → 100644
View file @
e9460770
using
System.Collections
;
using
System.Collections.Generic
;
using
UnityEngine
;
using
UnityEngine.SceneManagement
;
using
UnityEngine.UI
;
public
class
ADLoading
:
MonoBehaviour
{
/// <summary>
/// 是否正在显示中
/// </summary>
public
static
bool
isShowing
;
// 播放要记录的参数
public
static
string
adSlotName
;
public
static
string
adActionName
;
public
static
ZXADRewardVideoListener
adListener
;
/// <summary>
/// 加载失败的次数
/// A组或B组视频加载失败, 都加载失败时要隐藏加载框
/// 每次隐藏加载框时都重置此变量
/// </summary>
public
int
loadFailCount
;
/// <summary>
/// 加载动画GameObject
/// </summary>
private
static
GameObject
ADLoadingGameObject
;
/// <summary>
/// 加载图片
/// </summary>
private
Transform
LoadingImage
;
private
static
ADLoading
instance
;
public
static
ADLoading
Instance
()
{
if
(
instance
==
null
)
{
GameObject
obj
=
new
GameObject
();
// 设置对象名字为脚本名
obj
.
name
=
typeof
(
ADLoading
).
ToString
();
// 让这个单例模式对象 切换场景不移除
DontDestroyOnLoad
(
obj
);
instance
=
obj
.
AddComponent
<
ADLoading
>();
}
return
instance
;
}
private
void
Start
()
{
InitSubviews
();
}
private
void
Update
()
{
if
(
LoadingImage
!=
null
)
{
LoadingImage
.
Rotate
(-
Vector3
.
forward
*
Time
.
deltaTime
*
250
);
}
}
/// <summary>
/// 初始化控件
/// </summary>
private
void
InitSubviews
()
{
}
/// <summary>
/// 显示广告加载图
/// </summary>
public
void
ShowADLoading
(
string
slotName
,
string
actionName
,
ZXADRewardVideoListener
listener
)
{
if
(!
isShowing
)
{
GameObject
prefab
=
Resources
.
Load
<
GameObject
>(
"ADLoading/ADLoading"
);
GameObject
ADLoading
=
Instantiate
(
prefab
,
Camera
.
main
.
transform
.
parent
);
ADLoading
.
name
=
"ADLoading"
;
isShowing
=
true
;
adSlotName
=
slotName
;
adActionName
=
actionName
;
adListener
=
listener
;
ADLoadingGameObject
=
ADLoading
;
LoadingImage
=
ADLoading
.
transform
.
Find
(
"BgImage/LoadingImage"
);
Text
loadText
=
ADLoading
.
transform
.
Find
(
"BgImage/Text"
).
GetComponent
<
Text
>();
StartCoroutine
(
PlayAnimator
(
loadText
));
}
}
IEnumerator
PlayAnimator
(
Text
loadText
)
{
int
num
=
1
;
while
(
loadText
!=
null
)
{
loadText
.
text
=
"正在加载视频\n请稍后"
;
for
(
int
i
=
0
;
i
<
num
;
i
++)
{
loadText
.
text
=
loadText
.
text
+
"."
;
}
num
++;
if
(
num
==
4
)
{
num
=
1
;
}
yield
return
new
WaitForSeconds
(
0.8f
);
}
}
public
void
HideADLoading
()
{
isShowing
=
false
;
adSlotName
=
null
;
adActionName
=
null
;
adListener
=
null
;
loadFailCount
=
0
;
Destroy
(
ADLoadingGameObject
);
}
}
Assets/AdSDK/AD/AD_Loading/ADLoading.cs.meta
0 → 100644
View file @
e9460770
fileFormatVersion: 2
guid: b8e186fde1a424d898d035bae5a45073
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
Assets/AdSDK/AD/AD_Loading/ADLoading_bg.png
0 → 100644
View file @
e9460770
2.44 KB
Assets/AdSDK/AD/AD_Loading/ADLoading_bg.png.meta
0 → 100644
View file @
e9460770
fileFormatVersion: 2
guid: 6720d104380e0437080431c470e702ef
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
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: -1
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: 1
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
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
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:
Assets/AdSDK/AD/AD_Loading/ADLoading_loading.png
0 → 100644
View file @
e9460770
2.72 KB
Assets/AdSDK/AD/AD_Loading/ADLoading_loading.png.meta
0 → 100644
View file @
e9460770
fileFormatVersion: 2
guid: f1ac1b402258d4239b87a3e36be36bac
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
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: -1
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: 1
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
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
applyGammaDecoding: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
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:
Assets/AdSDK/AD/AD_Loading/EffectMgr.cs
0 → 100644
View file @
e9460770
This diff is collapsed.
Click to expand it.
Assets/AdSDK/AD/AD_Loading/EffectMgr.cs.meta
0 → 100644
View file @
e9460770
fileFormatVersion: 2
guid: 19cb369d889b04755a0562447e6cdc2e
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
Assets/AdSDK/AD/AD_Loading/MonoBaseMgr.cs
0 → 100644
View file @
e9460770
using
System.Collections
;
using
System.Collections.Generic
;
using
UnityEngine
;
public
class
MonoBaseMgr
<
T
>
:
MonoBehaviour
where
T
:
MonoBehaviour
{
private
static
T
instance
;
public
static
T
Getinstance
()
{
if
(
instance
==
null
)
{
GameObject
obj
=
new
GameObject
(
typeof
(
T
).
ToString
()
+
"Scripts"
);
instance
=
obj
.
AddComponent
<
T
>();
DontDestroyOnLoad
(
obj
);
}
return
instance
;
}
public
static
T
GetInstance
()
{
if
(
instance
==
null
)
{
GameObject
obj
=
new
GameObject
(
typeof
(
T
).
ToString
()
+
"Scripts"
);
instance
=
obj
.
AddComponent
<
T
>();
DontDestroyOnLoad
(
obj
);
}
return
instance
;
}
public
static
T
Instance
()
{
if
(
instance
==
null
)
{
GameObject
obj
=
new
GameObject
(
typeof
(
T
).
ToString
()
+
"Scripts"
);
instance
=
obj
.
AddComponent
<
T
>();
DontDestroyOnLoad
(
obj
);
}
return
instance
;
}
}
Assets/AdSDK/AD/AD_Loading/MonoBaseMgr.cs.meta
0 → 100644
View file @
e9460770
fileFormatVersion: 2
guid: e8de3608ab9494f819f3c11756db1eff
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
Assets/AdSDK/AD/AD_Loading/MonoMgr.cs
0 → 100644
View file @
e9460770
using
System.Collections
;
using
System.Collections.Generic
;
using
UnityEngine
;
using
UnityEngine.Events
;
public
class
MonoMgr
:
MonoBaseMgr
<
MonoMgr
>
{
public
UnityAction
func
;
void
Update
()
{
func
?.
Invoke
();
}
public
void
AddUpdateListener
(
UnityAction
func
)
{
this
.
func
+=
func
;
}
public
void
RemoveUpdateListener
(
UnityAction
func
)
{
this
.
func
-=
func
;
}
}
Assets/AdSDK/AD/AD_Loading/MonoMgr.cs.meta
0 → 100644
View file @
e9460770
fileFormatVersion: 2
guid: 96eabe63e0a424642a928c97daa31a5f
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
Assets/AdSDK/AD/AD_Manager/AdManager.cs
View file @
e9460770
...
@@ -1077,6 +1077,11 @@ public class AdManager
...
@@ -1077,6 +1077,11 @@ public class AdManager
}),
new
Action
<
string
,
string
>((
code
,
errMsg
)
=>
}),
new
Action
<
string
,
string
>((
code
,
errMsg
)
=>
{
{
Debug
.
unityLogger
.
Log
(
ZXADConfig
.
ADManagerTAG
,
"激励视频请求失败"
+
errMsg
);
Debug
.
unityLogger
.
Log
(
ZXADConfig
.
ADManagerTAG
,
"激励视频请求失败"
+
errMsg
);
if
(
ADLoading
.
isShowing
)
{
ADLoading
.
Instance
().
HideADLoading
();
}
}));
}));
}
}
...
@@ -1108,6 +1113,13 @@ public class AdManager
...
@@ -1108,6 +1113,13 @@ public class AdManager
{
{
Debug
.
unityLogger
.
Log
(
ZXADConfig
.
ADManagerTAG
,
"激励视频A组缓存成功 "
+
entity
.
adPlatform
+
" CodeID "
+
entity
.
codeId
);
Debug
.
unityLogger
.
Log
(
ZXADConfig
.
ADManagerTAG
,
"激励视频A组缓存成功 "
+
entity
.
adPlatform
+
" CodeID "
+
entity
.
codeId
);
ZXADConfig
.
Instance
.
SetAdCache
(
sloatName
,
bl
,
"A"
);
ZXADConfig
.
Instance
.
SetAdCache
(
sloatName
,
bl
,
"A"
);
if
(
ADLoading
.
isShowing
)
{
ADLoading
.
Instance
().
HideADLoading
();
PlayCacheRewardVideoAd
(
ADLoading
.
adSlotName
,
ADLoading
.
adActionName
,
ADLoading
.
adListener
);
}
}
}
else
else
{
{
...
@@ -1118,6 +1130,13 @@ public class AdManager
...
@@ -1118,6 +1130,13 @@ public class AdManager
totalEntityList
.
RemoveAt
(
0
);
totalEntityList
.
RemoveAt
(
0
);
mLoadRewardVideoAdPlatform
(
entity
,
rewardVideoAdCallBackA
);
mLoadRewardVideoAdPlatform
(
entity
,
rewardVideoAdCallBackA
);
}
}
ADLoading
.
Instance
().
loadFailCount
++;
if
(
ADLoading
.
Instance
().
loadFailCount
==
2
)
{
ADLoading
.
Instance
().
HideADLoading
();
}
}
}
});
});
Debug
.
unityLogger
.
Log
(
ZXADConfig
.
ADManagerTAG
,
"A开始缓存激励视频"
);
Debug
.
unityLogger
.
Log
(
ZXADConfig
.
ADManagerTAG
,
"A开始缓存激励视频"
);
...
@@ -1147,6 +1166,13 @@ public class AdManager
...
@@ -1147,6 +1166,13 @@ public class AdManager
{
{
Debug
.
unityLogger
.
Log
(
ZXADConfig
.
ADManagerTAG
,
"激励视频B组缓存成功 "
+
bl
.
adPlatform
+
" CodeID "
+
bl
.
codeId
);
Debug
.
unityLogger
.
Log
(
ZXADConfig
.
ADManagerTAG
,
"激励视频B组缓存成功 "
+
bl
.
adPlatform
+
" CodeID "
+
bl
.
codeId
);
ZXADConfig
.
Instance
.
SetAdCache
(
sloatName
,
bl
,
"B"
);
ZXADConfig
.
Instance
.
SetAdCache
(
sloatName
,
bl
,
"B"
);
if
(
ADLoading
.
isShowing
)
{
ADLoading
.
Instance
().
HideADLoading
();
PlayCacheRewardVideoAd
(
ADLoading
.
adSlotName
,
ADLoading
.
adActionName
,
ADLoading
.
adListener
);
}
}
}
else
else
{
{
...
@@ -1157,6 +1183,13 @@ public class AdManager
...
@@ -1157,6 +1183,13 @@ public class AdManager
totalEntityList
.
RemoveAt
(
0
);
totalEntityList
.
RemoveAt
(
0
);
mLoadRewardVideoAdPlatform
(
entity
,
rewardVideoAdCallBackB
);
mLoadRewardVideoAdPlatform
(
entity
,
rewardVideoAdCallBackB
);
}
}
ADLoading
.
Instance
().
loadFailCount
++;
if
(
ADLoading
.
Instance
().
loadFailCount
==
2
)
{
ADLoading
.
Instance
().
HideADLoading
();
}
}
}
});
});
Debug
.
unityLogger
.
Log
(
ZXADConfig
.
ADManagerTAG
,
"B开始缓存激励视频"
);
Debug
.
unityLogger
.
Log
(
ZXADConfig
.
ADManagerTAG
,
"B开始缓存激励视频"
);
...
@@ -1281,6 +1314,8 @@ public class AdManager
...
@@ -1281,6 +1314,8 @@ public class AdManager
{
{
listener
.
onError
(
"播放激励视频失败 缓存的信息为null"
);
listener
.
onError
(
"播放激励视频失败 缓存的信息为null"
);
Debug
.
unityLogger
.
Log
(
ZXADConfig
.
ADManagerTAG
,
"播放激励视频失败 缓存的信息为null"
);
Debug
.
unityLogger
.
Log
(
ZXADConfig
.
ADManagerTAG
,
"播放激励视频失败 缓存的信息为null"
);
ADLoading
.
Instance
().
ShowADLoading
(
slotName
,
actionName
,
listener
);
LoadCacheRewardVideoAd
(
slotName
);
LoadCacheRewardVideoAd
(
slotName
);
}
}
}
}
...
...
Assets/AdSDK/AD/Demo/AdDemo.cs
View file @
e9460770
...
@@ -18,7 +18,7 @@ public class AdDemo : MonoBehaviour
...
@@ -18,7 +18,7 @@ public class AdDemo : MonoBehaviour
private
void
Awake
()
private
void
Awake
()
{
//AdManager.Instance.LoadSplshAd(new SplshAdListener(this));
{
//AdManager.Instance.LoadSplshAd(new SplshAdListener(this));
}
}
private
void
Start
()
private
void
Start
()
{
{
...
...
Assets/AdSDK/NetWork/HTTP/HttpTool.cs
View file @
e9460770
...
@@ -15,7 +15,9 @@ public class HttpTool : MonoBehaviour
...
@@ -15,7 +15,9 @@ public class HttpTool : MonoBehaviour
public
bool
IsShowLog
=
false
;
public
bool
IsShowLog
=
false
;
private
static
string
HttpLogTag
=
"UnityHttp"
;
private
static
string
HttpLogTag
=
"UnityHttp"
;
private
string
appLs
=
"1d8a0d53c33a9b95"
;
//private string appLs = "1d8a0d53c33a9b95";
private
string
appLs
=
"e2555df241c52443"
;
private
static
HttpTool
_instacne
=
null
;
private
static
HttpTool
_instacne
=
null
;
...
...
Assets/Resources.meta
0 → 100644
View file @
e9460770
fileFormatVersion: 2
guid: b4d9d86d996b243338be67e5b5ef90be
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Assets/Resources/ADLoading.meta
0 → 100644
View file @
e9460770
fileFormatVersion: 2
guid: a99917c380e234b12b80798e45c7a200
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Assets/Resources/ADLoading/ADLoading.prefab
0 → 100644
View file @
e9460770
This diff is collapsed.
Click to expand it.
Assets/Resources/ADLoading/ADLoading.prefab.meta
0 → 100644
View file @
e9460770
fileFormatVersion: 2
guid: c4af3a9c54f1e4018b7e087fa4bff163
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Packages/packages-lock.json
View file @
e9460770
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
"com.unity.modules.animation"
:
"1.0.0"
,
"com.unity.modules.animation"
:
"1.0.0"
,
"com.unity.modules.uielements"
:
"1.0.0"
"com.unity.modules.uielements"
:
"1.0.0"
},
},
"url"
:
"https://packages.unity.c
n
"
"url"
:
"https://packages.unity.c
om
"
},
},
"com.unity.2d.common"
:
{
"com.unity.2d.common"
:
{
"version"
:
"2.1.0"
,
"version"
:
"2.1.0"
,
...
@@ -21,21 +21,21 @@
...
@@ -21,21 +21,21 @@
"com.unity.2d.sprite"
:
"1.0.0"
,
"com.unity.2d.sprite"
:
"1.0.0"
,
"com.unity.modules.uielements"
:
"1.0.0"
"com.unity.modules.uielements"
:
"1.0.0"
},
},
"url"
:
"https://packages.unity.c
n
"
"url"
:
"https://packages.unity.c
om
"
},
},
"com.unity.2d.path"
:
{
"com.unity.2d.path"
:
{
"version"
:
"2.1.0"
,
"version"
:
"2.1.0"
,
"depth"
:
1
,
"depth"
:
1
,
"source"
:
"registry"
,
"source"
:
"registry"
,
"dependencies"
:
{},
"dependencies"
:
{},
"url"
:
"https://packages.unity.c
n
"
"url"
:
"https://packages.unity.c
om
"
},
},
"com.unity.2d.pixel-perfect"
:
{
"com.unity.2d.pixel-perfect"
:
{
"version"
:
"2.1.0"
,
"version"
:
"2.1.0"
,
"depth"
:
0
,
"depth"
:
0
,
"source"
:
"registry"
,
"source"
:
"registry"
,
"dependencies"
:
{},
"dependencies"
:
{},
"url"
:
"https://packages.unity.c
n
"
"url"
:
"https://packages.unity.c
om
"
},
},
"com.unity.2d.psdimporter"
:
{
"com.unity.2d.psdimporter"
:
{
"version"
:
"2.1.6"
,
"version"
:
"2.1.6"
,
...
@@ -46,7 +46,7 @@
...
@@ -46,7 +46,7 @@
"com.unity.2d.animation"
:
"3.2.5"
,
"com.unity.2d.animation"
:
"3.2.5"
,
"com.unity.2d.sprite"
:
"1.0.0"
"com.unity.2d.sprite"
:
"1.0.0"
},
},
"url"
:
"https://packages.unity.c
n
"
"url"
:
"https://packages.unity.c
om
"
},
},
"com.unity.2d.sprite"
:
{
"com.unity.2d.sprite"
:
{
"version"
:
"1.0.0"
,
"version"
:
"1.0.0"
,
...
@@ -63,7 +63,7 @@
...
@@ -63,7 +63,7 @@
"com.unity.2d.common"
:
"2.0.2"
,
"com.unity.2d.common"
:
"2.0.2"
,
"com.unity.2d.path"
:
"2.0.6"
"com.unity.2d.path"
:
"2.0.6"
},
},
"url"
:
"https://packages.unity.c
n
"
"url"
:
"https://packages.unity.c
om
"
},
},
"com.unity.2d.tilemap"
:
{
"com.unity.2d.tilemap"
:
{
"version"
:
"1.0.0"
,
"version"
:
"1.0.0"
,
...
@@ -76,14 +76,14 @@
...
@@ -76,14 +76,14 @@
"depth"
:
0
,
"depth"
:
0
,
"source"
:
"registry"
,
"source"
:
"registry"
,
"dependencies"
:
{},
"dependencies"
:
{},
"url"
:
"https://packages.unity.c
n
"
"url"
:
"https://packages.unity.c
om
"
},
},
"com.unity.ext.nunit"
:
{
"com.unity.ext.nunit"
:
{
"version"
:
"1.0.6"
,
"version"
:
"1.0.6"
,
"depth"
:
1
,
"depth"
:
1
,
"source"
:
"registry"
,
"source"
:
"registry"
,
"dependencies"
:
{},
"dependencies"
:
{},
"url"
:
"https://packages.unity.c
n
"
"url"
:
"https://packages.unity.c
om
"
},
},
"com.unity.ide.rider"
:
{
"com.unity.ide.rider"
:
{
"version"
:
"1.1.4"
,
"version"
:
"1.1.4"
,
...
@@ -92,28 +92,28 @@
...
@@ -92,28 +92,28 @@
"dependencies"
:
{
"dependencies"
:
{
"com.unity.test-framework"
:
"1.1.1"
"com.unity.test-framework"
:
"1.1.1"
},
},
"url"
:
"https://packages.unity.c
n
"
"url"
:
"https://packages.unity.c
om
"
},
},
"com.unity.ide.vscode"
:
{
"com.unity.ide.vscode"
:
{
"version"
:
"1.2.3"
,
"version"
:
"1.2.3"
,
"depth"
:
0
,
"depth"
:
0
,
"source"
:
"registry"
,
"source"
:
"registry"
,
"dependencies"
:
{},
"dependencies"
:
{},
"url"
:
"https://packages.unity.c
n
"
"url"
:
"https://packages.unity.c
om
"
},
},
"com.unity.mathematics"
:
{
"com.unity.mathematics"
:
{
"version"
:
"1.1.0"
,
"version"
:
"1.1.0"
,
"depth"
:
1
,
"depth"
:
1
,
"source"
:
"registry"
,
"source"
:
"registry"
,
"dependencies"
:
{},
"dependencies"
:
{},
"url"
:
"https://packages.unity.c
n
"
"url"
:
"https://packages.unity.c
om
"
},
},
"com.unity.mobile.android-logcat"
:
{
"com.unity.mobile.android-logcat"
:
{
"version"
:
"1.2.1"
,
"version"
:
"1.2.1"
,
"depth"
:
0
,
"depth"
:
0
,
"source"
:
"registry"
,
"source"
:
"registry"
,
"dependencies"
:
{},
"dependencies"
:
{},
"url"
:
"https://packages.unity.c
n
"
"url"
:
"https://packages.unity.c
om
"
},
},
"com.unity.mobile.notifications"
:
{
"com.unity.mobile.notifications"
:
{
"version"
:
"1.3.2"
,
"version"
:
"1.3.2"
,
...
@@ -122,7 +122,7 @@
...
@@ -122,7 +122,7 @@
"dependencies"
:
{
"dependencies"
:
{
"com.unity.modules.androidjni"
:
"1.0.0"
"com.unity.modules.androidjni"
:
"1.0.0"
},
},
"url"
:
"https://packages.unity.c
n
"
"url"
:
"https://packages.unity.c
om
"
},
},
"com.unity.test-framework"
:
{
"com.unity.test-framework"
:
{
"version"
:
"1.1.22"
,
"version"
:
"1.1.22"
,
...
@@ -133,7 +133,7 @@
...
@@ -133,7 +133,7 @@
"com.unity.modules.imgui"
:
"1.0.0"
,
"com.unity.modules.imgui"
:
"1.0.0"
,
"com.unity.modules.jsonserialize"
:
"1.0.0"
"com.unity.modules.jsonserialize"
:
"1.0.0"
},
},
"url"
:
"https://packages.unity.c
n
"
"url"
:
"https://packages.unity.c
om
"
},
},
"com.unity.textmeshpro"
:
{
"com.unity.textmeshpro"
:
{
"version"
:
"2.1.3"
,
"version"
:
"2.1.3"
,
...
@@ -142,7 +142,7 @@
...
@@ -142,7 +142,7 @@
"dependencies"
:
{
"dependencies"
:
{
"com.unity.ugui"
:
"1.0.0"
"com.unity.ugui"
:
"1.0.0"
},
},
"url"
:
"https://packages.unity.c
n
"
"url"
:
"https://packages.unity.c
om
"
},
},
"com.unity.timeline"
:
{
"com.unity.timeline"
:
{
"version"
:
"1.2.18"
,
"version"
:
"1.2.18"
,
...
@@ -154,7 +154,7 @@
...
@@ -154,7 +154,7 @@
"com.unity.modules.audio"
:
"1.0.0"
,
"com.unity.modules.audio"
:
"1.0.0"
,
"com.unity.modules.particlesystem"
:
"1.0.0"
"com.unity.modules.particlesystem"
:
"1.0.0"
},
},
"url"
:
"https://packages.unity.c
n
"
"url"
:
"https://packages.unity.c
om
"
},
},
"com.unity.ugui"
:
{
"com.unity.ugui"
:
{
"version"
:
"1.0.0"
,
"version"
:
"1.0.0"
,
...
...
ProjectSettings/EditorBuildSettings.asset
View file @
e9460770
...
@@ -5,7 +5,7 @@ EditorBuildSettings:
...
@@ -5,7 +5,7 @@ EditorBuildSettings:
m_ObjectHideFlags
:
0
m_ObjectHideFlags
:
0
serializedVersion
:
2
serializedVersion
:
2
m_Scenes
:
m_Scenes
:
-
enabled
:
1
-
enabled
:
0
path
:
Assets/AdSDK/AD/CSJ/Example/Example.unity
path
:
Assets/AdSDK/AD/CSJ/Example/Example.unity
guid
:
1e4f8457b1266154e80399e42b932ceb
guid
:
1e4f8457b1266154e80399e42b932ceb
-
enabled
:
0
-
enabled
:
0
...
@@ -17,7 +17,7 @@ EditorBuildSettings:
...
@@ -17,7 +17,7 @@ EditorBuildSettings:
-
enabled
:
0
-
enabled
:
0
path
:
Assets/AdSDK/SplashDemo/Splash.unity
path
:
Assets/AdSDK/SplashDemo/Splash.unity
guid
:
37af8cf3fb373478ab04e3ee2f3b700a
guid
:
37af8cf3fb373478ab04e3ee2f3b700a
-
enabled
:
0
-
enabled
:
1
path
:
Assets/AdSDK/AD/Demo/AdDemo.unity
path
:
Assets/AdSDK/AD/Demo/AdDemo.unity
guid
:
ef80a35d44f809e4a8957d1ed9571fd2
guid
:
ef80a35d44f809e4a8957d1ed9571fd2
-
enabled
:
0
-
enabled
:
0
...
...
ProjectSettings/GraphicsSettings.asset
View file @
e9460770
...
@@ -38,7 +38,6 @@ GraphicsSettings:
...
@@ -38,7 +38,6 @@ GraphicsSettings:
-
{
fileID
:
10783
,
guid
:
0000000000000000f000000000000000
,
type
:
0
}
-
{
fileID
:
10783
,
guid
:
0000000000000000f000000000000000
,
type
:
0
}
-
{
fileID
:
16000
,
guid
:
0000000000000000f000000000000000
,
type
:
0
}
-
{
fileID
:
16000
,
guid
:
0000000000000000f000000000000000
,
type
:
0
}
-
{
fileID
:
16001
,
guid
:
0000000000000000f000000000000000
,
type
:
0
}
-
{
fileID
:
16001
,
guid
:
0000000000000000f000000000000000
,
type
:
0
}
-
{
fileID
:
16003
,
guid
:
0000000000000000f000000000000000
,
type
:
0
}
-
{
fileID
:
17000
,
guid
:
0000000000000000f000000000000000
,
type
:
0
}
-
{
fileID
:
17000
,
guid
:
0000000000000000f000000000000000
,
type
:
0
}
m_PreloadedShaders
:
[]
m_PreloadedShaders
:
[]
m_SpritesDefaultMaterial
:
{
fileID
:
10754
,
guid
:
0000000000000000f000000000000000
,
m_SpritesDefaultMaterial
:
{
fileID
:
10754
,
guid
:
0000000000000000f000000000000000
,
...
...
ProjectSettings/PackageManagerSettings.asset
View file @
e9460770
...
@@ -17,7 +17,7 @@ MonoBehaviour:
...
@@ -17,7 +17,7 @@ MonoBehaviour:
m_Registries
:
m_Registries
:
-
m_Id
:
main
-
m_Id
:
main
m_Name
:
m_Name
:
m_Url
:
https://packages.unity.c
n
m_Url
:
https://packages.unity.c
om
m_Scopes
:
[]
m_Scopes
:
[]
m_IsDefault
:
1
m_IsDefault
:
1
m_UserSelectedRegistryName
:
m_UserSelectedRegistryName
:
...
...
ProjectSettings/ProjectSettings.asset
View file @
e9460770
...
@@ -17,7 +17,7 @@ PlayerSettings:
...
@@ -17,7 +17,7 @@ PlayerSettings:
defaultCursor
:
{
fileID
:
0
}
defaultCursor
:
{
fileID
:
0
}
cursorHotspot
:
{
x
:
0
,
y
:
0
}
cursorHotspot
:
{
x
:
0
,
y
:
0
}
m_SplashScreenBackgroundColor
:
{
r
:
0.13725491
,
g
:
0.12156863
,
b
:
0.1254902
,
a
:
1
}
m_SplashScreenBackgroundColor
:
{
r
:
0.13725491
,
g
:
0.12156863
,
b
:
0.1254902
,
a
:
1
}
m_ShowUnitySplashScreen
:
0
m_ShowUnitySplashScreen
:
1
m_ShowUnitySplashLogo
:
1
m_ShowUnitySplashLogo
:
1
m_SplashScreenOverlayOpacity
:
1
m_SplashScreenOverlayOpacity
:
1
m_SplashScreenAnimation
:
1
m_SplashScreenAnimation
:
1
...
@@ -41,12 +41,6 @@ PlayerSettings:
...
@@ -41,12 +41,6 @@ PlayerSettings:
height
:
1
height
:
1
m_SplashScreenLogos
:
[]
m_SplashScreenLogos
:
[]
m_VirtualRealitySplashScreen
:
{
fileID
:
0
}
m_VirtualRealitySplashScreen
:
{
fileID
:
0
}
m_ShowUnitySplashAds
:
0
m_AdsAndroidGameId
:
m_AdsIosGameId
:
m_ShowSplashAdsSlogan
:
0
m_SloganImage
:
{
fileID
:
0
}
m_SloganHeight
:
150
m_HolographicTrackingLossScreen
:
{
fileID
:
0
}
m_HolographicTrackingLossScreen
:
{
fileID
:
0
}
defaultScreenWidth
:
1920
defaultScreenWidth
:
1920
defaultScreenHeight
:
1080
defaultScreenHeight
:
1080
...
@@ -124,7 +118,6 @@ PlayerSettings:
...
@@ -124,7 +118,6 @@ PlayerSettings:
vulkanNumSwapchainBuffers
:
3
vulkanNumSwapchainBuffers
:
3
vulkanEnableSetSRGBWrite
:
0
vulkanEnableSetSRGBWrite
:
0
vulkanEnableLateAcquireNextImage
:
0
vulkanEnableLateAcquireNextImage
:
0
useSecurityBuild
:
0
m_SupportedAspectRatios
:
m_SupportedAspectRatios
:
4:3
:
1
4:3
:
1
5:4
:
1
5:4
:
1
...
@@ -178,7 +171,7 @@ PlayerSettings:
...
@@ -178,7 +171,7 @@ PlayerSettings:
Android
:
com.ym.wdlc
Android
:
com.ym.wdlc
Lumin
:
com.DefaultCompany.com.unity.template.mobile2D
Lumin
:
com.DefaultCompany.com.unity.template.mobile2D
Standalone
:
com.DefaultCompany.com.unity.template.mobile2D
Standalone
:
com.DefaultCompany.com.unity.template.mobile2D
iPhone
:
com.
DefaultCompany.com.unity.template.mobile2D
iPhone
:
com.
ym.iosawpdd
tvOS
:
com.DefaultCompany.com.unity.template.mobile2D
tvOS
:
com.DefaultCompany.com.unity.template.mobile2D
buildNumber
:
buildNumber
:
Standalone
:
0
Standalone
:
0
...
@@ -373,7 +366,6 @@ PlayerSettings:
...
@@ -373,7 +366,6 @@ PlayerSettings:
m_Kind
:
2
m_Kind
:
2
m_SubKind
:
m_SubKind
:
m_BuildTargetBatching
:
[]
m_BuildTargetBatching
:
[]
m_BuildTargetEncrypting
:
[]
m_BuildTargetGraphicsJobs
:
m_BuildTargetGraphicsJobs
:
-
m_BuildTarget
:
MacStandaloneSupport
-
m_BuildTarget
:
MacStandaloneSupport
m_GraphicsJobs
:
0
m_GraphicsJobs
:
0
...
...
ProjectSettings/ProjectVersion.txt
View file @
e9460770
m_EditorVersion: 2019.4.
21f1c
1
m_EditorVersion: 2019.4.
19f
1
m_EditorVersionWithRevision: 2019.4.
21f1c1 (7fef87dbc35f
)
m_EditorVersionWithRevision: 2019.4.
19f1 (ca5b14067cec
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment