Наследование: LayoutManager
Пример #1
0
        public DeliverablesList(string name, int x, int y, int width, int height, uint bkColor, uint borderColor, int angle)
            : base(name, x, y, width, height)
        {
            fBackground = new GradientRectangle(0, 0, width, height, RGBColor.White, bkColor, borderColor, angle);

            //LayoutHandler = new VEqualLayout(this, 0, 0);
            LayoutHandler = new VTextLayout(this, 3, 0);
        }
Пример #2
0
    public VTextInterface()
    {
        parameter            = new VTextParameter();
        layout               = new VTextLayout();
        Physics              = new VTextPhysics();
        AdditionalComponents = new VTextAdditionalComponents();

        _componentsToKeep = new List <Type>()
        {
            typeof(Transform),
            typeof(Renderer),
            typeof(MeshFilter),
            typeof(Rigidbody),
            typeof(Collider),
        };
    }
Пример #3
0
 public VTextInterface()
 {
     parameter = new VTextParameter();
     layout    = new VTextLayout();
 }