Skip to content

Commit f54fbd1

Browse files
committed
v1.0.190 release
1 parent bc8f595 commit f54fbd1

File tree

74 files changed

+227
-149
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+227
-149
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Id": "",
3-
"Version": "v1.0.187",
3+
"Version": "v1.0.190",
44
"Type": 0,
55
"AccessRight": 0,
66
"DownloadUrl": "",
@@ -11,10 +11,10 @@
1111
],
1212
"DocUrl": "https://liangxiegame.com",
1313
"Readme": {
14-
"version": "v1.0.187",
15-
"content": "LocaleKit Add AbstractLocaleText\nConsoleKit Add AsDefault API",
14+
"version": "v1.0.190",
15+
"content": "修复文档错别字&更新相关链接",
1616
"author": "liangxie",
17-
"date": "2025 年 040810:05",
17+
"date": "2025 年 051911:21",
1818
"PackageId": ""
1919
}
2020
}

QFramework.Unity2018+/Assets/QFramework/Toolkits/UIKit/Example.meta

Lines changed: 0 additions & 8 deletions
This file was deleted.

QFramework.Unity2018+/Assets/QFramework/Toolkits/_CoreKit/BuildKit/Editor/Framework/IBuildAction.cs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,6 @@ public interface IBuildAction : IBuildView
44
{
55
void Build();
66
}
7-
8-
// BUILD WINDOW AND ZIP EXAMPLE
9-
// var scenes = EditorBuildSettings.scenes;
10-
// var outputFile = Application.dataPath + "/../Builds/MyRoseWindows/MyRose.exe";
11-
// var target = BuildTarget.StandaloneWindows64;
12-
// var options = BuildOptions.None;
13-
// outputFile.GetFolderPath().CreateDirIfNotExists();
14-
// EditorUserBuildSettings.development = false;
15-
// BuildPipeline.BuildPlayer(scenes, outputFile, target, options);
16-
// var zipFilePath = Application.dataPath + $"/../Builds/MyRoseWindows_{PlayerSettings.bundleVersion}.zip";
17-
// ZipUtility.ZipFolder(outputFile.GetFolderPath(),zipFilePath);
18-
// EditorUtility.RevealInFinder(zipFilePath);
197

208
// #if UNITY_EDITOR
219
// using System.IO;

QFramework.Unity2018+/Assets/QFramework/Toolkits/_CoreKit/BuildKit/Editor/Utility.meta

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#if UNITY_EDITOR
2+
using UnityEditor;
3+
using UnityEngine;
4+
5+
namespace QFramework
6+
{
7+
public class BuildKitHelper
8+
{
9+
public static void DrawVersionEditor()
10+
{
11+
GUILayout.Label("Version:");
12+
PlayerSettings.bundleVersion = EditorGUILayout.TextField(PlayerSettings.bundleVersion);
13+
}
14+
15+
public static void BuildWindowsAndZIP(string name)
16+
{
17+
var scenes = EditorBuildSettings.scenes;
18+
var outputFile = Application.dataPath + $"/../Builds/{name}Windows/{name}.exe";
19+
var target = BuildTarget.StandaloneWindows64;
20+
var options = BuildOptions.None;
21+
outputFile.GetFolderPath().CreateDirIfNotExists();
22+
EditorUserBuildSettings.development = false;
23+
BuildPipeline.BuildPlayer(scenes, outputFile, target, options);
24+
var zipFilePath = Application.dataPath + $"/../Builds/MyRoseWindows_{PlayerSettings.bundleVersion}.zip";
25+
ZipUtility.ZipFolder(outputFile.GetFolderPath(), zipFilePath);
26+
EditorUtility.RevealInFinder(zipFilePath);
27+
}
28+
}
29+
}
30+
#endif

QFramework.Unity2018+/Assets/QFramework/Toolkits/_CoreKit/BuildKit/Editor/Utility/BuildKitHelper.cs.meta

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

QFramework.Unity2018+/Assets/QFramework/Toolkits/_CoreKit/FluentAPI/0.Unity/2.UnityEngineTransformExtension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ public static T AsRootTransform<T>(this T self) where T : Component
147147
gameObject.AsRootGameObject();
148148
")]
149149
#endif
150-
public static GameObject AsRootGameObject<T>(this GameObject self)
150+
public static GameObject AsRootGameObject(this GameObject self)
151151
{
152152
self.transform.SetParent(null);
153153
return self;

QFramework.Unity2018+/Assets/QFramework/Toolkits/_CoreKit/Internal/Guidline/Editor/Resources/EditorGuideline/1. 介绍/01.简介.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ Unity制作的联机赛车游戏,后台为SpringBoot + Mybatis;游戏采用Q
295295

296296
教程分为架构篇和工具集篇,架构篇着重介绍 QFramework.cs 这套架构入门以及使用规范,工具篇着重介绍 QFramework 中的大量的工具集的使用。
297297

298-
本文由 QFramework 教程年会员赞助,地址:[https://www.gamepixedu.com/goods/show/55](https://www.gamepixedu.com/goods/show/55)
298+
本文由 QFramework 教程会员赞助,地址:[https://www.gamepixedu.com/vip/?levelId=1](https://www.gamepixedu.com/vip/?levelId=1)
299299

300300
* QFramework 主页:[qframework.cn](https://qframework.cn)
301301
* QFramework 交流群: 541745166

QFramework.Unity2018+/Assets/QFramework/Toolkits/_CoreKit/Internal/Guidline/Editor/Resources/EditorGuideline/1. 介绍/02.Roadmap-路线图.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
* 存档-未开始)
7979

8080

81-
本文由 QFramework 教程年会员赞助,地址:[https://www.gamepixedu.com/goods/show/55](https://www.gamepixedu.com/goods/show/55)
81+
本文由 QFramework 教程会员赞助,地址:[https://www.gamepixedu.com/vip/?levelId=1](https://www.gamepixedu.com/vip/?levelId=1)
8282

8383
* QFramework 主页:[qframework.cn](https://qframework.cn)
8484
* QFramework 交流群: 541745166

QFramework.Unity2018+/Assets/QFramework/Toolkits/_CoreKit/Internal/Guidline/Editor/Resources/EditorGuideline/2. 架构篇:QFramework.cs/01. QFramework 架构简介.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ QFramework 架构是一套简单、强大、易上手的系统设计架构。
2121
这两张图现在大家可能还看不太懂,没关系,我们过一遍快速入门就懂了。
2222

2323

24-
本文由 QFramework 教程年会员赞助,地址:[https://www.gamepixedu.com/goods/show/55](https://www.gamepixedu.com/goods/show/55)
24+
本文由 QFramework 教程会员赞助,地址:[https://www.gamepixedu.com/vip/?levelId=1](https://www.gamepixedu.com/vip/?levelId=1)
2525

2626
* QFramework 主页:[qframework.cn](https://qframework.cn)
2727
* QFramework 交流群: 541745166

0 commit comments

Comments
 (0)