14.12.2014, 17:41
Здравствуйте! Сегодня сделал систему сохранение объектов, столкнулся с такой проблемой, из бд загружается только один объект! самый первый.
Вот код
MySQL R9
Вот код
PHP Code:
fpub:LoadObjects()
{
new temp[30], rows, fields;
cache_get_data(rows, fields);
if(rows)
{
for(new idx; idx < rows; idx++)
{
O[Model] = cache_get_field_content_int(idx, "Model");
cache_get_field_content(idx, "O[foX]", temp); O[foX] = floatstr(temp);
cache_get_field_content(idx, "O[foY]", temp); O[foY] = floatstr(temp);
cache_get_field_content(idx, "O[foZ]", temp); O[foZ] = floatstr(temp);
cache_get_field_content(idx, "O[roX]", temp); O[roX] = floatstr(temp);
cache_get_field_content(idx, "O[roY]", temp); O[roY] = floatstr(temp);
cache_get_field_content(idx, "O[roZ]", temp); O[roZ] = floatstr(temp);
CreateObject(O[Model], O[foX], O[foY], O[foZ], O[roX], O[roY], O[roZ], 500000.0);
return 1;
}
}
return 1;
}