91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

以前自己用Flash做的小游戲重新用Unity復刻了一次,加強了美術效果以及優化了關卡 游戲名:「推箱子 3D」「Sokoban 3D 開發引擎:Unity

資源截圖

代碼片段和文件信息

//?Author:?Daniele?Giardini?-?http://www.demigiant.com
//?Created:?2018/07/13

#if?true?//?MODULE_MARKER
using?System;
using?UnityEngine;
#if?UNITY_5?||?UNITY_2017_1_OR_NEWER
using?UnityEngine.Audio;?//?Required?for?AudioMixer
#endif

#pragma?warning?disable?1591
namespace?DG.Tweening
{
public?static?class?DOTweenModuleAudio
????{
????????#region?Shortcuts

????????#region?Audio

????????///?Tweens?an?AudioSource‘s?volume?to?the?given?value.
????????///?Also?stores?the?AudioSource?as?the?tween‘s?target?so?it?can?be?used?for?filtered?operations

????????///?The?end?value?to?reach?(0?to?1)The?duration?of?the?tween
????????public?static?Tweener?DOFade(this?AudioSource?target?float?endValue?float?duration)
????????{
????????????if?(endValue?????????????else?if?(endValue?>?1)?endValue?=?1;
????????????return?DOTween.To(()?=>?target.volume?x?=>?target.volume?=?x?endValue?duration).SetTarget(target);
????????}

????????///?Tweens?an?AudioSource‘s?pitch?to?the?given?value.
????????///?Also?stores?the?AudioSource?as?the?tween‘s?target?so?it?can?be?used?for?filtered?operations

????????///?The?end?value?to?reachThe?duration?of?the?tween
????????public?static?Tweener?DOPitch(this?AudioSource?target?float?endValue?float?duration)
????????{
????????????return?DOTween.To(()?=>?target.pitch?x?=>?target.pitch?=?x?endValue?duration).SetTarget(target);
????????}

????????#endregion

#if?UNITY_5?||?UNITY_2017_1_OR_NEWER
????????#region?AudioMixer?(Unity?5?or?Newer)

????????///?Tweens?an?AudioMixer‘s?exposed?float?to?the?given?value.
????????///?Also?stores?the?AudioMixer?as?the?tween‘s?target?so?it?can?be?used?for?filtered?operations.
????????///?Note?that?you?need?to?manually?expose?a?float?in?an?AudioMixerGroup?in?order?to?be?able?to?tween?it?from?an?AudioMixer.

????????///?Name?given?to?the?exposed?float?to?set
????????///?The?end?value?to?reachThe?duration?of?the?tween
????????public?static?Tweener?DOSetFloat(this?AudioMixer?target?string?floatName?float?endValue?float?duration)
????????{
????????????return?DOTween.To(()=>?{
????????????????????float?currVal;
????????????????????target.GetFloat(floatName?out?currVal);
????????????????????return?currVal;
????????????????}?x=>?target.SetFloat(floatName?x)?endValue?duration)
????????????????.SetTarget(target);
????????}

????????#region?Operation?Shortcuts

????????///?

????????///?Completes?all?tweens?that?have?this?target?as?a?reference
????????///?(meaning?tweens?that?were?started?from?this?target?or?that?had?this?target?added?as?an?Id)
????????///?and?returns?the?total?number?of?tweens?completed
????????///?(meaning?the?tweens?that?don‘t?have?infinite?loops?and?were?not?already?complete)
??????

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2018-09-11?12:31??sokoban-master\
?????文件????????1758??2018-09-11?12:31??sokoban-master\README.md
?????目錄???????????0??2018-09-11?12:31??sokoban-master\Sokoban\
?????目錄???????????0??2018-09-11?12:31??sokoban-master\Sokoban\Assets\
?????文件?????????172??2018-09-11?12:31??sokoban-master\Sokoban\Assets\CopyRight.meta
?????目錄???????????0??2018-09-11?12:31??sokoban-master\Sokoban\Assets\CopyRight\
?????文件?????????172??2018-09-11?12:31??sokoban-master\Sokoban\Assets\CopyRight\Developer.meta
?????目錄???????????0??2018-09-11?12:31??sokoban-master\Sokoban\Assets\CopyRight\Developer\
?????文件???????27457??2018-09-11?12:31??sokoban-master\Sokoban\Assets\CopyRight\Developer\Jing.jpg
?????文件????????1914??2018-09-11?12:31??sokoban-master\Sokoban\Assets\CopyRight\Developer\Jing.jpg.meta
?????文件???????30284??2018-09-11?12:31??sokoban-master\Sokoban\Assets\CopyRight\Developer\Owen.jpg
?????文件????????1914??2018-09-11?12:31??sokoban-master\Sokoban\Assets\CopyRight\Developer\Owen.jpg.meta
?????文件???????30855??2018-09-11?12:31??sokoban-master\Sokoban\Assets\CopyRight\Developer\XingYuChen.jpg
?????文件????????1914??2018-09-11?12:31??sokoban-master\Sokoban\Assets\CopyRight\Developer\XingYuChen.jpg.meta
?????文件??????783653??2018-09-11?12:31??sokoban-master\Sokoban\Assets\CopyRight\icon_01.png
?????文件????????1914??2018-09-11?12:31??sokoban-master\Sokoban\Assets\CopyRight\icon_01.png.meta
?????文件??????722155??2018-09-11?12:31??sokoban-master\Sokoban\Assets\CopyRight\icon_02.png
?????文件????????1914??2018-09-11?12:31??sokoban-master\Sokoban\Assets\CopyRight\icon_02.png.meta
?????文件???????82261??2018-09-11?12:31??sokoban-master\Sokoban\Assets\CopyRight\pieceS_icon.jpg
?????文件????????1914??2018-09-11?12:31??sokoban-master\Sokoban\Assets\CopyRight\pieceS_icon.jpg.meta
?????文件?????????172??2018-09-11?12:31??sokoban-master\Sokoban\Assets\Libs.meta
?????目錄???????????0??2018-09-11?12:31??sokoban-master\Sokoban\Assets\Libs\
?????文件?????????172??2018-09-11?12:31??sokoban-master\Sokoban\Assets\Libs\DOTween.meta
?????目錄???????????0??2018-09-11?12:31??sokoban-master\Sokoban\Assets\Libs\DOTween\
?????文件??????187775??2018-09-11?12:31??sokoban-master\Sokoban\Assets\Libs\DOTween\DOTween.xml
?????文件?????????158??2018-09-11?12:31??sokoban-master\Sokoban\Assets\Libs\DOTween\DOTween.xml.meta
?????文件??????143360??2018-09-11?12:31??sokoban-master\Sokoban\Assets\Libs\DOTween\DOTween.dll
?????文件???????55341??2018-09-11?12:31??sokoban-master\Sokoban\Assets\Libs\DOTween\DOTween.dll.mdb
?????文件?????????155??2018-09-11?12:31??sokoban-master\Sokoban\Assets\Libs\DOTween\DOTween.dll.mdb.meta
?????文件?????????569??2018-09-11?12:31??sokoban-master\Sokoban\Assets\Libs\DOTween\DOTween.dll.meta
?????文件?????????172??2018-09-11?12:31??sokoban-master\Sokoban\Assets\Libs\DOTween\Editor.meta
............此處省略748個文件信息

評論

共有 條評論