You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there , I’ve encountered a bug while working with 3D models in Flutter on Linux. Specifically, the rendering of 3D models using " flutter_3d_obj "seems to be malfunctioning or not displaying as expected for a 3D model car......Unfortunate or fortunate it is working for other 3D models but not for car models....dont know why this is happening!!!!
Also sometimes it is showing flutter_3d_obj doesnt support nullsafety!!
Description: When attempting to render 3D models using flutter_cube, the models either fail to display or render incorrectly.This is only happening for car models and not for other 3D models.I thought there was some problem with the gltf/obj of car but it is not working for any car model....This is what took me here!!!!
Issue Details:
-Platform : Linux 20.04
-Flutter Version : 3.22.3
-Dart Version : 3.4.4
.........................................................................
Can you please resolve this !!!
The text was updated successfully, but these errors were encountered:
SarathChandra0025
changed the title
I unable render the textures and colour of 3d car Models??
I'm unable render the textures and colour of 3d car Models??
Sep 13, 2024
SarathChandra0025
changed the title
I'm unable render the textures and colour of 3d car Models??
I'm unable to render the textures and colour of 3d car Models??
Sep 13, 2024
Hi there , I’ve encountered a bug while working with 3D models in Flutter on Linux. Specifically, the rendering of 3D models using " flutter_3d_obj "seems to be malfunctioning or not displaying as expected for a 3D model car......Unfortunate or fortunate it is working for other 3D models but not for car models....dont know why this is happening!!!!
Also sometimes it is showing flutter_3d_obj doesnt support nullsafety!!
Description: When attempting to render 3D models using flutter_cube, the models either fail to display or render incorrectly.This is only happening for car models and not for other 3D models.I thought there was some problem with the gltf/obj of car but it is not working for any car model....This is what took me here!!!!
Issue Details:
-Platform : Linux 20.04
-Flutter Version : 3.22.3
-Dart Version : 3.4.4
i'll provide you my code snipper here,
import 'package:flutter/material.dart';
import 'package:flutter_3d_obj/flutter_3d_obj.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@OverRide
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: Text('3D Model Example')),
body: Center(
child: My3DModelWidget(),
),
),
);
}
}
class My3DModelWidget extends StatelessWidget {
@OverRide
Widget build(BuildContext context) {
return Container(
width: 300,
height: 300,
child: Flutter3dObj(
modelPath: 'assets/model.obj',
texturePath: 'assets/model.mtl',
),
);
}
}
.........................................................................
Can you please resolve this !!!
The text was updated successfully, but these errors were encountered: