yeah, i heard that the render quaility is bad.
If i use Blender Game Engine, will i be able to convert what I did to CrystalBlend?
Will CrystalBlend will be more powerfull? As in quality and render and graphics.
Also about the Ruby, I'll check if it supports it. Ruby is alot better then any other programing language becasue its cleaner and eseir to refer to stuff. Its just not too popular yet.
I'll give a little example;
class Example
#Comments are displayed with the # sign
attr_accessory :example #this makes the array or variable "examples" a global variable. You can also make the variable global by putting $ next to it as
#shown below
def initialize
$example = false # thats a global variable. $ mean global, @ means local
@examples = [] #this is an array
end
def add_example(new_example) #this is called outside the script, $example = Example.new, $example.add_example(example)
@examples.push(new_example)
end
def show_example(id)
print @example[id]
end
end #every block and class needs an end
see simple and clean.
Thanks for your help.