FIX MANY PROBLEMS
This commit is contained in:
Dvurechensky 2025-05-12 08:13:30 +03:00
parent 1a597db572
commit fefc741c79
860 changed files with 7279 additions and 427 deletions

75
.gitignore vendored Normal file

@ -0,0 +1,75 @@
# This .gitignore file should be placed at the root of your Unity project directory
#
# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
#
pre_commit.ps1
pre_commit.log
Test_Dvurechensky/Media/
Test_Dvurechensky/[Ll]ibrary/
Test_Dvurechensky/[Tt]emp/
Test_Dvurechensky/[Oo]bj/
Test_Dvurechensky/[Bb]uild/
Test_Dvurechensky/[Bb]uilds/
Test_Dvurechensky/[Ll]ogs/
Test_Dvurechensky/[Uu]ser[Ss]ettings/
# MemoryCaptures can get excessive in size.
# They also could contain extremely sensitive data
Test_Dvurechensky/[Mm]emoryCaptures/
# Recordings can get excessive in size
Test_Dvurechensky/[Rr]ecordings/
# Uncomment this line if you wish to ignore the asset store tools plugin
# /[Aa]ssets/AssetStoreTools*
# Autogenerated Jetbrains Rider plugin
Test_Dvurechensky/[Aa]ssets/Plugins/Editor/JetBrains*
# Visual Studio cache directory
Test_Dvurechensky/.vs/
# Gradle cache directory
Test_Dvurechensky/.gradle/
# Autogenerated VS/MD/Consulo solution and project files
Test_Dvurechensky/ExportedObj/
Test_Dvurechensky/.consulo/
Test_Dvurechensky/*.csproj
Test_Dvurechensky/*.unityproj
Test_Dvurechensky/*.sln
Test_Dvurechensky/*.suo
Test_Dvurechensky/*.tmp
Test_Dvurechensky/*.user
Test_Dvurechensky/*.userprefs
Test_Dvurechensky/*.pidb
Test_Dvurechensky/*.booproj
Test_Dvurechensky/*.svd
Test_Dvurechensky/*.pdb
Test_Dvurechensky/*.mdb
Test_Dvurechensky/*.opendb
Test_Dvurechensky/*.VC.db
# Unity3D generated meta files
Test_Dvurechensky/*.pidb.meta
Test_Dvurechensky/*.pdb.meta
Test_Dvurechensky/*.mdb.meta
# Unity3D generated file on crash reports
Test_Dvurechensky/sysinfo.txt
# Builds
Test_Dvurechensky/*.apk
Test_Dvurechensky/*.aab
Test_Dvurechensky/*.unitypackage
Test_Dvurechensky/*.app
# Crashlytics generated file
Test_Dvurechensky/crashlytics-build.properties
# Packed Addressables
Test_Dvurechensky//[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin*
# Temporary auto-generated Android Assets
Test_Dvurechensky//[Aa]ssets/[Ss]treamingAssets/aa.meta
Test_Dvurechensky//[Aa]ssets/[Ss]treamingAssets/aa/*

@ -1,4 +1,12 @@
#if !(UNITY_METRO || UNITY_WP8)
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
#if !(UNITY_METRO || UNITY_WP8)
#if UNITY_2018_3_OR_NEWER
#pragma warning disable CS0618

@ -1,4 +1,12 @@
using UnityEngine;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using UnityEngine;
using UniRx.Triggers; // Triggers Namepsace
using System;

@ -1,4 +1,12 @@
#if !(UNITY_IPHONE || UNITY_ANDROID || UNITY_METRO)
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
#if !(UNITY_IPHONE || UNITY_ANDROID || UNITY_METRO)
using UnityEngine;
using UniRx.Triggers; // for enable gameObject.EventAsObservbale()

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using UnityEngine;
namespace UniRx.Examples

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections;
using System.Threading;
using UnityEngine;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections;
using UnityEngine;

@ -1,4 +1,12 @@
#pragma warning disable 0168
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
#pragma warning disable 0168
#pragma warning disable 0219
using System;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;

@ -1,4 +1,12 @@
#pragma warning disable 0067
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
#pragma warning disable 0067
using System;
using UnityEngine;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections;
using UnityEngine;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections;
using UniRx.Diagnostics;
using UnityEngine;

@ -1,4 +1,12 @@
// for uGUI(from 4.6)
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
// for uGUI(from 4.6)
#if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5)
using System;

@ -1,4 +1,12 @@
// for uGUI(from 4.6)
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
// for uGUI(from 4.6)
#if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5)
using System.Linq;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections;
namespace UniRx

@ -1,4 +1,12 @@
// original code from GitHub Reactive-Extensions/Rx.NET
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
// original code from GitHub Reactive-Extensions/Rx.NET
// some modified.
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
// using System.Linq; do not use LINQ
using System.Text;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
namespace UniRx

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections;
namespace UniRx

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
namespace UniRx

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using System.Text;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections;
namespace UniRx

@ -1,4 +1,12 @@
// This code is borrwed from Rx Official and some modified.
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
// This code is borrwed from Rx Official and some modified.
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Threading;
namespace UniRx

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections;
namespace UniRx

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections;
namespace UniRx

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using System.Threading;

@ -1,4 +1,12 @@
// original code from rx.codeplex.com
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
// original code from rx.codeplex.com
// some modified.
/* ------------------ */

@ -1,4 +1,12 @@
// this code is borrowed from RxOfficial(rx.codeplex.com) and modified
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
// this code is borrowed from RxOfficial(rx.codeplex.com) and modified
using System;
using System.Collections.Generic;

@ -1,4 +1,12 @@
#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6))
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6))
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
using System;

@ -1,4 +1,12 @@
namespace UniRx.InternalUtil
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
namespace UniRx.InternalUtil
{
using System;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx.InternalUtil
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using System.Text;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections;
using System.Collections.Generic;

@ -1,4 +1,12 @@
// this code is borrowed from RxOfficial(rx.codeplex.com) and modified
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
// this code is borrowed from RxOfficial(rx.codeplex.com) and modified
using System;
using System.Collections.Generic;

@ -1,4 +1,12 @@
#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6))
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6))
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
using System.Collections.Generic;

@ -1,4 +1,12 @@
// this code is borrowed from RxOfficial(rx.codeplex.com) and modified
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
// this code is borrowed from RxOfficial(rx.codeplex.com) and modified
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx.InternalUtil
{

@ -1,4 +1,12 @@
#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6))
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6))
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
#endif

@ -1,4 +1,12 @@
// original code from rx.codeplex.com
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
// original code from rx.codeplex.com
// some modified.
/* ------------------ */

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using System.Text;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using System.Text;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using UniRx.InternalUtil;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using System.Text;
using UniRx.Operators;

@ -1,4 +1,12 @@
#if (NET_4_6 || NET_STANDARD_2_0)
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
#if (NET_4_6 || NET_STANDARD_2_0)
using System;
using System.Collections.Generic;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using UniRx.Operators;
namespace UniRx

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using System.Text;
using System.Linq;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using System.Text;
using UniRx.Operators;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using UniRx.Operators;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using UniRx.Operators;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections;
using System.Collections.Generic;
using UniRx.Operators;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using UniRx.Operators;
namespace UniRx

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using System.Text;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using System.Text;
using UniRx.InternalUtil;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using UniRx.Operators;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Threading;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Threading;
using UniRx.InternalUtil;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using UniRx.Operators;
namespace UniRx.Operators

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
namespace UniRx.Operators

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using UniRx.Operators;
namespace UniRx.Operators

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using UniRx.Operators;
namespace UniRx.Operators

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx.Operators
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using UniRx.Operators;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx.Operators
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
namespace UniRx.Operators

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
namespace UniRx.Operators

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx.Operators
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx.Operators
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using UniRx.Operators;
namespace UniRx.Operators

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx.Operators
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
namespace UniRx.Operators

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx.Operators
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
namespace UniRx.Operators

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
namespace UniRx.Operators

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx.Operators
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx.Operators
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using UniRx.Operators;
namespace UniRx.Operators

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using UniRx.Operators;
namespace UniRx.Operators

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
using UniRx.Operators;

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using UniRx.Operators;
namespace UniRx.Operators

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx.Operators
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx.Operators
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
namespace UniRx.Operators

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx.Operators
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Collections.Generic;
namespace UniRx.Operators

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx.Operators
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx.Operators
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using System.Threading;
namespace UniRx.Operators

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx.Operators
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx.Operators
{

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
using UniRx.Operators;
namespace UniRx.Operators

@ -1,4 +1,12 @@
using System;
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 08:07:05
* Version: 1.0.1
*/
using System;
namespace UniRx.Operators
{

Some files were not shown because too many files have changed in this diff Show More