Browse Source

blendshapes: remove unnecessary private keywords

lviguier 1 year ago
parent
commit
42ba104fc7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      h3d/prim/Blendshape.hx

+ 2 - 2
h3d/prim/Blendshape.hx

@@ -57,14 +57,14 @@ class Blendshape {
 		uploadBlendshapeBytes();
 	}
 
-	private function getBlendshapeCount() {
+	function getBlendshapeCount() {
 		if (hmdModel.lib.header.shapes == null)
 			return 0;
 
 		return hmdModel.lib.header.shapes.length;
 	}
 
-	private function uploadBlendshapeBytes() {
+	function uploadBlendshapeBytes() {
 		var is32 = hmdModel.data.vertexCount > 0x10000;
 		var vertexFormat = hmdModel.data.vertexFormat;