| 45 | } |
| 46 | |
| 47 | void parsePolygonFlags(int triangle, uint32_t polygonFlags) { |
| 48 | std::bitset<32> bits(polygonFlags); |
| 49 | |
| 50 | if ((polygonFlags & 0xF) == 0xA) { |
| 51 | // Transparent |
| 52 | //std::cout << triangle << " " << bits << " Semi Transparent: " << polygonFlags << std::endl; |
| 53 | } else { |
| 54 | //std::cout << triangle << " " << bits << std::endl; |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | std::vector<CarModel> NFS4::LoadFCE(const std::string &fce_path) { |
| 59 | std::cout << "- Parsing FCE File: " << fce_path << std::endl; |