Initial commit: Unity WordConnect project

This commit is contained in:
2025-08-01 19:12:05 +08:00
commit f14db75802
3503 changed files with 448337 additions and 0 deletions

View File

@ -0,0 +1,47 @@
// // ©2015 - 2025 Candy Smith
// // All rights reserved
// // Redistribution of this software is strictly not allowed.
// // Copy of this software can be obtained from unity asset store only.
// // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// // FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
// // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// // THE SOFTWARE.
using TMPro;
using UnityEngine;
using WordsToolkit.Scripts.Data;
using WordsToolkit.Scripts.GUI.Labels;
using WordsToolkit.Scripts.Settings;
namespace WordsToolkit.Scripts.Popups.Reward
{
public class RewardPopup : PopupWithCurrencyLabel
{
public Transform iconPos;
private int _count;
private ResourceObject _resource;
private RewardSettingSpin rewardVisual;
public TextMeshProUGUI countText;
public void SetReward(RewardSettingSpin rewardVisual)
{
this.rewardVisual = rewardVisual;
_count = rewardVisual.count;
countText.text = _count.ToString();
_resource = rewardVisual.resource;
}
public override void Close()
{
StopInteration();
_resource.AddAnimated(_count, iconPos.position, animationSourceObject: null, callback: () =>
{
base.Close();
});
}
}
}

View File

@ -0,0 +1,12 @@
fileFormatVersion: 2
guid: f9adedea92f702d4995617ce27d3831d
timeCreated: 1458824059
licenseType: Store
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,27 @@
// // ©2015 - 2025 Candy Smith
// // All rights reserved
// // Redistribution of this software is strictly not allowed.
// // Copy of this software can be obtained from unity asset store only.
// // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// // FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
// // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// // THE SOFTWARE.
using TMPro;
using UnityEngine;
namespace WordsToolkit.Scripts.Popups.Reward
{
public class RewardVisual : MonoBehaviour
{
public TextMeshProUGUI countText;
public void SetCount(int count)
{
countText.text = count.ToString();
}
}
}

View File

@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: 119251b6ae834c88a639a83ccec882d7
timeCreated: 1691995253

View File

@ -0,0 +1,21 @@
// // ©2015 - 2025 Candy Smith
// // All rights reserved
// // Redistribution of this software is strictly not allowed.
// // Copy of this software can be obtained from unity asset store only.
// // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// // FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
// // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// // THE SOFTWARE.
using WordsToolkit.Scripts.GUI;
using WordsToolkit.Scripts.GUI.Buttons;
namespace WordsToolkit.Scripts.Popups.Reward
{
public class RewardedButton : CustomButton
{
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 9b56a70df4a6f465ea1e315972ed2f33
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,58 @@
// // ©2015 - 2025 Candy Smith
// // All rights reserved
// // Redistribution of this software is strictly not allowed.
// // Copy of this software can be obtained from unity asset store only.
// // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// // FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
// // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// // THE SOFTWARE.
using UnityEngine;
using UnityEngine.Events;
using VContainer;
using WordsToolkit.Scripts.GUI;
using WordsToolkit.Scripts.GUI.Buttons;
using WordsToolkit.Scripts.Services;
using WordsToolkit.Scripts.Services.Ads.AdUnits;
namespace WordsToolkit.Scripts.Popups.Reward
{
public class RewardedButtonHandler : MonoBehaviour
{
[SerializeField]
private AdReference adReference;
[SerializeField]
private CustomButton rewardedButton;
[SerializeField]
private UnityEvent onRewardedAdComplete;
[SerializeField]
private UnityEvent onRewardedShow;
[Inject]
private IAdsManager adsManager;
private void Awake()
{
rewardedButton.onClick.AddListener(ShowRewardedAd);
}
private void ShowRewardedAd()
{
if (adsManager.IsRewardedAvailable(adReference))
{
onRewardedShow?.Invoke();
adsManager.ShowAdByType(adReference, _ => onRewardedAdComplete?.Invoke());
}
else
{
Debug.Log("Rewarded ad is not available");
}
}
}
}

View File

@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: dece0aac2cf9463587dade7a67633f5d
timeCreated: 1726040785

View File

@ -0,0 +1,48 @@
// // ©2015 - 2025 Candy Smith
// // All rights reserved
// // Redistribution of this software is strictly not allowed.
// // Copy of this software can be obtained from unity asset store only.
// // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// // FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
// // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// // THE SOFTWARE.
using UnityEngine;
using WordsToolkit.Scripts.Popups;
using VContainer;
using WordsToolkit.Scripts.GUI;
using WordsToolkit.Scripts.GUI.Buttons;
namespace WordsToolkit.Scripts.Popups.Reward
{
public class SpinOpenButton : MonoBehaviour
{
[Inject]
private MenuManager menuManager;
[SerializeField]
private CustomButton spinButton;
[SerializeField]
private GameObject freeSpinLabel;
private void OnEnable()
{
spinButton.onClick.AddListener(ShowLuckySpin);
CheckFree();
}
private void CheckFree()
{
// freeSpinLabel.SetActive(PlayerPrefs.GetInt("FreeSpin", 0) == 0);
}
public void ShowLuckySpin()
{
menuManager.ShowPopup<LuckySpin>(null, x => CheckFree());
}
}
}

View File

@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: b2dffeea3b8d4ba384015d8920b5f08b
timeCreated: 1692033837