Hi all, I've somewhat created a work around framework using hydra. Its a little complicated and quite a bit of work but if anyone's interested here's how it goes in a super nutshell:
.1. Built my owh little frame work layer on top of the monobahaviour.
This is to control basic set-up stuff on each script. Then compiled everything into a .dll (I've found that not only can unity take in monobehaviour in their dlls, they can even be put in namespaces =) )
.2. Created what i call and "Orchestrator" script.
This is an important script that is in control of all incoming sub modules. It loads asemblies and set-up prefabs for its particular module. Foreach loaded module, I'll have an extended of this orchestrator and call it "WidgetOrchestrator". We only need 1 of each of these classes.
.3. Build my main module and include a "MainOrchestrator" script.
This is the boss controlling all of whats coming in. It currently pools the website for available modules and displays them for all to see. This is important and super cause by pooling whats available means we no longer need to internally change the codes of the main programming to include how to both realise the existance of now modules and use them.
.4. Create the web-server as mentioned above to pool data and download the assemblies and assetbundles.
////////////////////////////////
Those are the few critial steps in a nut shell.
The DISADVANTAGES of this are can be pretty compelling:
i. I feel that it breaks the idea flow of how unity supposed to be used especially the ability to attach scripts just by dragging and dropping (However, this was our problem in the first place. These scripts we dragged in just didnt work when we want them to dynamically load them).
ii. This idea is pretty complicated and its harder to check for bugs when theres some kind of error.
iii. The set up and deployment can be quite a hassle. You need to build an asstbundle, an assembly, write up meta files, build up your server (But then again even if scripts could be directly attached we still had to do all these anyway).
iv. An additional learning curve on how to proceedurally do things based on the framework you or I have designed to handle this.
The ADVANTAGES of this
i. Dynamic loading of now modules, logic and everythign which is what we've all been looking for.
ii. Never ever needing to rebuild your main project again.
iii. Able to divide work in a team to members can idependently work on their modules with a "sandbox" scene.
iv. Direct and immediate version upgrading since all data is directly pooled in from the web server.
v. No Down time to server and applications!
I know the steps above are like super vague so if any one is really interested i'm willing to share some of my codes with you all. Just comment me for them. Also, i thik it ll still be better for the all of us of the bundles could just contain the scripts and load them right so I'm still really open to better answers for this.