DIR : /home/kozerus/public_html/go/eidogo/backend/kjd_structure.sql
/home/kozerus/public_html/go/eidogo/backend
DROP TABLE IF EXISTS `kjd`;
CREATE TABLE `kjd` (
`id` int(11) NOT NULL,
`parent` int(11) default NULL,
`properties` blob,
`lt` int(11) default NULL,
`rt` int(11) default NULL,
`depth` int(11) default NULL,
PRIMARY KEY (`id`),
KEY `lt` (`lt`,`rt`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
alter table kjd add index parent (parent);
//
koh5_pano
Drag mouse to navigate.
Navigation
- Left/Right Mouse drag: Changes camera heading.
- Up/Sown Mouse drag: Changes camera pitch.
- Scroll wheel: Changes camera field of view.
- I-Key: Displays Info panel with canvas size, image size and FPS.
17.Aug.2010, Martin Wengenmayer