This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
批处理命令: | |
@echo off | |
git config --global sendpack.sideband false | |
git config --global receive.denyCurrentBranch ignore | |
git daemon --reuseaddr --base-path=. --export-all --verbose --enable=receive-pack | |
使用流程: | |
运行命令后,共享当前目录的所有git工程给局域网内的其他电脑使用 | |
其他电脑clone路径为 git://电脑ip/git仓库名 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using UnityEditor; | |
using System; | |
using System.Reflection; | |
using Editor = UnityEditor.Editor; | |
[CanEditMultipleObjects] | |
[CustomEditor(typeof(RectTransform), true)] | |
public class RectTransformInspector : Editor | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using UnityEditor; | |
using System; | |
using System.Reflection; | |
using Editor = UnityEditor.Editor; | |
[CanEditMultipleObjects] | |
[CustomEditor(typeof(Transform), true)] | |
public class TransformInspector : Editor | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test |
NewerOlder