Plastic SCM

作者:追风剑情 发布于:2023-8-9 10:23 分类:Unity3d

官网:https://unity.cn/plasticscm
仓库:https://plastichub.unity.cn/
下载:https://www.plasticscm.com/download

Plastic SCM 客户端默认安装路径
C:\Program Files\PlasticSCM5\client\plastic.exe

直接打开 Plastic SCM Client 使用。
111111.png

1、报错: Invalid password. Review your user/password configuration.
1111.png
解决方案
删除C:\{用户名}\AppData\Local\plastic4\tokens.conf后,重新登录Plastic和UnityHub。

也可以在 Unity Editor 中加个菜单功能,用来删除 tokens.conf 文件。

// 修复 "Error - Plastic SCM: Invalid password. Review your user/password configuration."
[MenuItem("Tools/Fix Plastic Invalid Password")]
public static void FixSCMInvalidPassword()
{
	string localFolder = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
	string tokenFile = Path.Combine(localFolder, "plastic4", "tokens.conf");
	if (File.Exists(tokenFile))
	{
		File.Delete(tokenFile);
		Debug.Log($"Delete {tokenFile}");
	}
}  

删除 tokens.conf 文件后,在 Inspector 面板中点击 [Login or sign up] 按钮,重新登录 Plastic SCM。
1111.png

2、报错: 未知的用户:'No user specified'。请检查您当前的凭据。请注意,用户名区分大小写!
111111.png
解决方案
如果是无法登录别人的组织,可能是组织未给你分配席位。

1、管理组织

3333.png

点击【新增】按钮可以添加新的组织。
44444.png

2、选择组织

222222.png

3、项目管理

一个组织下面可以创建多个项目,可以为项目添加成员,一起协同开发。

5555.png

4、为项目添加成员

6666.png

标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号