Coder Social home page Coder Social logo

wuxingogo / wuxingogoextension2018 Goto Github PK

View Code? Open in Web Editor NEW
25.0 7.0 7.0 21.63 MB

WuxingogoExtension is a powerful tool for constructing and assembling game levels.

License: MIT License

C# 98.22% Shell 0.01% Python 1.76% Batchfile 0.01%
finite-state-machine unity game hierarchy-extension unity-plugin unity-framework unity3d unity-editor

wuxingogoextension2018's Introduction

WuxingogoExtension

Intro


This repository includes full source code of the WuxingogoExtension libraries。

##Features

  • Dynamic call method, change field and property object more easliy.
  • Create AssetBundle extension (Unity 4.x && 5.x).
  • Custom Attribute Collection(Inspector Drawer).
  • Quick set unity prefs.
  • Generated CSharpCode(CodeDom).
  • Finite-State-Machine and Behaviour Tree Editor.
  • Hierarchy Extension.
  • Static and Stored GameManager: Control your game more easliy.(ScriptableObject)

##Usage

Copy WuxingogoExtension folder to Assets/Plugins.

Command Line environment:

Windows : msbuild, python2.7(double click build.bat)

OSX : xbuild, python2.7(run build.sh)


####XAssetBundleWindow. (Unity Version 4.X)

github

####XAssetBundleWindow. (Unity Version 5.X)

7Z Compress & Encrypt AssetsBundle

Incremental update in one file

github

The project have been moved to https://github.com/wuxingogo/GameUpdaterTest

####XBehaviour Window (Finite-State-Machine)

Finite-State-Machine Window.

github

This module have been moved to https://github.com/wuxingogo/Unity-BTFsm

####XCodeGenerateEditor:

Save Code Template

Generate Namespace,Field, Method, Class, Comment, Attribute, Property

TODO LIST:

Compile Code From XReflectionWindow.

github

This module have been move to https://github.com/wuxingogo/CodeDomEditor

####XReflectionWindow:

github

X-Attribute

Note: The target script must inherit from XMonoBehaviour.

    [X]     // Create button in the Inspector
    public void MethodHandleGo(GameObject go)
    {
        XLogger.Log("Test Method");
    }
    [X]     // Reflection this property in the Inspector
    public int Amount
    {
        get{
            return 0;
        }
    }
    private int amountChange = 0;
    [X]     
    public int AmountChange
    {
        get{
            return amountChange;
        }
        set{
            amountChange = value;
        }
    }
    [Disable]   // Disable change this SerializeField
    public int Count = 0;
    
    [X]
    public Dictionary<int, string> mapKeyDict = new Dictionary<int, string>(){
        {1,    "1"},
        {33,   "22"},
        {222,  "32131"}
    };
    [SerializeField]
    private List<string> list = new List<string>()
    {
        "stack1",
        "stack2",
        "stack3"
    };
    [X]
    public Queue<string> queue;
    [X]
    public Stack stack;

    void Reset()
    {
        stack = new Stack (list);
        queue = new Queue<string>(list);
    }

github

Hierarchy Extension

Quick toggle and lock.

github

Etc.

##Copyright, License & Contributors

MIT license

Contcat:[email protected], [email protected]

To be continue!

wuxingogoextension2018's People

Contributors

iphone-dev2015 avatar wuxingogo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.